- This topic has 3 replies, 2 voices, and was last updated 9 years, 5 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.


Home › Forums › Free Themes › Education Hub › Change menu's font size
How do I change the main menu’s font size?
Well, you can change the font size of the main menu by putting the following custom CSS code in customizer
section of your dashboard.
.main-navigation ul li a{
font-size: 16px;
}
Note: Change the above numeric value as per your desire.
Hope this helps !!
Thank you!
And how do I change the height of the menu while keeping the spacing organized?
Well, you can change the height the main menu by putting the following custom CSS code in customizer
section of your dashboard.
@media only screen and (max-width: 1023px){
.main-navigation ul li a {
padding: 17px 13px;
}
}
.main-navigation ul li a {
padding: 17px 25px;
}
You can change the value of padding: ie value 17px to your adjustment.
Hope this will solve your issue.
Let me know how it goes.
Regards!!!
| Cookie | Duration | Description |
|---|---|---|
| cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
| cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
| cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
| cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
| cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
| viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |



