Hi all,
Anyone know how to increase the navigation size in the header? I only want it to affect the navigation in the header and not the footer.
Thanks so much in advance!
Hi all,
Anyone know how to increase the navigation size in the header? I only want it to affect the navigation in the header and not the footer.
Thanks so much in advance!
Hi @Justin34 ,
You can add this CSS code at the bottom of your base.css code
@media (min-width: 990px) {
.header {
padding-top: 30px !important;
padding-bottom: 30px !important;
}
}
Hi DanBim…
Thanks for your reply. What I meant to say was I wanted to change the navigation text size. But only the navigation text size in the header, not the footer. Hopefully I am explaining that correctly.
Thanks so much!
Hi @Justin34 , I got it, please use this code
.header__inline-menu .list-menu__item {
font-size: 22px!important;
}
Worked perfectly! Thanks so much ![]()
You are welcome