I am trying to figure out how to style this text to be bold in Shopify?
<center> <font color="black">Free Shipping & Returns</font> <center>
I also want it to adapt the same typography but not sure how to do that. Currently I am in the product-template.liquid file
6
Answers
You can do
<center> <font color="black; font-weight: bold">Free Shipping & Returns</font> <center>
that should work<center><b>Free Shipping & Returns</b><center>
You can use CSS to achieve this using the
font-weight
property.To do this with just raw HTML:
1. You can bold your text with 2 ways
Way – 1
Way – 2
There are 3 ways to achieve your desired result
First Option
Second Option
Third Option
or