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

    Hi There – I’d like the text on my layered sliders to stay the same size when it’s in mobile view. Currently the text on the slider reduces size so it’s so small that you can’t read it. Is there a way to do this in the slider settings or is this a CSS issue?

    Thanks

    #222023
    This reply has been marked as private.
    #222223

    Hi!

    Please edit the slides then go to each layer’s Attribute panel. Add a unique css class selector for the title and captions. Add “layer-slider-title” for the title and “layer-slider-caption” for the captions. Use media queries on Quick CSS to specify the font size on mobile devices:

    @media only screen and (max-width: 1300px) {
    .layer-slider-caption {
    font-size: 18px !important;
    line-height: 18px !important;
    }
    
    layer-slider-title {
    font-size: 25px !important;
    line-height: 25px !important;
    }
    }

    Regards,
    Ismael

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