Focal Theme, Increase size of text in navigation

Hi community! :waving_hand: Im looking for a css code for the header (navigation) for increase and make bold the words in the menú. Any thoughts¿?

1 Like

Hi @arivon

This store right?

If it is check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

ul.header__linklist.list--unstyled.hidden-pocket.hidden-lap {}
desktop-navigation a {
    font-size: 20px !important;
}
.drawer__content button {
    font-weight: 900;
}

And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hey @arivon

Can you share your Store URL and Password if enabled?

Best Regards,
Moeed

Hey @arivon ,

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.

20px is desktop, 18px is mobile, change these values as you like.


Screenshot is for reference only, the correct code to paste is the one shown above.