Hello @DRAWandCARE ![]()
Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
#judgeme_product_reviews * {
font-weight: normal;
}
The result
Hope that helps!
A user running the Judge.me Reviews App on their Shopify store (Dawn 11.0.0 theme) wanted to remove bold formatting from various elements in the review widget.
Initial Solution:
base.css file.jdgm-rev-widg__summary-text { font-weight: 100 !important; }Follow-up Requests:
The user needed additional elements un-bolded:
Final Working Solution:
Community helpers provided progressive CSS snippets targeting:
span.jdgm-rev__author, .jdgm-form__title, label.jdgm-form#judgeme_product_reviews * { font-weight: normal; }.jdgm-rev__body, .jdgm-link, .jdgm-histogram-clear-filter { font-weight: 400 !important; }Resolution:
The issue was fully resolved through iterative CSS additions to the themeโs base.css file. The user confirmed all elements were successfully un-bolded.
Hello @DRAWandCARE ![]()
Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
#judgeme_product_reviews * {
font-weight: normal;
}
The result
Hope that helps!