How Do I Change The Font of My Menu ?

Discussion in 'HTML & Website Design' started by JDS, Jun 20, 2009.

  1. #1
    http://FootieArts.com

    The menu is using CSS.

    How do I change the font of the menu ?

    Any help would be great.
     
    JDS, Jun 20, 2009 IP
  2. Cloudberries

    Cloudberries Peon

    Messages:
    74
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You'll be needing a bit of CSS selector magic...

    try

    .menu li a {
    font-family:tahoma
    font-size:10px;
    color:#445566;
    }

    or, since this selector will probably already be in your css file - menu/menu_style.css - just find the line that starts with ".menu li a" and modify what's in the { }

    Also, try messing with the "font-family" and "font-size" until you get it looking how you want. And "color" is just there to show you how the change the colour too
     
    Cloudberries, Jun 20, 2009 IP
    JDS likes this.
  3. JDS

    JDS Banned

    Messages:
    185
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #3
    JDS, Jun 20, 2009 IP