css text rollovers

Out of context: Reply #6

  • Started
  • Last post
  • 8 Responses
  • g0

    it sounds like you're inheriting TimesNR from somewhere else. It might help to place the linkclass tag for your link in the actual tag e.g:

    as far as the css, I define all default attributes with a font-face in the beginning.

    body, p, input, td, tr, table, h1, h2, h3, a, select, option, li, lable, title, th
    {font-family: Geneva, Arial, Helvetica, san-serif;
    }

    then specify the link class with only the changed vaules, e.g. this class inherits the font-family from above and only applies the changes to the link classed attributes.

    .LinkText, a.LinkText, a.LinkText:visited, a.LinkText:active
    {font-size: 11px;
    font-weight: normal;
    color: #FFFFFF;
    text-decoration: none;
    }
    a.LinkText:hover
    {text-decoration: underline;
    }

View thread