Viewing 1 replies (of 1 total)
  • Go to your dashboard, hover over appearance, click on editor. It should take you directly to Stylesheet(style.css)..

    Hit ctrl+f and search for “.nav ul li a” without quotes…

    if correct you should find

    .nav ul li a {
    display: inline-block;
    padding: 5px 0;
    color: #555;
    }

    the color might be different, but anyway, to make it bold add:

    font-weight:bold;

    put it on its own line between the { and }

    so it should look like this..

    .nav ul li a {
    display: inline-block;
    padding: 5px 0;
    color: #555;
    font-weight:bold;
    }

    lastly, depending on how many menu items you have, you may need to shrink the margin…so save, look at your home page, if it looks good… stop……

    if they are wrapping to next line due to having 6 or more,..

    go back to where you were, ctrl + F again, ” nav ul li” this time..

    .nav ul li {
    float: left;
    height: 34px;
    margin: 0;
    margin-right: 36px;
    margin-left: 44px;
    vertical-align: middle;
    }

    you will lower the number of your margins left and right…

    its gonna be a guess and check… so I would start with dropping them to 35 each… make sure to only change the number of margin-right:36px; and margin-left:44px;

    should look like this

    .nav ul li {
    float: left;
    height: 34px;
    margin: 0;
    margin-right: 35px;
    margin-left: 35px;
    vertical-align: middle;
    }

    if you have drop down menus, please let me know before doing this… there’s other ways…

Viewing 1 replies (of 1 total)
  • The topic ‘Bold Text in Menu- Minimatica’ is closed to new replies.