Home > other >  How do I style this text to be bold?
How do I style this text to be bold?

Time:11-22

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

CodePudding user response:

You can do <center> <font color="black; font-weight: bold">Free Shipping & Returns</font> <center> that should work

CodePudding user response:

You can use CSS to achieve this using the font-weight property.

<center style="color: black; font-weight: heavy;">Free Shipping & Returns<center>

Additionally, to do this with just raw HTML:

<center><font color="black"><strong>Free Shipping & Returns</strong></font></center>

CodePudding user response:

1. You can bold your text with 2 ways

Way - 1

<center> <font color="black;"><b>Free Shipping & Returns</b></font> <center>
<iframe name="sif1" sandbox="allow-forms allow-modals allow-scripts" frameborder="0"></iframe>

Way - 2

<center> <font color="black;"><strong>Free Shipping & Returns</strong></font> <center>
<iframe name="sif2" sandbox="allow-forms allow-modals allow-scripts" frameborder="0"></iframe>

CodePudding user response:

<center><b>Free Shipping & Returns</b><center>

CodePudding user response:

There are 3 ways to achieve your desired result

First Option

<center> <font color="black"; font-weight: bold;>Free Shipping & Returns</font> <center>

Second Option

<center> <font color="black"><b>Free Shipping & Returns</b></font> <center>

Third Option

<center> <font color="black"><strong>Free Shipping & Returns</strong></font> <center>
  • Related