Forum Moderators: not2easy
<div class="sig-stamp"><img src="url" border="0" height="197" width="300"></div>
.sig-stamp {
position: fixed;
float: right;
filter:Alpha(Opacity=20);
opacity: 0.20;
-khtml-opacity: 0.20;
-moz-opacity: 0.20;
bottom: 15px;
right: 6px;
}
if necessary :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--[if IE 6]><link href="themes/patch-ie6.css" media="screen" rel="stylesheet" title="classic" type="text/css" /><![endif]-->
<!--[if IE 7]><link href="themes/patch-ie7.css" media="screen" rel="stylesheet" title="classic" type="text/css" /><![endif]-->
<!--[if IE 8]><link href="themes/patch-ie8.css" media="screen" rel="stylesheet" title="classic" type="text/css" /><![endif]-->
Then inside each style sheet add the following for opacity...
.fade {filter:progid:DXImageTransform.Microsoft.Alpha(opacity=20);}
.opaque {filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);}
Keep in mind your title values for the link element have the be the same as the main style sheet or those style sheets will not be applied.
- John
the problem was that position: fixed; killed the opacity effect . . . and float: right; is supposed to allow the opacity effect. it does work utilizing inline coding . . . but does not seem to work when using internal css.
so, okay . . . thanks anyway.
e.g.
<img src="klematis.jpg" width="150" height="113" alt="klematis"
style="filter:alpha(opacity=40)" />
And you can keep the standards compliant browser opacity in the CSS file still without issue. It's a workaround I know, but I think it may be the only solution.