Viewing 1 replies (of 1 total)
  • Hi,
    Essentially, you edit the CSS. Appearance, Editor, and then be sure you’re editing style.css.

    To make fairly simple changes to the font, you can edit the following block of CSS code. In my example I added font-size to make it smaller, and text-tranform to take out the UPPER CASE. You could also play with font-family and a few other things. You’ll need to do a little research, maybe, but this should get you started.

    Good luck, Dave

    #nav ul ul li a, #nav ul ul li a:visited {
    -moz-border-radius-topleft:0;
    -moz-border-radius-topright:0;
    color:#222222;
    display:block;
    font-size:80%;
    line-height:22px;
    padding:8px 8px 5px;
    text-decoration:none;
    text-transform:none;
    }

    PS: if you’re looking to use an unusual font, that’s a bigger deal – you’d need to research embedded fonts, an advanced CSS topic. That might be too much for this.

Viewing 1 replies (of 1 total)
  • The topic ‘dropdown menu font suffusion’ is closed to new replies.