MyBB Community Forums

Full Version: Can't change a color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have checked my images and my .css code but still it gives me that annoying color.. I removed all 121212 colors from my css codes and I also checked all images and changed their colors as well..

The color that I'm trying to change is 121212.

And this is what it looks like:

[Image: LkBpbCg.png]
[Image: bY7MTe8.png]

So what's wrong?
have you hard refreshed your browser (CTRL + F5) after changing css ? can we have your forum url
You are using images in .trow1 and .trow2. Try adding a background color matching your .trow colors.

Example

Current

.trow1 {
background: url(images/trow.png);
color: #ffffff;
}

And if my trow colors are black then I'm going to add a black color to the background and use the background image at the same time.

Like this

.trow1 {
background: #000000 url(images/trow.png);
color: #ffffff;
}