MyBB Community Forums

Full Version: CSS question - I need help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Dear AJS & Mushu! Thank you very much for your help! It worked out perfectly!

Now, I have one more question regarding the background color. Currently it is white #ffffff.
I would like to change that to a light grey.
How do I do that?
I mean this background:
[Image: ivgeo%20example1.jpg]
  • ACP >> Templates & Style >> Themes >> global.css
  • find trow2 class and modify the background colour with one of your choice.
Note that in this way you are going to change also the background colour of the forums in the index page, so if you don't want to have the same background color:
  • in the global.css copy the trow2 class and rename it in "what you want" (for example "trow3");
  • then go in ACP >> Templates & Style >> Templates >> Post Bit >> postbit
find:
<td class="trow2 post_content {$unapproved_shade}">

replace with:
<td class="trow3 post_content {$unapproved_shade}">

I'm not sure that the code I've posted is also in yours, but anyway you have to find "trow2" and replace it with your class name.
Thanks fabo92, it worked Smile.
Pages: 1 2