Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #460527

    Is there a way to extend the EasySlider height so that the title, caption, and CTA button are visible ON MOBILE? The CTA button and the description cut off. I’ve tried to reduce the text size but that only seems to effect the desktop.

    #460761

    Hi servemark!

    If we did that then the image would look distorted. I think the best thing to do is reduce the font size or hide the text all together. You currently are using some CSS to set it to 20px.

    .responsive #top .slideshow_caption h2 {
      font-size: 20px !important;
    }

    To only target mobiles remove that and add this.

    @media screen and (max-width:767px) {
    .responsive #top .slideshow_caption h2 {
      font-size: 10px !important;
    }
    }

    Best regards,
    Elliott

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