Solved

Bold menu headings without bolding drop-downs?

MarkTeo1986
New Member
14 0 0

Hi,

 

I was wondering if anyone had any advice on how I could achieve this - I've managed to bold the menu headings via some basic coding (see image), however this has also bolded all of the drop-down selections as well. Is there a way to have just the headings bolded and leaving the drop-down options as regular/ unbolded text?

 

Screenshot_1.png

Accepted Solution (1)

AvadaCommerce
Shopify Partner
3879 839 953

This is an accepted solution.

Hi @MarkTeo1986 ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.scss->paste below code at the bottom of the file:

.site-nav__dropdown .site-nav__label {
    font-weight: 400 !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned

View solution in original post

Replies 3 (3)

AvadaCommerce
Shopify Partner
3879 839 953

Hi @MarkTeo1986 

 

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

banned

AvadaCommerce
Shopify Partner
3879 839 953

This is an accepted solution.

Hi @MarkTeo1986 ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.scss->paste below code at the bottom of the file:

.site-nav__dropdown .site-nav__label {
    font-weight: 400 !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned
MarkTeo1986
New Member
14 0 0

This worked for me - thanks very much!