Forum Moderators: not2easy
<style type="text/css">
<!--
body {
background-image: url(backgroundgradient.gif);
background-repeat: repeat;
}
.style1 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #CCCCCC;
font-size: small;
}
a:link {
color: #CCCCCC;
text-decoration: none;
}
a:visited {
color: #CCCCCC;
text-decoration: none;
}
a:hover {
color: #0000FF;
text-decoration: underline;
}
#content {
position: absolute;
left: 480px;
top: 240px;
width: 400px;
}
#headline {
position: absolute;
left: 535px;
top: 220px;
width: 200px;
}
#ad {
position: absolute;
left: 540px;
top: 570px;
width: 200px;
}
.style2 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #808080;
font-size: small;
}
.style4 {
font-size: large;
font-weight: bold;
color: #C4B6B7;
}
.style5 {color: #FFFFFF}
.style6 {
font-size: x-small;
color: #FFFFFF;
}
-->
</style>
"content", "ad", and "headline" is what is in question.
Thanks in advance!
<div id="headline">
<p class="style4">LETS FACE IT</p>
</div>
<div id="content">
<p><span class="style5">CONTENT TEXT IS WRITTEN HERE</span></p>
</div>
<div id="ad">
<p class="style6">Contact Us To See Your Ad Here.</p>
</div>
</BODY>
</HTML>
I obviously didnt post all the imageready/photoshop script and slices with this, but please let me know if that would help as well.
The DOCTYPE Declaration was not recognized or is missing."
Would this have anything to do with it?
<!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=utf-8" />
<title>Test</title>
<style type="text/css">
<!--
body {
background-repeat: repeat;
background-color: #000000;
text-align: center;
}
#main {
text-align: left;
margin-right: auto;
margin-left: auto;
width: 1003px;
}
#all {
position: absolute;
width: 1003px;
}
.style1 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #CCCCCC;
font-size: small;
}
a:link {
color: #CCCCCC;
text-decoration: none;
}
a:visited {
color: #CCCCCC;
text-decoration: none;
}
a:hover {
color: #0000FF;
text-decoration: underline;
}
#content {
width: 400px;
z-index: 0;
margin-right: auto;
margin-left: auto;
left: 301px;
top: 240px;
text-align: center;
position: absolute;
}
#headline {
position: absolute;
width: 200px;
z-index: 1;
margin-right: auto;
margin-left: auto;
left: 401px;
top: 200px;
text-align: center;
}
#ad {
position: absolute;
width: 200px;
z-index: 2;
color: #000000;
left: 401px;
top: 500px;
text-align: center;
}
.style2 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #808080;
font-size: small;
}
.style4 {
font-size: large;
font-weight: bold;
color: #C4B6B7;
}
.style5 {color: #FFFFFF}
.style6 {
font-size: x-small;
color: #FFFFFF;
}
-->
</style>
</head>
<body>
<div id="main">
<div id="all">
<div id="headline">
<p class="style4">LETS FACE IT</p>
</div>
<div id="content">
<p><span class="style5">CONTENT TEXT IS WRITTEN HERE</span></p>
</div>
<div id="ad">
<p class="style6">Contact Us To See Your Ad Here.</p>
</div>
</div>
</div>
</body>
</html>