1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Css H1 and other style not working

Discussion in 'CSS' started by ian_ok, Nov 10, 2005.

  1. #1
    For my site: www.costaandsierra.com the text above the menu is a very slightly different style or size but my css has them the same what am I doing wrong?

    Thanks Ian

    .headerindex a:link, a:visited
    { font-family: Tahoma;
    font-size: 14px;
    color: #33CC33;
    text-align: center;
    text-decoration: none; }

    h1
    {
    font-family: Tahoma;
    font-size: 14px;
    color: #33CC33;
    text-align: center;
    display: inline;
    }
     
    ian_ok, Nov 10, 2005 IP
  2. TheHoff

    TheHoff Peon

    Messages:
    1,530
    Likes Received:
    130
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Missing a comma:


    .headerindex a:link, a:visited

    should be

    .headerindex, a:link, a:visited
     
    TheHoff, Nov 10, 2005 IP
  3. ian_ok

    ian_ok Peon

    Messages:
    551
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Doh Doh Doh, Thanks very much.

    ian
     
    ian_ok, Nov 10, 2005 IP