1 replies
  • WEB DESIGN
  • |
I want to make the font size of my menu smaller. How to do that using CSS?

website - www.fat2fitsteps.com
#font #menu #size
  • Profile picture of the author David V
    Change the font size in style.css on line 239 for the main menu
    Code:
    #fullnav #fullnav_menu > li > a {
    background: transparent;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
    padding: 5px;
    position: relative;
    }
    and for the submenu, so to line 184. You'll need to add "font-size" to it like so.
    Code:
    #fullnav li a {
    display: block;
    padding: 5px 10px;
    font-weight: 400;
    font-size: 12px;
    text-decoration: none;
    }
    You can change these right in the editor in the WordPress admin panel if your not familiar with editing by hand and FTP'ing it.
    Using firebug in firefox, or the developer tools in chrome you can see what the css styles are for the menu.
    {{ DiscussionBoard.errors[7939358].message }}

Trending Topics