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

    Hi,

    wondering if there is a way to reduce the blank space at the top of the mobile view.

    thank you

    #509521

    Hi uvanlj1!

    You have some custom CSS which is moving the layerslider down 100px.

    #layer_slider_1, #homepagelinks {
        box-shadow: none !important;
        border: 0 !important;
        position: relative;
        top: 100px;
        z-index: 55;
        background-color: transparent!important;
        margin-top: -100px;
    }

    Surround it with this if you only want it applied on larger screens.

    @media screen and (min-width: 767px) {
    
    }
    

    Cheers!
    Elliott

    #509690

    Great…worked perfectly…

    Cheers

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘too much space on top of mobile view’ is closed to new replies.