wallstreet theme
-
Hi!
I’m creating child theme from Wallstreet theme.
The Wallstreet theme has faw css files. There is folder css and theme-menu.css and I want to change color for menu. But, unfortunately I can’t, because in the parent theme, into function.php there is function which calls all css files in certain order.
I tried to create same function into child function.php but it is 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’);
}I want to create other theme-menu.css and avoid calling parent theme-menu.css.
Is it possible?Thank you very much…
The topic ‘wallstreet theme’ is closed to new replies.