Header Removal While Keeping Action Bar?
Hello there,
I have removed header, logo and search button using following CSS code...
#Top_bar #logo { display: none !important; }
#Top_bar .menu > li.page-item-6 { display: none !important; }
#Top_bar a#search_button { display: none; }
This seems to remove the whole header/action bar.
Can I remove just the menu and keep the action bar?
Nick
I have removed header, logo and search button using following CSS code...
#Top_bar #logo { display: none !important; }
#Top_bar .menu > li.page-item-6 { display: none !important; }
#Top_bar a#search_button { display: none; }
This seems to remove the whole header/action bar.
Can I remove just the menu and keep the action bar?
Nick
Comments
The follow custom CSS removes menu/header and allows action bar to remain.
#Top_bar #logo { display: none !important; }
#Top_bar { display: none !important; }
#Top_bar a#search_button { display: none; }
HOWEVER, I now have a new problem. The header image has moved up (due to lack of menu) and is hiding behind action bar.
Need to know the class name for the header image so that I can add a padding.
Regards
Nick
i.e. #Top_bar #logo controls the logo.
Nick
Just like the css name for logo is "#Top_bar #logo"
That is all i need.
Knowing the css name for the logo allow us to add padding to the logo, not display the logo (display none) etc....
Just please let me know the css name for header image.
Thanks for understanding!