Hi i would like to make some simple text adjustments (see attached for reference):
-
Make the ‘continue shopping’ text slightly smaller for both mobile and desktop view
-
Ensure the ‘continue shopping’ text is normal and not fully capitalised like it currently is
-
Ensure the footer menu links are normal and also not fully capitalised
-
Ensure the name of the store in the footer (GOLAZO CASES) is normal and also not fully capitalised
I would like these changes to be made without effecting anything elsewhere on the store. Thanks!


Moeed
2
Hey @golazocases
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @golazocases
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file.
@media screen and (min-width: 750px) {
body {
font-size: 1.4rem;
}
}
.underlined-link {
text-transform: lowercase !important;
}
@media screen and (min-width: 750px) {
.footer-block__details-content .list-menu__item--link {
text-transform: lowercase !important;
}
}
.copyright__content a {
text-transform: lowercase !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks