Hi,
We have made a special landingspage, when we check that on the mobile, there is a lot of white space at first.
Can you see what we did wrong ?
Hey BPC,
You have this CSS in your style.css file:
@media only screen and (max-width: 767px) {
.responsive #top #main {
padding-top: 110px!important;
}
}
Please remove it or try to override it using this CSS:
@media only screen and (max-width: 767px) {
.page-id-5072 #main {
padding-top: 0 !important;
}
}
Best regards,
Rikard
Hi Rikard,
Thanks, but when i put this css code in i dont see the differerence, other option ?
Hi BPC,
Try to replace this part of Rikard’s code:
.page-id-5072 #main {
padding-top: 0 !important;
}
to:
.responsive #top.page-id-5072 #main {
padding-top: 0 !important;
}
Hope this helps. :)
Regards,
Nikko