Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1104046
Vertical slider not really responsive on my website
Closed

Comments

  •  2
    VictorBaudot started the conversation

    Hello,

    First, I have to say you that this theme with all its options is just AWESOME ! You did a crazy work to offer us such a theme, thank you.

    I decided to begin with a vertical slider page and only this page for my website.

    On desk it's perfect but when I look it on my phone, the images don't resize so it doesn't look great...

    I searched for solutions or options for mobile but I didn't find any solution whereas on your exemples : http://codex-themes.com/thegem/splash-fullscreen-vertical-slider-1/ it's perfectly responsive.

    Please give me a solution :)

  •  6,918
    Oliver replied

    HI!

    pls. add following css:

    @media (max-width: 767px) {
    .scroller-block {
        background-size: cover;
    }
    }

     

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    VictorBaudot replied

    Merci Gregor it works !

    Just one more thing : how can I change position of the elements on mobile and the font-size ?

  •  6,918
    Oliver replied

    HI!

    1. Sorry, can you add some screenshots what you need to change?

    2. Css example:

    @media (max-width: 1000px) {
    body .title-xlarge {
        font-size: 30px;
        line-height: 30px;
    }
    }
    @media (max-width: 768px) {
    body .title-xlarge {
        font-size: 20px;
        line-height: 30px;
    }
    }
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver