hi
i have problem, all my products description are bold by default and i need it normal and control when adding product in shopify.
my site
hi
i have problem, all my products description are bold by default and i need it normal and control when adding product in shopify.
my site
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above </head> tag:
Here is result:
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 ![]()
That‘s very wrong way to handle css. Why would you not correct it at the source with the relevant selector? Using !important is generally not a good idea, and adding css in the head leads to unmaintainable css. Now there are two selectors in different places. The right answer would be to remove the selector if it‘s not needed, not adding another one somewhere else to override a pointless one.
Using google dev tools you can find where the rule is being applied from and it will even show you what file it‘s in. If the selector with font-weight: bold; is not needed, delete it.