Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1358132

    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

    #1358134

    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

    #1358153

    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

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.