MyBB Community Forums

Full Version: Change the color of the category cells and also make it transparent
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi i'm trying to make the cells of a category a gray and also make it transparent as i'm adding a custom background behind it. Here's what they look like now, any ideas?
You could go to your forumbit_depth2_template and add borders to it.
Dunno if I understood that correct.
i'm trying to figure the same thing..

can anyone help?
i'm trying to make the category cells transparent..

so you can see the background ty :/
In your template config., search the "Inner Table Border Width" option, and set this to 0. That remove the space in each cell.

For the transparent gray background, you need to edit the classes ".trow1" and ".trow2", also some more for moderation options...

In each one, delete the current background property and put something like this:

Quote:background: rgba(150, 150, 150, 0.5);

First 150 (Red), Second 150 (Green), Third 150 (Blue), Fourth 0.5 (Alpha - Transparency)

Adjust this to your needs.