MyBB Community Forums

Full Version: I need to make the forum transparent
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need to make my forum transparent so I can see the background image but the other threads I've found use a codeĀ 

background: #000;
opacity: .70;
-khtml-opacity: .70;
-moz-opacity: .70;

Which makes the entire forum transparent which I do not want I just want the background of the forum to be transparent so the image behind can be seen.

I also need to know how to change the text color for each section so it'll be visible with the background image.

http://xethon.net/beastleague/forums/

I currently have it set to the code above so you can see what it's doing.
Try This Where You Want Background Transparent..

background: rgb(0, 0, 0);
(2015-10-20, 04:01 AM)Khankharor Wrote: [ -> ]Try This Where You Want Background Transparent..

background: rgb(0, 0, 0);

Didn't work
Try This Where You Want Background Transparent..

Code:
background: transparent;

Note: Clear Browser Cookie And Then Check..
(2015-10-21, 04:25 PM)Khankharor Wrote: [ -> ]Try This Where You Want Background Transparent..

Code:
background: transparent;

Note: Clear Browser Cookie And Then Check..

Doesn't work, I might just use a different theme.
img {
opacity: 0.4;
filter: alpha(opacity=40); /* For IE8 and earlier */
}