Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1235986
    strandbein
    Participant

    Hi,
    on every screen I’m very satisfied with the layout, except on mobile. How to remove the box on mobile portrait?
    Thank you,
    Jens

    #1236037
    Thai
    Moderator

    Hi There,

    Please add the following CSS under Customizer > Custom > Global CSS:

    @media (max-width: 480px){
        .site > .x-container.max.width.offset {
            width: 100%;
            max-width: 100%;
        }
    }

    Hope it helps 🙂

    #1236210
    strandbein
    Participant

    That’s it, thank you very much!

    Jens

    #1236409
    Christopher
    Moderator

    You’re welcome.

    #1239508
    strandbein
    Participant

    One more thing:
    There is a different display on search and blog index page, on mobile only naturally.
    On search there is a little border around the founds that is looking good. On blog index page (Produktionen) that border is missing. How to change this?
    Thank you,
    Jens

    #1239614
    Rupok
    Member

    Hi Jens,

    It’s happening because you have the below code :

    @media (max-width: 480px) {
    .site > .x-container.max.width.offset {
        max-width: 100%;
        width: 100%;
    }
    }

    So there is actually no space and eventually the border is cutting off. You can update the code a bit :

    @media (max-width: 480px) {
    .site > .x-container.max.width.offset {
        max-width: 90%;
        width: 90%;
    }
    }

    Hope this helps.

    #1239784
    strandbein
    Participant

    Ok, thank you.

    #1239851
    Joao
    Moderator

    Let us know if you need further help,

    Joao

  • <script> jQuery(function($){ $("#no-reply-1235986 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>