Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #627541

    Hi,

    My site looks great on desktop but on mobile (iphone 6) the captions on the full screen slider does not look right

    what are my options for the caption text on smaller devices?

    – Is it possible to have a replacement text (less copy)
    – Remove some text?

    Thanks

    #628618

    Any update?

    #628793

    Hi,

    Thank you for using Enfold.

    You cannot replace the text but you can hide it or adjust the font size:

    @media only screen and (max-width: 768px) {
    .responsive #top .slideshow_caption h2.avia-caption-title {
        font-weight: 400 !important;
        font-size: 11px !important;
    }
    }

    Best regards,
    Ismael

    #628796

    thanks

    what is the code to hide it?

    #629060

    Hi,

    Please try this if you want to hide it:

    @media only screen and (max-width: 768px) {
    .responsive #top .slideshow_caption h2.avia-caption-title {
        display:none !important;
    }
    }

    Best regards,
    Rikard

    #652427

    That did not work to hide the captions :(

    @media only screen and (max-width: 768px) {
    .responsive #top .slideshow_caption h2.avia-caption-title {
    display:none !important;
    }
    }

    my site

    #653295

    Hi!

    Please use this:

    @media only screen and (max-width: 768px) {
    .avia-fullscreen-slider .slideshow_caption { display: none !important; }
    }

    Cheers!
    Ismael

    #653366

    Thanks. That works!

    You guys are the best

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Full screen slider captions on mobile’ is closed to new replies.