Does anyone here know the code/tag/html/whatever-you-call-it to set transparency on a web site (if there is any...)? Please let me know, thnx.
You'd have to edit the image in Photoshop or an image editting program like that to make it transparent.
if youre talking about transparency on tables, then you have to use css table, tr, td, .shadowed {background: transparent;} if you want it semi-transparent, its.. table, tr, td, .shadowed {filter: alpha(opacity=90);filterrogidXImageTransform.Microsoft.Alpha(opacity=90); -moz-opacity:0.9;} you can change the numbers (the lower the number, the more transparent it is), but it does make text semi-transparent too whereas the first one does not.