I messed with the code in theme.liquid as I was trying to make my menu also visible in mobile format, and instead I ended up with unwanted text above my announcement bar:
-
Do you know how to remove the unwanted text? (“@media screen” line)
-
Do you know how to make a menu visible in mobile format as well? Even if it is a hamburger version
Site: https://theslipperyneedle.com/
PW: Spruce23
1 Like
Hey @sprucest ,
You can restore a previous version of theme.liquid,
just click on the drop down menu under “Recent Changes” and select the original.
And for the hamburger menu
Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.
Screenshot is for reference only, the correct code to paste is the one shown above.
1 Like
Hi @sprucest
Find this code in your theme.liquid file and be sure its inside on this tags
@media only screen and (min-width: 750px) {
body {
font-size: 1.6rem;
}
}
Or put this code after or before
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like