Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #193639

    hi,

    the text on my layer slider is all over the place on mobile… is there a way to turn it off for mobile?
    or just show heading text not sub text?

    thanks

    #193688

    Hey jazbird!

    Please edit the layer then go to Attribute. Give it a unique css class or id, example “awesome-layer”. Use media queries to hide it on mobile view. Add this on Quick CSS field:

    @media only screen and (max-width: 767px) {
      .awesome-layer {
    display: none !important
    }
    }

    This will hide all layers with “awesome-layer” css class attribute on mobile view.

    Regards,
    Ismael

    #193716

    sorry – my mistake…

    i’m actually using the FULLWIDTH EASY SLIDER!

    how would i do it there?

    jaz

    #193875

    Hey!

    Can you post the link to your website?

    Best regards,
    Yigit

    #195111
    #195137

    Hey!

    You can use this:

    @media only screen and (max-width: 767px) {
    .caption_fullwidth.caption_bottom {
    display: none !important;
    }
    }

    Cheers!
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘layer slider text on mobile’ is closed to new replies.