Archived topic
Global style background color - mobile device only
3 replies · Started by pro123 on March 22, 2022
Viewing posts 1–4 of 4
Hi Team,
I am using a global style H1 header with a background color.
I would like to only show this background color on a mobile device. The background color should disabled on all other devices
Regards,
Luuk
Hi there,
try adding this CSS:
@media(min-width: 769px) {
h1.gb-headline-main-h1-header {
background-color: unset;
}
}
Thanks David!
You're welcome
This archived topic is closed to new replies.