Hi,
The website is https://bf1w9g6dke3e770n-29280075912.shopifypreview.com
and I’m trying to get the top of the website link that says “purchase all-natural treats” to be in 17 font size on mobile and 30 font size on desktop. The shopify preview will shop a change in font but when you go “live” the change doesn’t happen (yes, I did add the new code to the live store)
Here is the first solution that worked for a short while then the font change disappeared (doesnt work anymore):
}
@media only screen and (max-width: 749px) {
span.overlay__link.feature-link.cc-animate-init.-in.cc-animate-complete {
font-size: 17px !important;
}
}
@media only screen and (min-width: 992px) {
span.overlay__link.feature-link.cc-animate-init.-in.cc-animate-complete {
font-size: 30px !important;
}
}
