Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Images in IE

    Hi,
    another one
    So.......I have *.png images in layers. They appear fine in opera but not in
    internet explorer. The images have a transparent background but in IE, the
    background appears kinda white (and the problem is that my background is dark
    colored). I am having many problems with internet explorer. I mean many things
    are shown different in internet explorer from opera. But I would like to solve
    this problem first.
    Hope someone can help.

    redblue4356 Guest

  2. Similar Questions and Discussions

    1. Extension: Dynamic Images/Advance Random Images
      Hi there, I have downloaded 2 extensions: Dynamic Images or/and Advanced Random Images (kaosweaver.com); it seems both are the same and I have...
    2. Swapping Cell Images for Background Images
      Is there any plugin or extention for DW(studio8) out there that will quickly and with one click, let me remove an image inside a cell and...
    3. Creating Quick Vector Images from Raster images
      Hi ! I am aware of the conventional methods to create vector images from raster images, i.e. drawing the lines individually, then adding...
    4. scrolling images/slider NOT motion images PLEASE REPLY someone
      i want scrolling images...... like scroll bar with text but scroll bar with images...i dont it as in motion pictures....IF no one knows wot i mean...
    5. Best book for creating new images and how to print multiple images
      Hi Cliff, I'm afraid I can't help with part 1 of your question, being relatively new at PE2 myself, but there a those that frequent the group that...
  3. #2

    Default Re: Images in IE

    IE 6 doesn't support full alpha channel opacity in PNGs (although apparently
    the next version of IE will). What you can do instead is use a proprietary
    IE filter to display the image.

    So you have,

    <img src='spacer.gif'
    style='filter:progid:DXImageTransform.Microsoft.Al phaImageLoader(src="your_i
    mage.png")' />

    You can add another CSS class, etc to the tag, with the width and height of
    the image. The problem now is that this only works when you have a blank
    (transparent) GIF in place of the image source, which means other browsers
    won't display anything at all, just a blank space (albeit of te right shape
    and size). The answer is to find a browser detection script somewhere and
    let that choose which method to use to display your PNGs.

    It's a pain, but usually well worth it if you're making full use of PNG's
    benefits over GIFs and JPEGs.


    redblue4356 wrote:
    > Hi,
    > another one
    > So.......I have *.png images in layers. They appear fine in opera
    > but not in internet explorer. The images have a transparent
    > background but in IE, the background appears kinda white (and the
    > problem is that my background is dark colored). I am having many
    > problems with internet explorer. I mean many things are shown
    > different in internet explorer from opera. But I would like to solve
    > this problem first. Hope someone can help.

    rob::db Guest

  4. #3

    Default Re: Images in IE

    are those emoticons a part of the code and parsed by mistake or did u intentionally put them.
    redblue4356 Guest

  5. #4

    Default Re: Images in IE

    They must have been parsed by mistake. Code doesn't generally have emoticons
    in it! ;)

    redblue4356 wrote:
    > are those emoticons a part of the code and parsed by mistake or did u
    > intentionally put them.

    rob::db Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139