Logged Out
Create an Account
Login:
Password:

Forgot your password?
Can you change link color in "popularthreads" div?

Can you change link color in "popularthreads" div?
[Back to Index]  [Bottom of Thread]
Thread Tags
Primary: [Advanced Layout]
Secondary: None
I've been trying to change the link color in the popular threads section of our website, since I have a background image up now that makes them hard to read. Is there a way to change this just in this section? I tried a few different things, but I couldn't get it to work.
You could do something like this:

.topbar a:link,
.topbar a:hover,
.topbar a:active,
.topbar a:visited {
	color:#f00 !important;
}


which should set those links to red (probably not the color you want to use, but you get the idea). Just make sure you throw in the !important to enforce it over anything else.


Alternatively, you could try adding the following rule to your CSS:

.topbar {
	background:rgba(0,0,0,0.5);
}


This will give it a semi-transparent black background.



--
It's all in the reflexes.
Thanks Chops!

That worked great.


[Back to Index]  [Top of Thread]