How can I make a submenu bold?

Topic summary

A user seeks help making submenu items bold on their Shopify store. They provide a preview link and password for troubleshooting.

Initial Solutions:

  • Two contributors offer CSS snippets to add to either the theme.liquid file (before closing </body> tag) or theme.scss file
  • The first solution uses .site-nav__dropdown .site-nav__link selector with font-weight: bold

Refinement:

  • The initial CSS makes all menu items bold, but the user only wants specific submenus bolded (shown in an attached image)
  • A revised solution targets .site-nav__child-parent--link with font-weight: bold !important

Resolution:

  • The refined CSS successfully bolds only the desired submenu items
  • The issue is marked as resolved with the user confirming it “worked perfectly”
Summarized with AI on November 24. AI used: claude-sonnet-4-5-20250929.

hello! please help me how to make this submenu bold.

@Pedz23 - can you please share this page preview link?

@suyash1 https://bizsupplystore.com/?_ab=0&_fd=0&_sc=1

the password: adm!n321

@Pedz23 - password to view page?

@Pedz23
Put below css into theme.liquid file before closing tag


@Pedz23 - add this css to the very end of your theme.scss file and check

.site-nav__dropdown .site-nav__link {font-weight: bold;}

it worked. but all became bold, can we make bold only the menus in box below?

@Pedz23 - try this css

.site-nav__child-link--parent {font-weight: bold !important;}

@Pedz23 put below css into theme.liquid file before closing tag


1 Like

it worked perfectly! thank you!