Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1048145

    I have a similar problem to others where the layer slider on a mobile device loads way down the screen, similarly the menu on mobile device starts far down the screen. is it possible to add css to bring it back up to the top?

    • This topic was modified 6 years, 6 months ago by Digital-os.
    #1048200

    I’m partly there with adding the below to quick css but im sure there is a neater way of doing it?

    .inner-container {
    position: relative;
    height: 156px;
    width: 100%;
    }

    • This reply was modified 6 years, 6 months ago by Digital-os.
    #1048750

    Hi,

    Thanks for the update, though I couldn’t reproduce the problem on my end using Chrome. On which device/browser are you seeing it?

    If your CSS is working then I can’t see any problems with it.

    Best regards,
    Rikard

    #1050825

    HI
    I see the same error on any browser when using mobile device view and also any phone or ipad etc.
    Picture attached shows the slider is way down the page. When I open the menu the menu text starts at the same place as the slider.
    My CSS kindo of works but it make the logo do something funny when loading.
    Is there any other suggestions for a fix . Thankyou

    #1051619

    Hi,

    Did you add any custom modifications to the theme? The height of the header elements are being set dynamically.

    Best regards,
    Ismael

    #1051792

    We don’t have any custom mods to the theme. however with your comment I fixed using

    kriesi.at/documentation/enfold/header/#Header-Height

    and setting to default 80px

    /*--------------------------------*/
    
    /* Custom header height in mobile */
    
    /*--------------------------------*/
    
    @media only screen and (max-width: 767px) {
        #header #header_meta .container {
            /* Top bar height */
            /*   height: 50px  !important;  */
        }
    
        #header #header_main .container {
            /*  Main header height  */
            height: 80px !important;
        }
    }
    • This reply was modified 6 years, 5 months ago by Digital-os.
    #1052232

    Hi,

    Great, glad you found a solution and thanks for sharing. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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