Thanks for the reply.
Screenshot of how it looks on a higher resolution:
Screenshot of how it looks at 1024x768:
CSS:
Code:
html,body
{
height:100%;
min-height:100%;
background-image:url(images/bg.gif);
background-color:#e9f1f4;
background-repeat:repeat-x;
margin:0px;
padding:0px;
}
a:link
{
color:#c50000;
text-decoration:underline;
}
a:visited
{
color:#990000;
text-decoration:underline;
}
a:hover
{
color:#0000FF;
text-decoration:none;
}
.maincontent
{
margin-left:auto;
margin-right:auto;
background-color:#eeeeee;
width:800px;
height:100%; /* Leave in! fixes IE from breaking div */
min-height:100%;
border-left:1px;
border-right:1px;
border-top:0px;
border-bottom:0px;
border-style:solid;
}
.content
{width:760px;
margin-left:auto;
margin-right:auto;
}
.mainmenu
{
border-left:0px;
border-right:0px;
border-top:0px;
border-bottom:1px;
border-style:solid;
}
.footer
{
text-align:center;
width:100%;
border-bottom:0px;
border-top:1px;
border-left:0px;
border-right:0px;
border-style:solid;
position:absolute;
bottom:0;
width:800px;
}
HTML:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>xxxxxxxxxxx</title>
<?php include('yyyyyy') ?>
</head>
<body>
<div class="maincontent">
<?php include('xxxx') ?>
<!-- Content Start -->
<div class="content">
<br>
<h2 align="center">Where am I located?</h2><br><br>
<p><br><br> yyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
<b>Map</b><br>
<a href="images/map.gif" target="_blank"><img src="images/map.gif" width="300" height="202" border="0" alt="Map"><br></a>
<i>Map courtesy of <a href="jjj">Google Maps</a></i>
</p>
</div>
<!-- Content End -->
<?php include('ooooo') ?>
</div>
</body>
</html>
HTML for footer too if it helps:
Code:
<div class="footer">
<font size="-1">Copyright © xxxxxx <? echo date('Y') ?><br>
All logos and trademarks on this site are property of their respective owners
</font>
</div>
Thanks,
Adrian