Viewing File: /home/maglabs/bambinos/wp-content/themes/juliette/inc/customizer/backend/styles/dropdowns.php
<?php
$sep_id = 200;
$section = 'style_dropdowns';
Kirki::add_field( 'juliette', array(
'type' => 'color',
'settings' => 'dropdowns_bg_color',
'label' => esc_html__( 'Dropdowns Background Color', 'juliette' ),
'section' => $section,
'default' => '#fff',
'priority' => 10,
) );
// ---------------------------------------------
Kirki::add_field( 'juliette', array(
'type' => 'separator',
'settings' => 'separator_'. $sep_id++,
'section' => $section,
) );
// ---------------------------------------------
Kirki::add_field( 'juliette', array(
'type' => 'color',
'settings' => 'dropdowns_font_color',
'label' => esc_html__( 'Dropdowns Text Color', 'juliette' ),
'section' => $section,
'default' => '#000',
'priority' => 10,
) );
// ---------------------------------------------
Kirki::add_field( 'juliette', array(
'type' => 'separator',
'settings' => 'separator_'. $sep_id++,
'section' => $section,
) );
// ---------------------------------------------
Kirki::add_field( 'juliette', array(
'type' => 'color',
'settings' => 'dropdowns_accent_color',
'label' => esc_html__( 'Dropdowns Accent Color', 'juliette' ),
'section' => $section,
'default' => '#BC9064',
'priority' => 10,
) );
Back to Directory
File Manager