- This topic has 2 replies, 2 voices, and was last updated 4 years, 8 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Header image’ is closed to new replies.
Home › Forums › Claremont Pro › Header image
I have the header image looking great on a desktop but it does not work on mobile or ipad. Is there a way for me to specify that the header image should not show on mobile/tablet and only on desktop?
Thanks
This CSS will remove the header image on screen/browser widths below 1024px
@media only screen and (max-width: 1024px) {
.site-header {
background-image: none;
}
}
Thank you. That works good