Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #477896

    I added this code to Quick CSS and cleared cache but captions on iphone remain. Please help!

    @media only screen and (max-width: 1024px) and (min-width: 768px) {
    .av-inner-masonry-content.site-background {
    display: none !important;
    }}

    #478179

    Hey SJS!

    I think 768 pixels is too wide to cover iphone size, please try the following instead, it will remove the caption from all screens which are wider than 1024 pixels:

    @media only screen and (max-width: 1024px) {
    .av-inner-masonry-content.site-background {
    display: none !important;
    }}

    Regards,
    Rikard

    #479915

    Perfect, thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Mobile Caption Removal’ is closed to new replies.