skip to Main Content

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


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

    Login or Signup to reply.
  2. <center><b>Free Shipping & Returns</b><center>

    Login or Signup to reply.
  3. You can use CSS to achieve this using the font-weight property.

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

    To do this with just raw HTML:

    <center>
        <strong>Free Shipping & Returns</strong>
    </center>
    Login or Signup to reply.
  4. 1. You can bold your text with 2 ways

    Way – 1

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

    Way – 2

    <center> <font color="black;"><strong>Free Shipping & Returns</strong></font> <center>
    Login or Signup to reply.
  5. There are 3 ways to achieve your desired result

    First Option

    <center> <font color="black" style="font-weight: bold;"> <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>
    
    Login or Signup to reply.
  6. font-weight: bold;
    

    or

    <b></b>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search