Why isn't my product title appearing bold on mobile?

https://charmente.com/products/v-back-flared-jumpsuit

The product title is bold on the webpage and when i go into my theme editor, but when i load my website on mobile the product title is not bold

1 Like

Hi @Simon159

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

@media only screen and (max-width: 749px){
.product__title h1 {
    font-weight:900 !important;
}
}

And Save .

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

did not work, on mobile it still not bold.

Hi @Simon159 ,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file → Save


Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Hi @Simon159 ,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file → Save


Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

On my screen its already bold.