Register | Login
Views: 19364387
Main | Memberlist | Active users | ACS | Commons | Calendar | Online users
Ranks | FAQ | Color Chart | Photo album | IRC Chat
11-02-05 12:59 PM
0 user currently in Programming. | 3 guests
Acmlm's Board - I2 Archive - Programming - Wtf? Change you goddamn link >:! (CSS)
  
User name:
Password:
Reply:
 

UserPost
HyperLamer
Posts: 7091/8210
Yes, CSS is picky. I often have to reorder code chunks to get it working.
Darth Coby
Posts: 1317/1371
On the new ExGFX Workshop layout I'm using hovering and such and when I hover over a link it's supposed to turn white and underlined. This works perfectly and all, but if I hover over an already visited link the link'll just stay the same. :O

Here's the code:
A:link {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
vertical-align: top;
color: #5893c9;
font-weight: none;
text-decoration: none;
}

A:hover {
color: #ffffff;
text-decoration: underline;
}

A:active {
color: #ffffff;
text-decoration: none;
}

A:visited {
color: #5893c9;
text-decoration: none;
}

Edit: Nevermind, I found it. For some unknown reason A:hover had to be the last A:* thing in the style.css.
Edit2: Oh, and this can be closed.
Edit3: And here's the correct code:
A:link {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
vertical-align: top;
color: #5893c9;
font-weight: none;
text-decoration: none;
}
A:active {
color: #ffffff;
text-decoration: none;
}
A:visited {
color: #5893c9;
text-decoration: none;
}
A:hover {
color: #ffffff;
text-decoration: underline;
}
Acmlm's Board - I2 Archive - Programming - Wtf? Change you goddamn link >:! (CSS)


ABII


AcmlmBoard vl.ol (11-01-05)
© 2000-2005 Acmlm, Emuz, et al



Page rendered in 0.003 seconds.