My dropdown menu is not bold in the mobile view. How can I change this?

Hi, is it possible to make the dropdown menu bold in the mobile view, as it is on the desktop menu? Currently, it looks very bland. Also, when you open the dropdown, the text appears a bit larger than the header. Can it be adjusted to look more consistent?

Hello @sofiakarkus

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 on theme.liquid

@media screen and (max-width: 767px) { .product__accordion__title { font-weight: bold !important; } }

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

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 above the tag


Result:

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

Hi @sofiakarkus ,

  1. Go to Online Store β†’ Theme β†’ Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!