Transparency Internet Explorer 6

Forums Forums Menus Transparency Internet Explorer 6

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #351
    Anonymous
    Member

    Hello,
    I successfully applied Transparency by adding the lines

    #suckerfishnav {
    background-color: black;
    filter:alpha(opacity=60);  /* IE’s opacity*/  opacity: 0.6;
    z-index: 30;

    but still the IE opacity does not work right.
    what am I getting wrong?

    #3644

    IE has very poor transparency support. You could use PNG transparencies for IE7 and I believe there are Javascript solutions for IE6 transparencies.

    #3645
    Anonymous
    Member

    Got transparency work in MIE 6 with this CSS code:

    #suckerfishnav {
    filter:alpha(opacity=70); /* IE’s 5.5 and 7 opacity does not work in IE 6*/
    -moz-opacity:0.7; /* FF 2 and 3 opacity*/
    opacity:0.7;  /* opera and safari opacity */
    z-index: 45;
        background:#000000;
        font-size:13px;
        font-family:verdana,sans-serif;
        width:100%;
        }

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.