Text adjustments

Hi i would like to make some simple text adjustments (see attached for reference):

  1. Make the ‘continue shopping’ text slightly smaller for both mobile and desktop view

  2. Ensure the ‘continue shopping’ text is normal and not fully capitalised like it currently is

  3. Ensure the footer menu links are normal and also not fully capitalised

  4. 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!

Screenshot 2024-08-12 at 07.59.34.png

Screenshot 2024-08-12 at 08.02.20.png

Hey @golazocases

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. 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