glorify
05-28-2006, 02:44 PM
Just a very simple way to change the opacity of your pop ups. Really only a css change.
In your 'Yellow Box' CSS add before the first line:
width=100%;
then find on the next line:
background: #FFFFCC;
Add under:
opacity: .9;
filter: alpha(opacity=90);
In your 'Grey Title' CSS add before the first line:
width=100%;
Again, under the background line add:
opacity: .9;
filter: alpha(opacity=90);
Obviously you can change the values of the code for less and more opacity, but 90 is about right.
This works for BOTH Firefox and IE
In your 'Yellow Box' CSS add before the first line:
width=100%;
then find on the next line:
background: #FFFFCC;
Add under:
opacity: .9;
filter: alpha(opacity=90);
In your 'Grey Title' CSS add before the first line:
width=100%;
Again, under the background line add:
opacity: .9;
filter: alpha(opacity=90);
Obviously you can change the values of the code for less and more opacity, but 90 is about right.
This works for BOTH Firefox and IE