View Full Version : Disappearing Text


kiwi_crumbles
12-30-2005, 11:56 PM
Hi there! I have been working on my site for awhile now. Everything was just peachy until I took about a week long break from the site. When I came back to it, all my text was gone! It was there before and I didn't touch the code at all! Can anyone help me out?

My Site (http://www.freewebs.com/kiwicrumbles/blendhome.htm)

My Code:

<img style="position:absolute; top:0px; left:0px;" src="http://img.photobucket.com/albums/v515/melissa80015/kiwiblendsvi.gif" alt="KiwiCrumbles{Blends}">
<style type="text/css">
<!--
body
{ background: #d5b992;
background-image: url(http://img.photobucket.com/albums/v515/melissa80015/kiwiv1bg.gif);
background-repeat: repeat-y;
font-family: Abadi MT Condensed Light;
color: #d5b992; }
body

A:link { text-decoration: none; color:#d5b992; }
A:visited { text-decoration: none; color:#d5b992; }
A:active { text-decoration: none; color:#d5b992; }
A:hover { text-decoration: none; color:#d5b992;}

</style>



<div id=content style="position:absolute; top:500px; left:280px;width:470px;">

<center><b>December 10</b><p>
Under Construction
</center></div>

<div id=links style="position:absolute; top:480px; left:40px; width:200px;"
<center><center><b>Site Stats</b></center><br>
<b>Opened:</b><br>
<b>Host:</b> Freewebs.com<br>
<b>Layout:</b> Me<br>
<b>Challenges END:</b><p>

<HR size=5 width="20%" color="#d5b992">
<center>
<a href="http://www.freewebs.com/kiwicrumbles/blendrules.htm"><b>Rules</a><br>
<a href="http://www.freewebs.com/kiwicrumbles/blendchallenges.htm">Challenges</a><br>
<a href="http://www.freewebs.com/kiwicrumbles/blendsubmit.htm">Submit</a><br>
<a href="http://www.freewebs.com/kiwicrumbles/blendentries.htm">Entries</a><br>
<p>
<a href="http://www.freewebs.com/kiwicrumbles/blendaffiliates.htm">Affiliates</a>
<p>
<p>
<p>
<p>
<p>
<p>
<p>
<p>
<p>
</div>

luvhartz
12-31-2005, 12:03 AM
this may not make any difference but your html should look like this:

<html>
<head>
<style type="text/css">
body
{ background: #d5b992;
background-image: url(http://img.photobucket.com/albums/v5...kiwiv1bg.gif);
background-repeat: repeat-y;
font-family: Abadi MT Condensed Light;
color: #d5b992; }

A:link { text-decoration: none; color:#d5b992; }
A:visited { text-decoration: none; color:#d5b992; }
A:active { text-decoration: none; color:#d5b992; }
A:hover { text-decoration: none; color:#d5b992;}

</style>
</head>
<body><img style="position:absolute; top:0px; left:0px;" src="http://img.photobucket.com/albums/v515/melissa80015/kiwiblendsvi.gif" alt="KiwiCrumbles{Blends}">

<div id=content style="position:absolute; top:500px; left:280px;width:470px;">

<center><b>December 10</b><p>
Under Construction
</center></div>

<div id=links style="position:absolute; top:480px; left:40px; width:200px;">
<center><b>Site Stats</b></center><br>
<b>Opened:</b><br>
<b>Host:</b> Freewebs.com<br>
<b>Layout:</b> Me<br>
<b>Challenges END:</b><p>

<HR size=5 width="20%" color="#d5b992">
<center>
<a href="http://www.freewebs.com/kiwicrumbles/blendrules.htm"><b>Rules</a><br>
<a href="http://www.freewebs.com/kiwicrumbles/blendchallenges.htm">Challenges</a><br>
<a href="http://www.freewebs.com/kiwicrumbles/blendsubmit.htm">Submit</a><br>
<a href="http://www.freewebs.com/kiwicrumbles/blendentries.htm">Entries</a><br>
<p>
<a href="http://www.freewebs.com/kiwicrumbles/blendaffiliates.htm">Affiliates</a>
<p>
<p>
<p>
<p>
<p>
<p>
<p>
<p>
<p>
</div>
</body>
</html>

kiwi_crumbles
12-31-2005, 12:49 AM
It worked! Thank you so much!

maztrin
12-31-2005, 12:55 AM
you should close your paragraph tags like this: <p> your text here </p>

luvhartz
12-31-2005, 09:25 AM
It worked! Thank you so much!
Your welcome :)