Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Anchor (A) opacity in IE Re: [Solved] Anchor (A) opacity in IE

#66513
Rob MacKay
Participant

try it as

<A HREF="index.html" STYLE="font-size: 36px; background-color: #FFFFFF; opacity: 0.5; filter: alpha(opacity=50); zoom:1;">this is a transparent link</A>

adding the zoom:1; is an opacity hack for IE – you might also want to try adding "position:relative;" if that don’t work.