Fork me on GitHub

Css Help  Bottom

  • A.pn-center:link {
    color: #FFFFFF;
    font-size: 11px;
    text-decoration: none;
    font-family: tahoma,arial, helvetica, geneva;

    how can i make a set links use that ?

    like i want one area specific to use that
  • Code

    <a class="pn-center" href="page.php">Text</a>


    ...and you can control the links even further by adding the following (eg) to your style sheet:

    Code

    a.pn-center:link
    {
      font-size: 11px;
      font-weight: normal;
      font-family: verdana, helvetica, arial;
      text-decoration: none;
      color: #0000FF;
    }

    a.pn-center:visited
    {
      font-size: 11px;
      font-weight: normal;
      font-family: verdana, helvetica, arial;
      text-decoration: none;
      color: #800080;
    }

    a.pn-center:hover
    {
      font-size: 11px;
      font-weight: normal;
      font-family: verdana, helvetica, arial;
      text-decoration: none;
      color: #FF0000;
    }

    a.pn-center:visited:hover
    {
      font-size: 11px;
      font-weight: normal;
      font-family: verdana, helvetica, arial;
      text-decoration: none;
      color: #FF0000;
    }
  • Thanks :)
  • You're welcome.
  • ..or slim it down a bit:

    Code

    a.pn-center
    {
      font: normal 11px arial, verdana, helvetica;
      color: #0000FF;
      text-decoration: none;
    }
    a.pn-center:link { }
    a.pn-center:visited
    {
       color: #800080;
    }
    a.pn-center:hover { }

    or

    Code

    a.pn-center, a.pn-center:link, a.pn-center:hover
    {
      font: normal 11px arial, verdana, helvetica;
      color: #0000FF;
      text-decoration: none;
    }

    a.pn-center:visited
    {
       color: #800080;
    }


    ..should work.. it'll inherit the attributes of a.pn-center.. and instead of repeating them, they can be consolidated. you can change colors, fonts, weight and what-not in the empty captions if you'd like.. otherwise, they can probably be removed..
  • 0 users

This list is based on users active over the last 60 minutes.