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

    Hi,

    I would like to hide the caption on the homepage fullscreen slider when the mobile in vertical (the caption runs off the image), but would like it to show when the phone is horizontal. If that’s not possible, then just to hide it all the time on mobile.

    I tried this support forum: https://kriesi.at/support/topic/full-screen-slider-captions-on-mobile/

    and this code but it didn’t work.

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

    Any help is appreciated, thanks!
    Deanna

    #733451

    Hey rosewoodva,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    .home #full_slider_1 .avia-caption-content {
      display:none !important;
    }
    }

    Best regards,
    Rikard

    #733840

    Hi Rikard,

    That worked to hide the caption. I should have said I also want to hide the title on mobile also.

    I would still like the buttons to show.

    Thanks!
    Deanna

    #733932

    Hi Deanna,

    Ok, please try the follow instead:

    @media only screen and (max-width: 767px) {
    .home #full_slider_1 .avia-caption-content, .home #full_slider_1 .avia-caption-title {
      display:none !important;
    }
    }

    Best regards,
    Rikard

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