Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #28947

    Hi,

    The Easy Slider caption gets cut off in mobile view and the title + caption takes up the entire image. Can the title and/or caption be removed from mobile view? I’d actually like to keep the title there and just delete the caption.

    #139256

    Hi, maybe you can try to edit css/custom.css, in the mobile devices half, add:

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

    (it may also works without the !important and nameofclass is the name for the caption class)

    #139257

    Hey,

    @asdevargas: Thanks for the tip.

    @htarant: You can use this on your custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    .avia-slideshow .avia-caption {
    display: none;
    }
    }

    Regards,

    Ismael

    #139258

    Thanks @asdevargas and @ismael.

    It didn’t work with only .avia-slideshow .avia-caption. I had to also add .slideshow_caption .avia-caption-content. Then it worked.

    Thanks for your quick reply.

    :)

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Easy Slider Caption in Mobile’ is closed to new replies.