1

Topic: I want to make my Forum Transparent and Image on background

Can someone please help with the code and also where I will put the code in my forum script.

Re: I want to make my Forum Transparent and Image on background

in css

1. set background: url("URL TO IMAGE") repeat scroll center top #3b3b3b; for body

2. add opacity: 0.9; for .brd .gen-content, .brd .main-content

ForkBB
I speak only Russian  :P

3

Re: I want to make my Forum Transparent and Image on background

Visman wrote:

in css

1. set background: url("URL TO IMAGE") repeat scroll center top #3b3b3b; for body

2. add opacity: 0.9; for .brd .gen-content, .brd .main-content

I appreciate your effort. But this code is not simplified. Please just paste code and I will copy paste into CSS.

I'm using Oxygen.

Re: I want to make my Forum Transparent and Image on background

For image transperant ...try this

img {
    opacity: 0.3;
    filter: alpha(opacity=30); /* For IE 8 & 9 (more valid) */
}


Full Source......CSS Tranparent Image

Warner