Smaller text size for product description & footer

Wondering how to make the text size smaller of a product description? It’s also the same size in the footer and would also like it smaller there (link size is perfect but business description is larger)

Thanks in advance

Hi @smander

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code
.product__description.rte.quick-add-hidden p {
    font-size: 1.2rem !important;
}
.footer-block__details-content.rte p {
    font-size: 1.2rem !important;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you, much appreciated!