How to target image+text block only for font size

What CSS or edits would make sense here if I want to target the image+text block at the bottom that has headline “Our Products…no artificial ingredients” - but only this block, on the homepage.

www.healthymeliving.com

I would like to change the font size of everything below the headline “Our Products”, and currently not possible without changing base text size everywhere.

------### OUR PRODUCTS

No artificial ingredients: Such as artificial coloring, sweetener or flavors.

Hi @ABFN ,

Please use the code below instead. Change font-size to the size you want

  1. In your Admin store, click Online store > Themes
  2. Go to the theme you want to edit, click Actions > Edit code
  3. In your Asset folder, open the style.css and add the code below
#shopify-section-template--16115357876480__1559243981492 .image-with-text__text > p {
    font-size: 20px;
}
1 Like