I'm a bit of a newbie and I am working on a page where I am trying to integrate new things that I've learned, but I'm having a bit of a problem.
The page can be seen
HERE and the code is:
<style type="text/css">
body {
background-color: rgb(102,102,102);
margin:0;
padding:0;
}
#container {
background-color: #000;
width:823px;
margin:0 auto;
}
#head1 {
background-image:url('../new/images/head1.jpg');
background-repeat:no-repeat;
width: 823px;
height: 157px;
}
#head2 {
background-color: black;
width: 817px;
height: 140px;
border-left: medium solid #CCC;
border-right: medium solid #CCC;
}
#head3 {
background-image:url('../new/images/nav-bar.jpg');
background-repeat:no-repeat;
width: 823px;
height: 40px;
}
#left {
float: left;
color: #FFF;
background-image:url('../new/images/left.jpg');
background-repeat:repeat;
border-left: medium solid #CCC;
width: 177px;
height: 569px;
padding-left:10px;
}
#mid {
float: left;
color: #FFF;
background-image:url('../new/images/mid.jpg');
background-repeat:repeat;
width: 375px;
height: 550px;
padding-left:35px;
padding-right:10px;
padding-top: 0px;
text-align: justify;
}
#right {
float:right;
color: #FFF;
text-align: justify;
background-image:url('../new/images/right.jpg');
background-repeat:repeat;
border-right: medium solid #CCC;
width: 172px;
height: 550px;
padding-left:15px;
padding-right:15px;
padding-top: 0px;
}
#footer {
clear: both;
background-image:url('../new/images/footer.jpg');
width: 823px;
height: 89px;
color: #FFF;
text-align:center;
}
#menu ul li {
margin-top: 11px;
list-style-type: none;
float: left;
}
#menu ul li a {
color: #FFF;
font-family: sans-serif;
font-size: 14px;
font-weight: bold;
font-style: italic;
text-decoration: none;
padding: 0px 44px 0px 0px;
}
#menu ul li a:hover{color: black;}
.bartext {
float: left;
width: 149px;
padding-top: 5px;
font-family: sans-serif;
font-size: 14px;
text-align: justify;
}
#bar_top {
margin-top: 25px;
background-image:url('../new/images/bar-top.jpg');
background-repeat:no-repeat;
width: 195px;
height: 39px;
}
#bar_fill {
padding-left: 25px;
adding-right: 25px;
background-image:url('..new/images/bar-fill.jpg');
background-repeat:repeat;
width: 195px;
height: 225px;
}
#bar_bot {
background-image:url('..new/images/bar-bot.jpg');
background-repeat:no-repeat;
width: 195px;
height: 28px;
}
#copyright {
font-family:sans-serif;
text-align: center;
color: #FFF;
font-size: 11px;
padding-top: 10px;
line-height: 25px;
clear:both;
}
a:link {color:rgb(254,251,154)}
a:visited {color: red}
a:active {color: #FFF}
.clear { clear: both; width: 100%; height: 0; visibility: none; }
#list ul li {
color: rgb(254,251,154);
margin-left: 30px;
font-weight: bold;
line-height: 36pt;
text-align:left;
}
</style>
</head>
<body>
<div id="container">
<div id="head1"></div>
<div id="head2">
</div>
<div id="head3">
<div id="menu">
<ul>
<li><a href="*" title="Home">Home</a></li>
<li><a href="*" title="About Us">About Us</a></li>
<li><a href="*" title="Why Us">Why Us</a></li>
<li><a href="*" title="Services">Services</a></li>
<li><a href="*" title="Pricing">Pricing</a></li>
<li><a href="*" title="Request More Information">Request More Info</a></li>
<li><a href="*" title="Contact Us">Contact Us</a></li>
</ul>
</div></div>
<div style="clear"> </div>
<div id="left">
<div id="bar_top">
<div id="bar_fill">
<div class="bartext">Now is the time for all good men to come to the aid of their country.</div>
<div id="bar_bot">
</div></div></div></div>
<div style="clear"> </div>
<div id="mid">
<h2>Contact Us</h2>
<br>
<p>If you have questions, need additional information or would like to schedule a video session, please feel free to
contact us by any of the means below:</p>
<div id="list">
<ul>
<li>Telephone . . . . .&n bsp;. . . .(724) 968-8679</li>
<li>Yahoo Messenger ID . . . .<br>creative_videopr oductions
<li>Email . . . . . . . . . . . . . <a href="mailto:info@creativevp.com?subject=More Information Request">info@creativevp.com</a></li>
</ul></div>
</div>
<div id="right">Now is the time for all good men to come to the aid of their country.
Now is the time for all good men to come to the aid of their country.</div>
<div id="footer">
<div id="copyright">
© 2007 Creative Video Productions All Rights Reserved
</div>
</div>
</div>
My problems are this:
I want to have an image show on the left hand side. I have it coded for bar_top, bar_fill & bar_bot but I can't get it to display.
The next problem is with the border, especially around the "nav-bar" and the top of the "right" column.
Do any of the experts have any suggestions?
Thanks