Hi,
For a landingpage I’m using the blank template (no header/footer/sidebar) but I still see a white space in the top of the page. Stuff like:
#header_meta {
display: none;
}
or
.html_header_top.html_header_sticky.html_large.html_bottom_nav_header #main {
padding-top: 0px;
}
Doesn’t work. What is the correct CSS for this trick?
Thanks,
Steven
Hey steviger,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#top.avia-blank, #top.avia-blank #wrap_all {
display: block;
}
Best regards,
Yigit
Hi Yigit,
Thanks for your reply but that didn’t work. I added “!important” but same result. It seems to be a padding/margin issue but I can’t figure out what it is.
Update: Your code in combination with .content { padding-top: 0px!important;}
Did the trick.
Cheers,
Steven