Results 1 to 9 of 9
  1. #1
    Join Date
    Aug 2001
    Posts
    4,028

    CSS God Needed!!!

    Hey guys. I'm still kind of new with css:

    Here's what I have... why won't the red rollover text affect work?

    PHP Code:
    .bodytextsublinks {

        
    font-familyVerdanaArialHelveticasans-serif;
        
    font-size11px;
        
    font-weightnormal;
        
    color#333333;
        
    line-heightnormal;
        
    A:link {color#000000; text-decoration: none;}
        
    A:visited {color#000000; text-decoration: none;}
        
    A:hover {color#FF0000; text-decoration: none;}

    Thx!

  2. #2
    Join Date
    Jul 2003
    Posts
    277
    that works for me

    Edit: And I dont think you can put the Anchor inside of a class
    Perl
    Java
    SQL

  3. #3
    Join Date
    Aug 2001
    Posts
    4,028
    DID IT!?

    One sec

  4. #4
    Join Date
    Aug 2001
    Posts
    4,028
    http://www.presage-designs.com/uoit/learning/index.php

    On the left navigation menu, under "Mobile Learning" the option "Introduction"... does that go red?

    If not, how come? lol

  5. #5
    Join Date
    Jan 2003
    Location
    Perth, WA, Australia
    Posts
    1,276
    Hmm... I don't think you can put a:x inside another class... They are a class in itself..

    You need to do:

    .bodytextsublinks {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal;
    color: #333333;
    line-height: normal;
    }

    .bodytextsublinks a {
    color: #000000;
    text-decoration: none;
    }

    .bodytextsublinks a:hover {
    color: #FF0000;
    text-decoration: none;
    }
    nu-metal.org :: coming soon

  6. #6
    Join Date
    Aug 2001
    Posts
    4,028
    digitok,

    I tried your example which is online now... same result...

  7. #7
    Join Date
    Jan 2003
    Location
    Perth, WA, Australia
    Posts
    1,276
    ohhhhhhhhhhhhh sorry....

    Change the
    .bodytextsublinks a:hover {
    to
    a.bodytextsublinks:hover {

    Mixed it up.
    nu-metal.org :: coming soon

  8. #8
    Join Date
    Aug 2001
    Posts
    4,028
    YOU DA MAN! THANKS SOOOOO MUCH!

  9. #9
    Join Date
    Jan 2003
    Location
    Perth, WA, Australia
    Posts
    1,276
    Relax mate No troubles.
    nu-metal.org :: coming soon

Posting Permissions

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