Hi,
the mobile version of this page: https://leagrowingpeople.com/services/startup-booster-program/
has a problem with the header.
The header is shifted down a bit. On the home page this problem is not there, why?
The header it will be with background transparent.
Thank you for your support,
Manuela
Hi,
I found a workaround by entering this code:
postid # #main {
margin-top: 0! important;
}
but I would like to find a more scalable solution. I mean a solution that if I add a new item in the portfolio I don’t have to add any CSS code. Thanks.
Manuela
Hi,
Thank you for the inquiry.
The same css rule is also applied to the home page.
@media only screen and (max-width: 767px) {
.responsive #top.page-id-143 #main {
margin-top: 0 !important;
}
}
Have you tried removing the page or post id selector entirely?
Example:
@media only screen and (max-width: 767px) {
.responsive #top #main {
margin-top: 0 !important;
}
}
Best regards,
Ismael