• Hi Guest - Come check out all of the new CP Merch Shop! Now you can support CigarPass buy purchasing hats, apparel, and more...
    Click here to visit! here...

Does anyone here know dreamweaver?

I know Dreamweaver:

"I've just closed my eyes again
Climbed aboard the dream weaver train
Driver take away my worries of today
And leave tomorrow behind

(chorus
Ooh dream weaver
I believe you can get me through the night
Ooh dream weaver
I believe we can reach the morning light
Fly me high through the starry skies
Maybe to an astral plane
Cross the highways of fantasy
Help me to forget today's pain

(chorus again

Though the dawn may be coming soon
There still may be some time
Fly me away to the bright side of the moon
And meet me on the other side"
 
I have a site designed for a client, basically the entire site is composed of an image. I need the client to be able to go in and edit/add text to his site. But I can't figure out how to be able to add text over an inserted image, without using layers.
 
do you know how i do that? I have a table nested in the middle of another table. So I would want the background in the nested table.

Everytime I add a background it tiles it on the entire screen.

http://homepage.mac.com/marc.hortsch/rocks...eedz/index.html

Check out the order page and the retailers page. Currently the text is in a layer. Which is out of place becuase my site is centered. The layer won't center with the rest of the site.
 
I haven't used it since Dreamweaver 3.0 And I still get nightmares about it...

I found your problem though...



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
 if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
   document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
 else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
</head>

<body>

<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
 <!--DWLayoutTable-->
 <tr>
   <td height="59" colspan="3" valign="top"><img src="images/index_01.jpg" width="800" height="59"></td>
 </tr>
 <tr>
   <td width="66" rowspan="2" valign="top"><img src="images/index_02.jpg" width="66" height="541"></td>
   <td width="666" height="449" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
       <!--DWLayoutTable-->
       <tr>
         <td width="666" height="449" valign="top"><img src="images/ordering_03.jpg" width="666" height="449">
           <div id="Layer1" style="position:absolute; width:664px; height:115px; z-index:1; left: 146px; top: 307px;">
             <div align="center">
               <p>&nbsp;</p>
               <p>*Internet Special*<br>
                 - Assortment Case 24 – 4 oz bags (8 of each flavor) $40.00
                 Free Shipping!</p>
             </div>
           </div></td>
         </tr>
     </table></td>
   <td width="72" rowspan="2" valign="top"><img src="images/index_04.jpg" width="68" height="541"></td>
 </tr>
 <tr>
   <td height="92" valign="top"><img src="images/index_05.jpg" width="666" height="92" border="0" usemap="#Map"></td>
 </tr>
</table>
<map name="Map">
 <area shape="rect" coords="52,6,135,31" href="index.html">
 <area shape="rect" coords="156,7,223,27" href="products.html">
 <area shape="rect" coords="245,7,294,27" href="ordering.html">
 <area shape="rect" coords="316,6,405,28" href="contact.html">
 <area shape="rect" coords="429,7,529,28" href="history.html">
 <area shape="rect" coords="548,6,616,26" href="retailers.html">



Your webpage is posessed :p
 
Try something like this for your table
<TABLE cellSpacing="0" cellPadding="0" width="100%" border="0" background="test_files/ordering_03.jpg">

Feel free to PM me if that doesn't work.

edit to add you may want to make sure this works for your supported browsers
 
I was called away from my desk for several hours, are you still working on this?

If so I have a question. Are you only looking to center the text "*Internet Special*" on the full table? If so you need to span the the cols on the <TD> that contains the div.

Haven't really look at it though, can look more later if you still have a need.?.
 
on the line that reads

<td width="666" height="449" valign="top"><img src="images/ordering_03.jpg" width="666" height="449">
<div id="Layer1" style="position:absolute; width:664px; height:115px; z-index:1; left: 146px; top: 307px;">
<div align="center">
<p>&nbsp;</p>
<p>*Internet Special*<br>
- Assortment Case 24 – 4 oz bags (8 of each flavor) $40.00
Free Shipping!</p>
</div>
</div></td>



The opening <TD> should read:

<td width="666" height="449" valign="top" colspan="3">

this will allow for the Div to center on the table..
 
bfreebern said:
I know Dreamweaver:

"I've just closed my eyes again
Climbed aboard the dream weaver train
Driver take away my worries of today
And leave tomorrow behind

(chorus
Ooh dream weaver
I believe you can get me through the night
Ooh dream weaver
I believe we can reach the morning light
Fly me high through the starry skies
Maybe to an astral plane
Cross the highways of fantasy
Help me to forget today's pain

(chorus again

Though the dawn may be coming soon
There still may be some time
Fly me away to the bright side of the moon
And meet me on the other side"
[snapback]284369[/snapback]​


Great Gary Wright song.
 
Top