Tech Support Forum banner
Status
Not open for further replies.

Help! I'm new and stuck! Dreamweaver 8

1K views 6 replies 2 participants last post by  sanford1951 
#1 ·
Hi. I have worked and worked and I can NOT figure out how to get this space between my frame and the outer frame. It was not there when I originally designed the page but I can't get rid of it now. I really am a novice and am just feeling my way around so any help would be appreciated!
Text Font
 
See less See more
1
#2 ·
Hello, sanford1951, and welcome to TSF!

I'm sorry to hear that you're having trouble with Dreamweaver, it is a powerful program for development.

Now, before I can give you a solution to the problem, I'm afraid I'm going to need a little more information. If you look in the top-left corner of the Dreamweaver program, on the second navbar, you'll notice the three options for "Code", "Split", and "Design". Please switch to the "Code" view and copy its contents here using the [code][/code] tag to wrap it.
 
#3 ·
OK! Here it is:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style12 {font-family: "Footlight MT Light";
	font-size: 66px;
	color: #006666;
}
.style13 {font-family: "Footlight MT Light";
	font-style: italic;
	font-size: 52px;
	color: #990000;
}
.style15 {font-size: 24px;
	font-family: "Courier New", Courier, monospace;
	color: #000033;
}
.style2 {font-size: 36px;
	font-family: Harrington, "Footlight MT Light";
	color: #FFFFFF;
	font-weight: bold;
}
.style3 {font-size: 58px;
	font-family: Harrington, "Footlight MT Light";
}
#Layer1 {
	position:absolute;
	left:1px;
	top:2px;
	width:100%;
	height:1689px;
	z-index:3;
	overflow: inherit;
	background-image: url(images/old_map_@2X.png);
	padding-right: 1px;
	border-right-width: 1px;
	margin-right: 22px;
}
-->
</style>
<script type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body>
<p> </p>
<table width="101%" height="997" border="5" align="center" cellpadding="7" cellspacing="7" bordercolor="#663300" bordercolorlight="#999900" bordercolordark="#336666" id="Layer1" name="Layer1">
  <!--DWLayoutTable-->
  <tr bordercolor="#339999">
    <td width="601" height="200" bordercolor="#006666" background="mobile site/website objects/old_map_@2X.png" headers="viewport tag"><div align="center" class="style2" onfocus="MM_openBrWindow('sanfordmobiledreamweaver.html','','scrollbars=yes,resizable=yes,width=600px,height=900px');MM_openBrWindow('','','')">
      <p class="style3"><img src="images/decoration.png" alt="deco2" width="549" height="93" /></p>
      <p class="style3"><a href="default.html" class="style12">SANFORD MUSEUM & PLANETARIUM</a></p>
      <p class="style13">Cherokee, Iowa </p>
      <p class="style13"><span class="style3"><img src="images/decoration.png" alt="deco" width="551" height="101" /></span></p>
    </div></td>
  </tr>
  <tr bordercolor="#339966">
    <td width="601" height="436" align="center" background="mobile site/website objects/old_map_@2X.png" onfocus="MM_openBrWindow('','mobile','width=600,height=900')"><div align="center">
      <p> </p>
      <p><img src="images/b&wmuseum copy.jpg" alt="museum" width="512" height="278" /></p>
    </div>
        <p><img src="images/wgbutton.png" alt="wg" width="236" height="79" /></p>
    <p class="style15">The West Gallery Constantly changes. It is in theis area that we build or host 5 major exhibits a year. </p></td>
  </tr>
  <tr bordercolor="#339966">
    <td nowrap="nowrap"><div align="center">
      <p><img src="images/upperlevelmap.png" alt="uplevel" width="568" height="626" /></p>
      <p><img src="images/new-museum-logo.jpg" alt="logo" width="204" height="109" /></p>
    </div></td>
  </tr>
</table>
<p> </p>
</body>
</html>
 
#4 ·
Alright, so the problem is with your table cellspacing. On line 55 of the "Code" view, you have the opening tag for the entire table. In it, you have the cellspacing attribute set to "7". To remove that space, you need to change it to "0".

This will also remove the spaces further down on the page. If you want to keep those, you'll have to close the table with 0 cellspacing and open a new one with a 7 cellspacing.

I hope this helps.
 
#6 ·
Make sure you let us know if you have anymore trouble. ^^
 
Status
Not open for further replies.
You have insufficient privileges to reply here.
Top