Results 1 to 3 of 3

Thread: CSS Question

  1. #1
    Join Date
    Nov 2006
    Location
    D?sseldorf
    Posts
    2,858
    Tokens
    2,256

    Latest Awards:

    Default CSS Question

    How would i get the "aink" ETC, to be included in the class "cato".

    Code:
    <style type="text/css">
    <!--
        a:link {
    	color: #FFFFFF;
    }
        a:visited {
    	color: #FFFFFF;
    } 
       a:hover {
    	color: #CCCCCC;
    }
    .cato {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 12px;
    	color: #FFFFFF;
    	font-weight: bold;
    	background-color: #FFFFFF;
    	background-image: url(images/cato_bar.png);
    }
    -->
    </style>
    +rep to help.

  2. #2
    Join Date
    Mar 2007
    Posts
    1,691
    Tokens
    1,025

    Latest Awards:

    Default

    Code:
    .cato a {
    }
    Code:
    .cato a:link {
    }
    Code:
    .cato a:hover {
    }
    Etc, just input your styles.

  3. #3
    RedCrisps Guest

    Default

    +rep i needed this aswell

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •