How would I remove the top submenu bar from the header.
I dont want to just use css to remove it but rmove all the code as well.
How would I remove the top submenu bar from the header.
I dont want to just use css to remove it but rmove all the code as well.
Hey,
in header.php delete:
<?php
/*
* display the main navigation menu
* modify the output in your wordpress admin backend at appearance->menus
*/
$args = array('theme_location'=>'avia2', 'fallback_cb' => '');
wp_nav_menu($args);
?>Thanks.
Glad Dude could help :)
hi, i would like to keep the sub-menu but change the background image or color to white and the color of the background of logo to blue
Add following code to css/custom.css:
#header .submenu {
background: #000000;
border-bottom: 7px solid #EEEEEE;
color: #AAAAAA;
}
Change the color values (they'll affect the sub menu background color, border color and text color). For the logo use:
#top .bg-logo a {
background-color: #AAAAAA;
}You must log in to post.