Change font size product page

Hi,

I wanted to change the font size to 24px on vendor name on product page only my site is https://uvbrjmmk8cuwxque-84365082931.shopifypreview.com

2 Likes

Hi @Luxurymrkt ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Hello @Luxurymrkt

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.product__vendor { font-size: 24px !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

@Luxurymrkt Please follow below steps to change the font size for vendor name on product page.

  1. From admin go to “Online Store” → “Themes”.
  2. Click action button from the current theme and select “Edit code”.
  3. Go to “theme.css” file and paste the below code in the bottom of the file.
.template-product .main-product-section .product__details .product__vendor a {
    font-size: 24px;
}

Result will be like,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

HI @Luxurymrkt , kindly use the following code:

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!