Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #720439

    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 ?

    #720882

    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

    #722374

    Hi Rikard,

    Thanks, but when i put this css code in i dont see the differerence, other option ?

    #722388

    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

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