Make text block fonts bold in section block

I have used text block in section block on product page to add highlight text.

I want help to make the text on Desktop bold.

And on Mobile I want it bold and in central potion.

Pls see the images.

@ISS1 ,

Please share the URL .

https://indigoz-online.myshopify.com/admin/themes/123066417203/editor?previewPath=%2Fproducts%2Folive-tapered-pants

It’s not live yet. not sure if this would work?

@ISS1

Ok share the store access.

is it safe to share?

hey it’s:

@ISS1 ,

https://help.shopify.com/en/partners/dashboard/managing-stores/request-access

Yes it’s perfectly safe to share your STORE.myshopify.com link as that is how we request access to your store in order to work on the back end code of your site :slightly_smiling_face:

If you are happy coding yourself, feel free to preview the page you need work on, and post the preview link for us to take a look at :slightly_smiling_face:

https://indigoz.online/products/olive-tapered-pants

this is a link to the preview page.

Hi @ISS1 ,

Please add this CSS code at the bottom of your theme.css.liquid file

.ProductMeta__Text { font-weight: 700 !important; }
@media only screen and (max-width: 600px) {
.ProductMeta__Text { text-align: center; }
}

I somehow can’t share the store link, invalid HTML error msg.

Sorry I am new to this so still learning.

@ISS1 ,

.ProductMeta__Text {
    font-weight: bold;
}
@media only screen and (max-width: 600px) {
.ProductMeta__Text {
    font-weight: bold;
    text-align: center;
}
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

Amazing!! thank you.