How can I make the heading on an image banner larger than the standard settings allow, but only for PC users?
STORE https://timecraft.se/
A user seeks to increase the image banner heading size beyond default theme settings, specifically for desktop/PC users only.
Proposed Solution:
base.css file via Online Store → Edit Code.banner__heading.inline-richtext h1 strong with font-size: 74px !important@media (min-width: 1024px) to apply changes only on desktop screensCurrent Status:
How can I make the heading on an image banner larger than the standard settings allow, but only for PC users?
STORE https://timecraft.se/
go to your online store → edit code → base.css file and paste this code these
@media (min-width: 1024px) {
.banner__heading.inline-richtext.hxxl strong {
font-size: 74px !important;
}
}
Hi, it didn’t make any changes.