Quick CSS question

Status
Not open for further replies.

DublinDude

New Member
I am using the following bit of code to adjust the opacity of the background of a div

Code:
filter: alpha(opacity=70);

It works in IE but not in Firefox or Safari. Is there a way around this or is this exclusive to IE only?

Thanks, DD
 

Gala

New Member
Should be:

Code:
filter: alpha(opacity=70);
opacity: 0.7


FF will pick up on the opacity attribute.
 

DublinDude

New Member
Thanks guys! That did the trick!

My next problem is that the image on the bottom right of this page appears raised by a few pixels in FF.

|| - CV - ||

I have tried several things at I can't seem to get it to work! I think I had it working originally but I messed it up. It maybe something to do with the doctype code at the top I am not sure!

EDIT: I got it working now! :p. It was the doctype thingy! Woo hoo
 
Status
Not open for further replies.
Top