Aurora Theme: font boldness override

Solved

Aurora Theme: font boldness override

mollyaland
Tourist
9 0 2

hello! 

can anyone help me with the custom css to change the weight of this font? It is too bold.

Please see picture. thank you!

www.allmyfriendsarehoopers.com

 

Screenshot 2024-12-24 at 7.15.30 PM.png

Accepted Solution (1)

DaisyVo
Shopify Partner
2301 282 329

This is an accepted solution.

HI @mollyaland 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

.product-price__content * {
    font-weight: normal !important;
}

 

Here is the result:image_720.png

 I hope this helps

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 4 (4)

AnneLuo
Shopify Partner
1202 218 248


You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
.product-price__current-price {
    font-weight: 400 !important;
}
</style>

Result:

AnneLuo_0-1735086558419.png


Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

Tech_Coding
Shopify Partner
494 125 120

Hello @mollyaland 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
   .product-price__current-price {
       font-weight: 400 !important;
   }
</style>
RESULT:

Tech_Coding_0-1735090108733.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

DaisyVo
Shopify Partner
2301 282 329

This is an accepted solution.

HI @mollyaland 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

.product-price__content * {
    font-weight: normal !important;
}

 

Here is the result:image_720.png

 I hope this helps

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
mollyaland
Tourist
9 0 2

this works! thank you so kindly!! 🙂