Morning Community,
Is there a way to increase the size of the menu text and also make it bold at the same size cheers.
Morning Community,
Is there a way to increase the size of the menu text and also make it bold at the same size cheers.
HI @BenH40 ,
Definitely. Do you mind sharing your website so we can provide a code specific for you?
No need for sorry. Please follow the instructions below
.nav-bar__item.nav-bar__item--static a.nav-bar__link.link {
font-size: 2rem;
font-weight: bold;
}
Just a FYI, you have a low star in the color contrast. This is very important for text visibility. You can try the link here to check the color contrast.
If you want to change the text color, you use the code instead. Just replace #fff to the color you want
.nav-bar__item.nav-bar__item--static a.nav-bar__link.link {
font-size: 2rem;
font-weight: bold;
color: #fff;
}
Cheers thanks so much for your assistance with this.