Picture over watermark

Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default Picture over watermark

    I have a big watermark on a page. The page is constructed with tables. I want to put a photo over the watermark. The photo is shaped as an elipse. When I insert my photo the edges of the elipse show as a white rectangle even though the photo is on a transparent backgound. Is there a way to make my photo come up on a transparent bkgd in DW.
    Thank you
    Sam



    samsgolf webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Add PDF Watermark by PDDocAddWatermarkFromText
      Hi, 1) does anyone know how to add a PDF watermark using PDDocAddWatermarkFromText or PDDocAddWatermarkFromPDPage? 2) and how to remove the...
    2. Watermark
      How to remove watermark form an image,downloaded from net.
    3. Add a watermark, the hard way
      Hi. I've been drooling over the Acrobat 7.0 SDK documentation. It talks about an addWatermarkFromFile() function in JavaScript. You lucky, lucky,...
    4. ColdFusion Watermark
      Hi, I have a website hosted at an ISP. When using my search engine friendly pages such as: http://www.mydomain.com/blah.cfm/f/1/g/1/ I...
    5. Watermark???
      Hello, How does one create an image thats nearly white/gray, as a watermark on an image in PS? I have an image for a community website. I...
  3. #2

    Default Re: Picture over watermark

    Sam - Is the photo a JPEG? Because JPEGs don't support transparency. If you
    want parts of an image to be transparent, you need to turn it into a GIF.
    Problem is, photos don't do well as GIFs.

    I don't know of any good way to put an odd-shaped JPEG photo on the page
    over a watermark (which I assume is a background graphic). I'd either remove
    the background graphic, or make the photo rectangular..

    --
    P@tty Ayers
    [url]http://www.WebDevBiz.com[/url]
    Web Design Contract, Estimate Worksheet
    --



    "samsgolf" <webforumsuser@macromedia.com> wrote in message
    news:berqeu$eos$1@forums.macromedia.com...
    > I have a big watermark on a page. The page is constructed with tables. I
    want to put a photo over the watermark. The photo is shaped as an elipse.
    When I insert my photo the edges of the elipse show as a white rectangle
    even though the photo is on a transparent backgound. Is there a way to make
    my photo come up on a transparent bkgd in DW.
    > Thank you
    > Sam
    >
    >

    P@tty *TWB* Guest

  4. #3

    Default Re: Picture over watermark

    sams:

    Is the photo a JPG? There is no transparency in JPGs.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver MX
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]news://forums.macromedia.com/macromedia.dreamweaver[/url] - THE BEST WAY TO GET
    ANSWERS
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.DreamweaverFAQ.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "samsgolf" <webforumsuser@macromedia.com> wrote in message
    news:berqeu$eos$1@forums.macromedia.com...
    > I have a big watermark on a page. The page is constructed with tables. I
    want to put a photo over the watermark. The photo is shaped as an elipse.
    When I insert my photo the edges of the elipse show as a white rectangle
    even though the photo is on a transparent backgound. Is there a way to make
    my photo come up on a transparent bkgd in DW.
    > Thank you
    > Sam
    >
    >

    Murray *TMM* Guest

  5. #4

    Default Re: Picture over watermark

    "samsgolf" [email]webforumsuser@macromedia.com[/email] wrote:
    > I have a big watermark on a page. The page is constructed with tables. I want to put a photo over the watermark. The photo is shaped as an elipse. When I insert my photo the edges of the elipse show as a white rectangle even though the photo is on a transparent backgound. Is there a way to make my photo come up on a transparent bkgd in DW.
    > Thank you
    > Sam
    Depends on the file format. A .gif with transparent reas will show fine,
    but I think the file size will be huge if it's a regular photo, so I
    doubt that that's what you have.
    Instead, it might be a .png. In that case, it's (still) very poorly
    supported by browsers and IMHO, you sholdn't use it.
    I don't want to sound negative, but you might want to reconsider the
    idea about transparency and make the photo a regular jpg.

    --
    Dan Vendel - *GOF*
    [url]http://www.vendel.info[/url]
    Contact me directly by clicking here:
    [url]http://contact.vendel.info[/url]
    Formmail tutorial:
    [url]http://www.vendel.info/tut/formmail.html[/url]
    Nested table demonstration:
    [url]http://www.vendel.info/tabletut/[/url]

    Dan Vendel *GOF* Guest

  6. #5

    Default Re: Picture over watermark

    Sam:

    You really only need one of these -

    <td valign="top" height="169" align="center">
    <script language="JavaScript1.2">fwLoadMenus();</script>
    <script language="JavaScript1.2">fwLoadMenus();</script>

    And since the DW/FW menus are layer based, by calling the building of them
    in a table cell, you have in effect placed a layer into a table. That's
    well bad mojo.

    Move one of these calls (delete the other one) from where it is to here -

    <body ...>
    <script language="Javascirpt1.2">fwLoadMenus();</script>

    and see what happens.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver MX
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]news://forums.macromedia.com/macromedia.dreamweaver[/url] - THE BEST WAY TO GET
    ANSWERS
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.DreamweaverFAQ.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "samsgolf" <webforumsuser@macromedia.com> wrote in message
    news:besjpc$dvf$1@forums.macromedia.com...
    > Thank you, I converted to GIF and it works.
    > My next problem is my pull down menu. I inserted a Fireworks HTML and
    the The menu items are all over the place. What did I do wrong?
    > I really appreciate your help.
    > Sam
    > <html>
    > <head>
    > <title>about us</title>
    > <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    > <script language="JavaScript1.2" src="/fw_menu.js"></script>
    > <script language="JavaScript">
    > <!--
    > function MM_findObj(n, d) { //v4.01
    > var p,i,x; if(!d) d=document;
    if((p=n.indexOf("?"))>0&&parent.frames.length) {
    > d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
    > if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++)
    x=d.forms[i][n];
    > for(i=0;!x&&d.layers&&i<d.layers.length;i++)
    x=MM_findObj(n,d.layers[i].document);
    > if(!x && d.getElementById) x=d.getElementById(n); return x;
    > }
    > function MM_swapImage() { //v3.0
    > var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array;
    for(i=0;i<(a.length-2);i+=3)
    > if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc)
    x.oSrc=x.src; x.src=a[i+2];}
    > }
    > function MM_swapImgRestore() { //v3.0
    > var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++)
    x.src=x.oSrc;
    > }
    >
    > function MM_preloadImages() { //v3.0
    > var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    > var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0;
    i<a.length; i++)
    > if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    > }
    >
    > function fwLoadMenus() {
    > if (window.fw_menu_0) return;
    > window.fw_menu_0 = new Menu("root",115,16,"Verdana, Arial, Helvetica,
    sans-serif",9,"#33ffff","#ffffff","#ff0000","#0033cc");
    > fw_menu_0.addMenuItem("ABOUT US","location='aboutus.html'");
    > fw_menu_0.addMenuItem("EVENTS","location='events.h tml'");
    > fw_menu_0.addMenuItem("PRESS RELEASES","location='pressrelease.html'");
    > fw_menu_0.hideOnMouseOut=true;
    > window.fw_menu_1 = new Menu("root",69,16,"Verdana, Arial, Helvetica,
    sans-serif",9,"#33ffff","#ffffff","#ff0000","#0033cc");
    > fw_menu_1.addMenuItem("CluNet","location='clunet.h tml'");
    > fw_menu_1.addMenuItem("DataNet","location='datanet .html'");
    > fw_menu_1.addMenuItem("Universal","location='unive rsal.html'");
    > fw_menu_1.hideOnMouseOut=true;
    > window.fw_menu_2 = new Menu("root",144,16,"Verdana, Arial, Helvetica,
    sans-serif",9,"#33ffff","#ffffff","#ff0000","#0033cc");
    > fw_menu_2.addMenuItem("PROFESSIONAL STAFF","location='staff.html'");
    > fw_menu_2.addMenuItem("TESTIMONIALS","location='te stimonials.html'");
    > fw_menu_2.hideOnMouseOut=true;
    >
    > fw_menu_2.writeMenus();
    > } // fwLoadMenus()
    >
    > //-->
    > </script>
    > <script language="JavaScript1.2" src="fw_menu.js"></script>
    > </head>
    >
    > <body bgcolor="#FFFFFF" text="#000000" background="/Watermark.gif"
    onLoad="MM_preloadImages('images/buttons_r1_c1_f2.gif','images/buttons_r1_c3
    _f2.gif','images/buttons_r1_c5_f2.gif','images/buttons_r1_c7_f2.gif','images
    /buttons_r2_c9_f2.gif')">
    > <table width="73%" border="0" cellspacing="0" cellpadding="0" height="600"
    align="center">
    > <tr>
    > <td valign="top" height="169" align="center">
    > <script language="JavaScript1.2">fwLoadMenus();</script>
    > <script language="JavaScript1.2">fwLoadMenus();</script>
    > <table width="100%" border="0" cellspacing="0" cellpadding="0"
    height="158">
    > <tr>
    > <td height="103" align="center" valign="top"><img src="top.gif"
    width="569" height="114"></td>
    > </tr>
    > <tr>
    > <td align="center" valign="top" height="31">
    > <script language="JavaScript1.2">fwLoadMenus();</script>
    > <script language="JavaScript1.2">fwLoadMenus();</script>
    > <table border="0" cellpadding="0" cellspacing="0" width="495">
    > <!-- fwtable fwsrc="buttons.png" fwbase="buttons.gif"
    fwstyle="Dreamweaver" fwdocid = "742308039" fwnested="0" -->
    > <tr>
    > <td><img src="images/spacer.gif" width="89" height="1"
    border="0" name="undefined_2"></td>
    > <td><img src="images/spacer.gif" width="13" height="1"
    border="0" name="undefined_2"></td>
    > <td><img src="images/spacer.gif" width="87" height="1"
    border="0" name="undefined_2"></td>
    > <td><img src="images/spacer.gif" width="15" height="1"
    border="0" name="undefined_2"></td>
    > <td><img src="images/spacer.gif" width="86" height="1"
    border="0" name="undefined_2"></td>
    > <td><img src="images/spacer.gif" width="17" height="1"
    border="0" name="undefined_2"></td>
    > <td><img src="images/spacer.gif" width="90" height="1"
    border="0" name="undefined_2"></td>
    > <td><img src="images/spacer.gif" width="11" height="1"
    border="0" name="undefined_2"></td>
    > <td><img src="images/spacer.gif" width="87" height="1"
    border="0" name="undefined_2"></td>
    > <td><img src="images/spacer.gif" width="1" height="1"
    border="0" name="undefined_2"></td>
    > </tr>
    > <tr>
    > <td rowspan="2"><a href="#"
    onMouseOut="MM_swapImgRestore();FW_startTimeout()"
    onMouseOver="window.FW_showMenu(window.fw_menu_0,1 ,31);MM_swapImage('buttons
    _r1_c1','','images/buttons_r1_c1_f2.gif',1);" ><img name="buttons_r1_c1"
    src="images/buttons_r1_c1.gif" width="89" height="30" border="0"></a></td>
    > <td rowspan="3"><img name="buttons_r1_c2"
    src="images/buttons_r1_c2.gif" width="13" height="31" border="0"></td>
    > <td rowspan="2"><a href="services.htm"
    onMouseOut="MM_swapImgRestore();FW_startTimeout()"
    onMouseOver="window.FW_showMenu(window.fw_menu_1,1 03,30);MM_swapImage('butto
    ns_r1_c3','','images/buttons_r1_c3_f2.gif',1);" ><img name="buttons_r1_c3"
    src="images/buttons_r1_c3.gif" width="87" height="30" border="0"></a></td>
    > <td rowspan="3"><img name="buttons_r1_c4"
    src="images/buttons_r1_c4.gif" width="15" height="31" border="0"></td>
    > <td rowspan="2"><a href="support.htm"
    onMouseOut="MM_swapImgRestore();FW_startTimeout()"
    onMouseOver="window.FW_showMenu(window.fw_menu_2,2 04,31);MM_swapImage('butto
    ns_r1_c5','','images/buttons_r1_c5_f2.gif',1);" ><img name="buttons_r1_c5"
    src="images/buttons_r1_c5.gif" width="86" height="30" border="0"></a></td>
    > <td rowspan="3"><img name="buttons_r1_c6"
    src="images/buttons_r1_c6.gif" width="17" height="31" border="0"></td>
    > <td rowspan="3"><a href="contactus.htm"
    onMouseOut="MM_swapImgRestore()"
    onMouseOver="MM_swapImage('buttons_r1_c7','','imag es/buttons_r1_c7_f2.gif',1
    );" ><img name="buttons_r1_c7" src="images/buttons_r1_c7.gif" width="90"
    height="31" border="0"></a></td>
    > <td colspan="2"><img name="buttons_r1_c8"
    src="images/buttons_r1_c8.gif" width="98" height="3" border="0"></td>
    > <td><img src="images/spacer.gif" width="1" height="3"
    border="0" name="undefined_2"></td>
    > </tr>
    > <tr>
    > <td rowspan="2"><img name="buttons_r2_c8"
    src="images/buttons_r2_c8.gif" width="11" height="28" border="0"></td>
    > <td rowspan="2"><a href="home.htm"
    onMouseOut="MM_swapImgRestore()"
    onMouseOver="MM_swapImage('buttons_r2_c9','','imag es/buttons_r2_c9_f2.gif',1
    );" ><img name="buttons_r2_c9" src="images/buttons_r2_c9.gif" width="87"
    height="28" border="0"></a></td>
    > <td><img src="images/spacer.gif" width="1" height="27"
    border="0" name="undefined_2"></td>
    > </tr>
    > <tr>
    > <td><img name="buttons_r3_c1"
    src="images/buttons_r3_c1.gif" width="89" height="1" border="0"></td>
    > <td><img name="buttons_r3_c3"
    src="images/buttons_r3_c3.gif" width="87" height="1" border="0"></td>
    > <td><img name="buttons_r3_c5"
    src="images/buttons_r3_c5.gif" width="86" height="1" border="0"></td>
    > <td><img src="images/spacer.gif" width="1" height="1"
    border="0" name="undefined_2"></td>
    > </tr>
    > </table>
    > </td>
    > </tr>
    > </table>
    > </td>
    > </tr>
    > <tr>
    > <td height="327" valign="top">
    > <table width="100%" border="0" cellspacing="0" cellpadding="0"
    height="328">
    > <tr>
    > <td valign="top" height="286"><font face="Arial, Helvetica,
    sans-serif" color="#000000"><b>ConclusioNet
    > Technologies, Inc. is an IT services company</b>. We provide
    three
    > services focusing on system administration. These services are
    CluNet,
    > DataNet and Universal. By focusing on these core components
    ConclusioNet
    > provides the infrastructure necessary to maintain a fully
    functioning
    > network of systems and databases. Our solution not only
    maintains
    > the integrity of the systems and databases but gives the
    client extra
    > benefits as well, benefits that are described under the
    specific service.</font></td>
    > <td valign="top" height="286"><img src="photo%20mntg.gif"
    width="410" height="272"></td>
    > </tr>
    > </table>
    > </td>
    > </tr>
    > </table>
    > </body>
    > </html>
    >
    >
    >

    Murray *TMM* 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