Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Hi,
I would like to hide the red arrow image on my web page for mobile devices only. Could you please provide the code I need to use in order to do this? Thank you.
Hi Kristin
The following custom CSS should do the trick for you
@media (max-width: 480px) { .wp-image-1612 { display:none; } }If you’d like the image to hide slightly earlier, then you can change the 480px value to something else.
Thanks Greg! That did it!
Great! Glad to hear it :)