Tagged: header
I’m using Fixed Header with Social Icons and Additional Navigation. I would like to remove the social icons bar from this version, or be able to use the Small Fixed Header Larger (in height) and
Thanks
Jonny
Hey deyowulf!
You can add this on your custom.css or Quick CSS to remove the social icons from the header:
#top .social_bookmarks {
display: none;
}
Regards,
Ismael
The color bar is still there. I want to remove that bar completely, like how it is in the Small Fixed Header. But the small fixed header is too small for me, so if I need to use that to remove the bar then I need to know how to change the height of the header.
Hi!
If you want to remove the whole header_meta container, use this:
#header_meta {
display: none !important;
}
Add this to adjust the main div padding:
.fixed_header.social_header #main {
padding-top: 117px;
}
Cheers!
Ismael
Thanks :)