make white part on layout transparent |
make white part on layout transparent |
*2tru* |
![]()
Post
#1
|
Guest ![]() |
/edit
i was wondering if i can make the WHITE part of my layout transparent...i want to be able to chose how transparent it can be too. in this picture you can see what white part i'm talking about and there's the layout code... |
|
|
![]() |
*Azarel* |
![]()
Post
#2
|
Guest ![]() |
table, tr, td {background-color:; border:none; border-width:0;} And change background-color:; to background-color:transparent; OOPS, I didn't notice that you wanted it to be adjustably transparent. Ignore what I had said before and add this to your coding: <style type=text/css> table { filter:alpha(opacity=80); -moz-opacity:0.8; opacity:0.8; -khtml-opacity:0.8;} </style> Change the bolded numbers as you'd like, but make sure that the last three are the same and 1/100th of the first number. Lowering the numbers makes it more transparent. |
|
|
![]() ![]() |