Need Help with PNG/CSS

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

  1. #1

    Default Need Help with PNG/CSS

    This question is not specific to HTML but I hope someone can give some insight.
    I am creating a watermark on the fly that is loaded as a PNG 32 over an image.
    The PNG is contained in a DIV. The image itself is rendered like so:

    <!--Image Tag-->
    <img id="photo" src="../images/transparent.gif"
    alt="<cfoutput>#getImageAttributes.npsImageAlt#</cfoutput>"
    width="<cfoutput>#getImageAttributes.imageLarge_w# </cfoutput>"
    height="<cfoutput>#getImageAttributes.imageLarge_h #</cfoutput>">

    <!--CSS-->
    #photo {
    z-index: 1;
    display: block;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle
    width:<cfoutput>#getImageAttributes.imageLarge_w#</cfoutput>px;
    height:<cfoutput>#getImageAttributes.imageLarge_h# </cfoutput>px;
    background: url(<cfoutput>#getImageAttributes.npsimageLarge#</cfoutput>)
    no-repeat;
    }

    Everything is working great except for one thing. In the areas that are
    transparent on the PNG, you can right-click and get the page properties
    including the path to the image itself. Areas that are not transparent simply
    show the image as transparent.gif without the ability to view the source which
    is what I want.

    See the example at
    [url]http://www.internationalpoultryexposition.com/exhSearch/pshowcase.cfm[/url]. Click on
    the sprayer image.

    Thanks for any insight.

    brettcristofer Guest

  2. #2

    Default Re: Need Help with PNG/CSS

    Forget it. Until Explorer fully supports transparent PNG's I'm not going to use the alphaimageloader hack. I'll just add the watermark to the original image and leave it at that.
    brettcristofer 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