Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie Easy Question

Status
Not open for further replies.

flavor31

Technical User
Joined
Dec 27, 2001
Messages
2
Location
US
I am hosting my site from a 2000 server machine. If you goto my site youll notice you can scroll down and reread the same messege and see the picture again. What have I done wrong in Dreamweaver? All I did was set all margins to 0 and tryed the messege and attached the jpg.
Please help.
 
Your HTML code is listed twice.
In Dreamweaver, click on View>Code.
This will bring up your HTML Code for you to edit. You will notice that this file has identical code repeated. Delete everything under the first </html> tag. Your page should then display properly. Hope this helps.
Tim
 
Looks like you just created a duplicate of what was already there. If you look at your HTML code, just delete the last have of your page.

Delete:
<head>
<title>Pimp101</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>

<body bgcolor=&quot;#000000&quot; text=&quot;#FFFFFF&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot;>
<div align=&quot;center&quot;>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img src=&quot;sg_11.jpg&quot; width=&quot;238&quot; height=&quot;175&quot;></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><font size=&quot;6&quot;>Pimp101 coming soon</font></p>
</div>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top