Is it transparency for an image or a certain element on the webpage that you want to adjust?
If it's for an element, the following CSS code should do it for you.
Code:
.transparent_class {
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
Hope that helps! 
Last edited by Resilient; 07-07-2010 at 08:53 PM..
Reason: Formatted code using correct tags
|