
09-18-2003, 02:15 AM
|
|
Evenly Divided
|
|
Join Date: Aug 2001
Posts: 4,028
|
|
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-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: normal;
color: #333333;
line-height: normal;
A:link {color: #000000; text-decoration: none;}
A:visited {color: #000000; text-decoration: none;}
A:hover {color: #FF0000; text-decoration: none;}
}
Thx!
|

09-18-2003, 02:24 AM
|
|
Web Hosting Guru
|
|
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
|

09-18-2003, 02:26 AM
|
|
Evenly Divided
|
|
Join Date: Aug 2001
Posts: 4,028
|
|
DID IT!?
One sec 
|

09-18-2003, 02:37 AM
|
|
Web Hosting Master
|
|
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
|

09-18-2003, 02:41 AM
|
|
Evenly Divided
|
|
Join Date: Aug 2001
Posts: 4,028
|
|
digitok,
I tried your example which is online now... same result...
|

09-18-2003, 02:46 AM
|
|
Web Hosting Master
|
|
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
|

09-18-2003, 02:48 AM
|
|
Evenly Divided
|
|
Join Date: Aug 2001
Posts: 4,028
|
|
YOU DA MAN! THANKS SOOOOO MUCH!
|

09-18-2003, 02:51 AM
|
|
Web Hosting Master
|
|
Join Date: Jan 2003
Location: Perth, WA, Australia
Posts: 1,276
|
|
Relax mate  No troubles.
__________________
nu-metal.org :: coming soon
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
| Postbit Selector |
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|
|
| Login: |
|
|
| Advertisement: |
|
|
| Web Hosting News: |
|
|
|