Hi,
I own a site and I am trying to get my middle border to fit in between the header and footer. Here is the CSS code I'm using:
and in the file:
http://www.wfoster.co.uk/index.php
Can anybody help me fit in properly? Thanks.
I own a site and I am trying to get my middle border to fit in between the header and footer. Here is the CSS code I'm using:
Code:
.sidebar {
width: 150px;
height: 100%;
background-color: #12344b;
border-left: double ;
border-left: gray;
border-left-style: double;
border-right: double;
}
and in the file:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<php>
<head>
<link type="text/css" rel="stylesheet" href="/css/floatbox/floatbox.css" />
<script type="text/javascript" src="/css/floatbox/floatbox.js"></script>
<link rel="stylesheet" type="text/css" href="/css/style.css" />
<title>wfoster</title>
</head>
<body>
<style type="text/css">
.lolz
{
position:absolute;
left:1000px;
height:100%;
}
</style>
<div id="header">
<br /><br/>
<div align="center">
<a href="index.php">Home</a> - <a href="blog.php">Blog</a></a> - <a href="about.php">About</a> - <a href="sales.php">Sales</a> - <a href="/photography/">Photography</a></div>
</div>
<div class="lolz">
<div class="sidebar">
Testing
</div>
</div>
http://www.wfoster.co.uk/index.php
Can anybody help me fit in properly? Thanks.