Comments 1Tommy started the conversationMay 4, 2016 at 11:09amHi!My customer wants bigger fonts in main menu, maybe blind :-) I also need to change padding between menu items. Cant find settings for this, can you please advice?Best regards 1,710Barry repliedMay 4, 2016 at 1:41pmHi TommyThat's possible with some CSS. Please use the following and change the font-sizes and padding value.For small desktop screens (change the 15px padding for between menu items)@media (min-width: 992px) { .main-navigation li a { font-size: 15px; padding: 34px 15px; } }For large desktop screens (change the both 20px padding for between menu items)@media (min-width: 1200px) { .main-navigation li a { font-size: 17px; padding: 32px 20px 33px 20px; }}Best regards,BarryQreativeThemes.com | WordPress Themes 1Tommy repliedMay 11, 2016 at 12:23pmBarry!You are the best!Thanks!1 Like Sign in to reply ...
Hi!
My customer wants bigger fonts in main menu, maybe blind :-) I also need to change padding between menu items. Cant find settings for this, can you please advice?
Best regards
Hi Tommy
That's possible with some CSS. Please use the following and change the font-sizes and padding value.
For small desktop screens (change the 15px padding for between menu items)
@media (min-width: 992px) {
.main-navigation li a {
font-size: 15px;
padding: 34px 15px;
}
}
For large desktop screens (change the both 20px padding for between menu items)
@media (min-width: 1200px) {
.main-navigation li a {
font-size: 17px;
padding: 32px 20px 33px 20px;
}
}
Best regards,
Barry
QreativeThemes.com | WordPress Themes
Barry!
You are the best!
Thanks!