Jump to content

Image transparency between layers - HELP!


robcrozier

Recommended Posts

Hi,

ok, Ive got two css layers set with z-index's'. I want to place a transparent image on the top layer so that some of the background image on the bottom layer can be seen through it. However, despite saving my images as transparent Gifs and them working when in the same layer, they loose their transparency when used on a higher layer.

Does anyone know what i can do to make my top layer images appear transparent?

Cheers
Link to comment
https://forums.phpfreaks.com/topic/30131-image-transparency-between-layers-help/
Share on other sites


Here are the CSS properties for opacity

General Property
[code]opacity:.25;[/code]
Internet Explorer
[code]filter:alpha(opacity=25);[/code]
Firefox
[code]-moz-opacity:.25;[/code]

your best best is to set it like this
[code]filter:alpha(opacity=25);-moz-opacity:.25;opacity:.25;[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.