Archived topic
How to prevent image in top bar to appear on desktop screens
3 replies · Started by Mahmoud on January 3, 2021
Viewing posts 1–4 of 4
Hi
I have added a gif image to my top bar and make it sticky, I want this image to show only to visitors that enter my website through mobile phones only, How could I do this?
my website URL is
https://xn--jgb9dbe.com/
Hi there,
Try this CSS:
@media (min-width: 769px) {
.top-bar {
display: none;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
it works
thank you very much
No problem :)
This archived topic is closed to new replies.