Hello,
How do I decrease the padding of the east slider on my home page so it is about half way from where it is now?
http://bodytalkcare.com/
Thank you
your header hight : do you set it in Enfold Options Dialog?
Because i got here on your site as you can see a
Screenshot with Developer tools aside
a scrolloffset of 116px from main
but i see on your css:
.html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main {
padding-top: 147px;
}
have a look where the 147px comes from.
or goto quick css and set:
.html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main {
padding-top: 119px;
}
and if you only want to change it for your Start Page:
.home main {
padding-top: 0;
}
because on default it seem there is a padding-top of 50px
but by the way – a little distance between header and content looks better for me
so now – sorry – i see that this is normal on enfold installation that scroll-offset of div id=main differ about 30px to the padding-top.
so take the
main {
padding-top: 0;
}
if you want to do it for all sites or advice above with .home if you only want to change it on Startpage
how do I make it the same distance for every page?
thank you.