Tagged: header, landing page
Hi,
I’m trying to create a Landing Page so have used the ‘Blank – no header, no footer page’ template:
http://gingerstu.byethost8.com/pre-event
Since the upgrade I now have a 88px large header space that I’d like to get rid of, specifically for the landing page. I’ve worked out the CSS I need:
.html_header_top.html_header_sticky #main {
padding-top: 0px;
}
But using this code applies it to the whole site. how to do I target a specific page to apply the code to?
tried it with:
.page-id-82 .html_header_top.html_header_sticky #main {
padding-top: 0px;
}
That didn’t work either
.page-id-82 #main {
padding-top: 0 !important;
}
that worked :)