Change size and weight of header navigation menu text

@KetanKumar
Thanks in advance!

is there also a way to change the size of the navigation header menu items? They are currently very small and thin? But I cant see how to do this? i’d like them to be 50% bigger and thicker line weight please

Any help is much appreciated!

Pete

https://laz-the-plant-scientist.myshopify.com

P word test

Theme blockshop

  1. Go to your store click on Actions > Edit Code

  2. Assets > theme–critical.css add below lines at the bottom of the file.

li.x-menu--level-1--link a {
    font-weight: bold;
    font-size: 17px;
}


If helpful then please Like and Accept Solution.

@Savior Amazing thank you!

Can you also give me the codee to make the cart icon and the search and account icons bigger too?

Thanks in advance

  1. Go to your store click on Actions > Edit Code

  2. Assets > theme–critical.css add below lines at the bottom of the file.

.icon--search,.icon--account,.icon--cart {
height: 25px !important;
width: 25px !important;
}

If helpful then please Like and Accept Solution.

hii, @peter550
Paste this code on top of the theme-crictical.css file.

ul.x-menu--level-1--container li a {
    font-size: 22px;
    font-weight: bolder;
}
.icon--cart {
    height: 55px !important;
    width: 35px !important;
}
    height: 35px !important;
    width: 35px !important;
}
.icon--account {
    height: 35px !important;
    width: 35px !important;
}

like this:

Thank You.