Is it possible to remove the header site-wide, but keep the small bar above the header (where i can specify ‘extra elements’ in the theme control panel and have additional navigation)? There is another thread in the forum that suggests using
.title_container { display: none; }
… but that disables the small bar above the header I wish to keep.
Thanks!
Hey lzevon!
Please add following code to Quick CSS
#header_main { display: none !important; }
If you need further assistance, please post a link to your website
Cheers!
Yigit
Thanks Yigit – now I see an misalignment with the top bar and the body of the page (I have the width set to boxed / 1130px)?
See attached (private). I have so much text to the right of the logo that I’m thinking it’s easier to forgo the header and build it in as a responsive element on each page.
Thanks!
Hey!
Please add following code to Quick CSS as well
.html_boxed #main {
position: absolute;
}
Cheers!
Yigit
That created a weird effect on an interior page (see attached)?
Hey!
Please change the code to following one
.html_boxed #main {
width: 100%;
}
Cheers!
Yigit
Looking good – thanks!