How to Bold Item Titles Through Out Entire Store with Trade Theme

Solved

How to Bold Item Titles Through Out Entire Store with Trade Theme

jordanbford1
Excursionist
44 0 10

Hi!

 

How do I bold my item titles throughout my entire store with Trade Theme? (Product page, Featured collections, etc)

 

Screenshot 2024-12-26 at 16.45.24.png

Accepted Solution (1)
DaisyVo
Shopify Partner
2834 339 394

This is an accepted solution.

Hi @jordanbford1 

 

Could you please try this code instead?

 

div.collection slider-component ul.grid.product-grid .card__heading a {
    font-weight: bold !important;
}

 

Please let me know if it works. Thank you!

 

Best,
Daisy - Avada Support Team.

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 9 (9)

Made4uo-Ribe
Shopify Partner
9710 2309 2888

Hi @jordanbford1 

Try this one. 

 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5 {
    font-weight: bold;
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1735253750439.png

     

 

 Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
jordanbford1
Excursionist
44 0 10

@Made4uo-Ribe I am wanting to only bold *item titles* across the site in all of these sections and product page. Can you help update the code to do that? Apologies for the confusion. 

Made4uo-Ribe
Shopify Partner
9710 2309 2888

Oh, sorry I thought all titles. Please, replace on this code. 

 

.collection h3.card__heading {
    font-weight: bold;
}

 

And Save. 

Result:

Made4uoRibe_0-1735308939642.png

 

 

 Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

DaisyVo
Shopify Partner
2834 339 394

Hi @jordanbford1 

 

I hope you are well. You can follow our instructions below:


1/ Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
2/ From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
3/ Copy the code below and paste it there

 

Here is the code for Step 3:

 

.card__heading a {
    font-weight: bold !important;
}

 

image (23).png

 


Please let me know if it works. Thank you!

 

Best,
Daisy - Avada Support Team.

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
jordanbford1
Excursionist
44 0 10

@DaisyVo This affects the Collection List Titles and makes them bold too and I am only wanting to bold Product (Item) Titles. Is there anyway to make this only bold the item titles?

DaisyVo
Shopify Partner
2834 339 394

This is an accepted solution.

Hi @jordanbford1 

 

Could you please try this code instead?

 

div.collection slider-component ul.grid.product-grid .card__heading a {
    font-weight: bold !important;
}

 

Please let me know if it works. Thank you!

 

Best,
Daisy - Avada Support Team.

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
DaisyVo
Shopify Partner
2834 339 394

Hi @jordanbford1 

 

I'm wondering if it works? 

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

Moeed
Shopify Partner
6614 1788 2173

Hey @jordanbford1 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.card__heading {
    font-weight: bolder !important;
}
</style>

RESULT:

Moeed_0-1735265141542.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


jordanbford1
Excursionist
44 0 10

@Moeed This affects the Collection List Titles and makes them bold too and I am only wanting to bold Product (Item) Titles. Is there anyway to make this only bold the item titles?