Results 1 to 5 of 5

Thread: CSS

  1. #1
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default CSS

    How would i make it so the link is not underlined.I'm using:

    Code:
    A:link {
    
    color: #993399;
    
    }
    
    A:visited {
    
    color: #993399;
    
    }
    
    A:active {
    
    color: #993399;
    
    }
    
    A:hover {
    
    color: #993399;
    
    }
    James


    Connected to reality through a proxy server.

  2. #2
    Join Date
    Dec 2006
    Location
    Swindon
    Posts
    3,299
    Tokens
    215
    Habbo
    dunko

    Latest Awards:

    Default

    HTML Code:
    a:link {
    
    color: #993399;
    text-decoration: none;
    
    }
    
    a:visited {
    
    color: #993399;
    text-decoration: none;
    
    }
    
    a:active {
    
    color: #993399;
    text-decoration: none;
    
    }
    
    a:hover {
    
    color: #993399;
    text-decoration: none;
    
    }

  3. #3
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    Thanks, REP+
    James


    Connected to reality through a proxy server.

  4. #4
    Join Date
    Feb 2005
    Location
    Leicestershire / Sheffield
    Posts
    685
    Tokens
    0

    Default

    If you have the same for all three, just use

    HTML Code:
    a {
    color: #993399;
    text-decoration: none;
    }

  5. #5
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    693
    Tokens
    0

    Default

    Quote Originally Posted by Eric30 View Post
    If you have the same for all three, just use

    HTML Code:
    a {
    color: #993399;
    text-decoration: none;
    }
    Wrong.
    XHTML, CSS, AJAX, JS, php, MySQL.

    --

    HxF moderators can't read timestamps.

Posting Permissions

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