MAKE TOP LEVEL MENU ITEMS BOLD ON MOBILE VIEW - SENSE THEME

Solved

MAKE TOP LEVEL MENU ITEMS BOLD ON MOBILE VIEW - SENSE THEME

PurpleHeartDes
Tourist
6 0 2

Hi Guys, 

 

I have been struggling to make my "level 1" menu items bold on mobile view. My "level 2" items (eg: earplugs, hearing aids, earbuds, etc) I need to remain normal font instead of bold. I have managed to make them bold on desktop but not mobile. I only need "EARRINGS", "CHAINS", "RINGS" and "ACCESSORIES" to be bold. 

I am using SENSE theme

My store is www.purpleheartdesign.shop

Thank you so much! 

 

I've attached screenshots to show my issue.IMG_9031.jpgScreenshot 2024-09-02 162405.png

 

Accepted Solutions (2)

Made4uo-Ribe
Shopify Partner
10038 2387 3014

This is an accepted solution.

Hi @PurpleHeartDes 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 749px){
.menu-drawer summary.menu-drawer__menu-item {
    font-weight: 800;
}
}

 

And Save. 

result:

Made4uoRibe_0-1725292222868.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

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.

View solution in original post

BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

@PurpleHeartDes,

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: 

 

 

<style>
details summary {
  font-weight: bold;
}
</style>

 

 Result:

BSSCommerceB2B_0-1725292336691.png

If it helps you, please like and mark it as the solution.

Best Regards 😍

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

Replies 6 (6)

Made4uo-Ribe
Shopify Partner
10038 2387 3014

This is an accepted solution.

Hi @PurpleHeartDes 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 749px){
.menu-drawer summary.menu-drawer__menu-item {
    font-weight: 800;
}
}

 

And Save. 

result:

Made4uoRibe_0-1725292222868.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

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.
PurpleHeartDes
Tourist
6 0 2

WOW! Thank you so much for a speedy and articulate reply solving my issue!

Made4uo-Ribe
Shopify Partner
10038 2387 3014

Welcome! I had a hard time finding your correct store URL as well.😅

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.
PurpleHeartDes
Tourist
6 0 2

updated! Thanks for pointing out the error - I have got you a coffee 🙂

BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

@PurpleHeartDes,

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: 

 

 

<style>
details summary {
  font-weight: bold;
}
</style>

 

 Result:

BSSCommerceB2B_0-1725292336691.png

If it helps you, please like and mark it as the solution.

Best Regards 😍

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

PurpleHeartDes
Tourist
6 0 2

updated