Menu color
-
Hi!
I’m creating child theme from Wallstreet theme.
I want to change color for menu which is in theme-menu.css.
But, whatever I do, my child theme calls style from theme-menu.css.I’m wondering is this function problem?
function webriti_scripts()
{
$current_options = get_option(‘wallstreet_pro_options’);
wp_enqueue_style(‘wallstreet-style’, get_stylesheet_uri() );
wp_enqueue_style(‘wallstreet-bootstrap’, WEBRITI_TEMPLATE_DIR_URI . ‘/css/bootstrap.css’);
wp_enqueue_style(‘wallstreet-theme-menu’, WEBRITI_TEMPLATE_DIR_URI . ‘/css/theme-menu.css’);
wp_enqueue_style(‘wallstreet-media-responsive’, WEBRITI_TEMPLATE_DIR_URI . ‘/css/media-responsive.css’);
wp_enqueue_style(‘wallstreet-font’, WEBRITI_TEMPLATE_DIR_URI . ‘/css/font/font.css’);
wp_enqueue_style(‘wallstreet-font-awesome-min’, WEBRITI_TEMPLATE_DIR_URI . ‘/css/font-awesome/css/font-awesome.min.css’);
wp_enqueue_style(‘wallstreet-tool-tip’, WEBRITI_TEMPLATE_DIR_URI . ‘/css/css-tooltips.css’);wp_enqueue_script(‘wallstreet-menu’, WEBRITI_TEMPLATE_DIR_URI .’/js/menu/menu.js’,array(‘jquery’));
wp_enqueue_script(‘wallstreet-bootstrap’, WEBRITI_TEMPLATE_DIR_URI .’/js/bootstrap.min.js’);
}Is it possible to avoid calling parent theme-menu.css?
Thank you very much…
- The topic ‘Menu color’ is closed to new replies.