How can I make menu font bold and adjust spacing in debut theme?

Hi!

We are trying to change so that the font of our menu is bold but I can’t find where to change or add some code to do that. We would also like to change the space between the menu items so the spacing is wider.

Store: https://iamrunbox.com/

We are using debut theme.

Thanks in advance!

Hi,

Open your theme.css file under the Asset folder and paste the code below.

.site-nav a {
padding: 3px 50px !important;
font-weight: 600 !important;
}

Hi @MagnusIAMRUNBOX

Please use this css code in theme.css at the end

.site-nav a {
padding: 3px 70px;
font-weight: 900 !important;
}

.site-nav a {
padding: 3px 60px !important;
font-weight: 600 !important;
}

@MagnusIAMRUNBOX

Add this code in the bottom of the theme.css

Thank you

Please add below code in bottom of assets/theme.css file

.site-nav a {
padding:3px 40px ;
font-weight: 600;

}
Thank you.