ID:37971
 
Keywords: css, membership
Why is my custom_content box not the right colour!?
#randomapps_content {
color: #54C454;
}

??
Nope, doesn't do it.

I've got a .custom_content style, but it doesn't seem to be applied for some reason.
#randomapps_content td {
color: #54C454;
}

???
In Member CSS, things can be defined (like text color) without you knowing, so, you don't start with a clean slate always. This has screwed with me often.
Worse comes to worse, add color: #54C454 to every div in that section you can think of and then, if/when it works, go back and remove them one at a time to find which div/element it was.
TheMonkeyDidIt wrote:
#randomapps_content td {
color: #54C454;
}

???
In Member CSS, things can be defined (like text color) without you knowing, so, you don't start with a clean slate always. This has screwed with me often.
Worse comes to worse, add color: #54C454 to every div in that section you can think of and then, if/when it works, go back and remove them one at a time to find which div/element it was.

Also: if you use firefox, get the WebDeveloper add-on. It helps immensely.
Woot fixed. Thanks for the help, I'll definately get that Firefox add-on.