• Resolved tessadesign

    (@tessadesign)


    Hi there,

    Can anyone help me with some css to hide an image on mobile? I do not want the green arrow on this page to display on mobile.

    Thanks,

    Tess

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • gdandrija

    (@gdandrija)

    Hi again @tessadesign,

    Sure, here is the CSS code which will disable the appearance of the green arrow on mobile devices:

    
    @media(max-width:767px){
    img.wp-image-206 {
        display: none;
    }
    }
    

    Feel free to adjust the max-width value per your needs, this should cover all mobile devices.

    Have a nice day,
    Andrija

    Thread Starter tessadesign

    (@tessadesign)

    Thanks very much, Andrija.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Image on Mobile’ is closed to new replies.