Tagged: , ,

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

    Hi

    I’d like to know how to reduce the size of the caption text on the easyslider when viewing on a mobile device? I have the following code for reducing the size of the H2 but not the actual caption text.

    If this still isn’t right how can i remove the caption all together when viewed on mobile?

    Many thanks

    Richard

    #570106

    Hey foggygolf30!

    use this code in Quick CSS field:

    @media only screen and (max-width: 736px) {
    h2.avia-caption-title {
    font-size: 10px;
    }
    .avia-caption-content {
    font-size: 10px
    }
    }
    

    Regards,
    Andy

    #570943

    how can i remove both caption title and caption content when viewed on a mobile?

    #571154

    Hi,

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

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

    Regards,
    Rikard

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