Transparent vBulletin Forums

yes its a style!! there are some similar styles with vbulletin too I guess I came across a couple of them recently forgot the name though..
 
Currently working on a transparent style but not as clear as the IPB link you have provided, but then I have layered 3 trans' pngs.
 
or use png transparent, or use alpha opacity filter in css, but with vb, alpha opacity is difficult

For exemple :

Code:
alt1Active, alt1 {
    filter:alpha(opacity=50);  /* opacity for IE*/
   -moz-opacity:0.5;  /* Opacity for FireFox & Konqueror */
   -khtml-opacity: 0.5;  /* Opacity for Safari */
   opacity: 0.5;  /* New Rules for future CSS3 */
}
 
Just apply similar transparency CSS to tborder, alt1, alt2, tcat, thead, tfoot, page, etc, etc...

With a decent fixed background, it's vital that you get the background right, otherwise bad style.
 
Back
Top