CSS issue with blog's new design...
I recently redesigned my site at tandswebdesign.com, and carried that design over into my blog at getasiteonline.com.
The only problem I was not able to figure out prior to launch is a problem with the subjects in comments. You can see what I'm talking about here:
http://www.getasiteonline.com/?q=node/168#comment-90
The comment subject is a link with a class of active in a div with a class of rightboxtop. I tried the following CSS, but the link is still not white:
div.rightboxtop a {
color: white;
text-decoration: none;
}
div.rightboxtop a.active {
color: white;
text-decoration: none;
}
Any ideas?
demonhale posted this at 16:11 — 22nd January 2007.
He has: 3,278 posts
Joined: May 2005
Add this to the CSS...
#main a.active{
color:white;
font-size: 14px;
}
Explanation
the "#main a" call on your css messes all links inside the main id...
timjpriebe posted this at 15:51 — 23rd January 2007.
He has: 2,667 posts
Joined: Dec 2004
Thanks, demonhale! I didn't realize that's how you had to override it.
You're the man!
demonhale posted this at 05:18 — 24th January 2007.
He has: 3,278 posts
Joined: May 2005
No prob, glad to help...
timjpriebe posted this at 15:42 — 24th January 2007.
He has: 2,667 posts
Joined: Dec 2004
BTW, slick new logo. I like it much better than your previous avatar.
demonhale posted this at 03:38 — 25th January 2007.
He has: 3,278 posts
Joined: May 2005
Thanks, decided to do that since customers wanted a more "serious" support perse... and easier for branding...
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.