How am I able to make this bold?

Hello, how am I able to make the circled text bold?

Hi Ricky, not sure if there’s an option in the theme settings to do this (usually not). Check that first.

If not, you can find the class for those menu items, and add a css rule that will have the following property:

.class-name {
  font-weight: bold;
}

Hello

How am I able to find the class?

You should be able to get it by inspecting the page and finding the menu item. If you post your website address, I can get it for you.

https://fhj9l4mmbn1nghyc-12053444.shopifypreview.com

Hi @ricky24

Check this one.

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.
.menu-item-has-megamenu > div > ul > li:first-child {
    font-weight: 600;
}