How To Change Menu Font Size In WordPress

To change the font size of the menu on a WordPress website using CSS, you can use the following steps:

1. Log in to your WordPress dashboard.

2. Go to Appearance > Customize.

3. Click on Additional CSS.

4. Add the following code to change the font size of the menu:

#site-navigation a {
    font-size: 20px;
}

5. Click on the Publish button to save the changes.

Note that the CSS selector “#site-navigation a” targets the links within the element with an ID of “site-navigation”. You may need to adjust the CSS selector to target the specific menu on your website, you can use browser’s developer tools to inspect the menu and find the right selector.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.