Viewing 9 reply threads
You must be logged in to reply to this topic.
Hi, I want to desactivate the lateral menu on the right because I don’t use it.
How can I do that?
And I have another problem: the header of my blog entries overlaps the head of the web:
Hello!
I could disable the extra-side navigation; thanks!
But about my second problem, I don´t want the style “with border top”. I like the “modern style” but, only in my bolg entries, i need to fix the overlap of the head in the menu.
What can I do?
Thanks!
Hello,
You can disable the extra side navigation at Specular -> Layout -> turn off extra side nav.
Please add these lines at Custom Css Code at general options for the header issue:
.page_header .top_wrapper { padding-top: 90px; }
Best regards!
Hello!
Hello! I´ve already put that CSS code but nothing happened:
https://goo.gl/Xs5FuZ
try just
.top_wrapper {
padding-top: 90px;
}
I tried it on your site using Chrome’s inspector and it worked. (I was having the same problem and this code worked for me)
https://docs.google.com/a/vandertech.com/file/d/0B4iHgURlvrpgNG9LN2xwakJlZk0/edit?usp=drivesdk
After applying it your site, your site looks like this:
https://docs.google.com/a/vandertech.com/file/d/0B4iHgURlvrpgaWRram9uSEhxdmc/edit?usp=drivesdk
Note: the css hack prevents the sticky menu from working properly on at least Chrome – it no longer floats as you scroll down, which is a bummer.
Here’s the JS workaround which’ll keep the sticky header working. Add this to the custom JS under General Settings:
$('.top_wrapper').css({paddingTop:'130px'});
That needs to go between the
jQuery( function ($) {
and
});
You must be logged in to reply to this topic.