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 .
It’s not live yet. not sure if this would work?
Ok share the store access.
is it safe to share?
hey it’s:
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 ![]()
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 ![]()
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.