View Single Post
Old 11-14-2012, 11:37 PM   PM User | #13
Excavator
Master Coder


 
Excavator's Avatar
 
Join Date: Dec 2006
Location: Alaska
Posts: 9,410
Thanks: 22
Thanked 1,765 Times in 1,749 Posts
Excavator has a spectacular aura aboutExcavator has a spectacular aura aboutExcavator has a spectacular aura about
Maybe something like this would work for you?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<style type="text/css">
html, body {
	margin: 0;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #C9D6A0;
	color: #000;
	font-family: "Century Gothic";
} 
.container {
	width: 960px;
	margin: 0 auto; 
	overflow: auto;
	background: #603B3D;
} 
.header {
	height: 186px;
	width: 960px;
	background: #603B3D;
	text-align: left;
	position: fixed;
} 
	.header ul {
		margin: 5px 0 0 400px;
		text-align: center;
		list-style: none;
	}
		.header ul li {
			width: 100px;
			margin: 3px;
			float: left;
		}
			.header ul li a {
				height: 25px;
				padding: 50px 0 0;
				display: block;
				background: url(your picture here.jpg);
			}
</style>
</head>
<body>
    <div class="container">
        <div class="header">
            	<ul>
                	<li><a href="#">button</a></li>
                	<li><a href="#">button</a></li>
                	<li><a href="#">button</a></li>
                	<li><a href="#">button</a></li>
                	<li><a href="#">button</a></li>
                	<li><a href="#">button</a></li>
                	<li><a href="#">button</a></li>
                	<li><a href="#">button</a></li>
                </ul>
        <!--end .header--></div>
    <!-- end .container --></div>
</body>
</html>
__________________
Validate often DURING development - Use it like a splelchecker | Debug during Development |Write it for FireFox, ignore IE
Use the right DocType | Validate your markup | Validate your CSS | Why validating is good | Why tables are bad

Last edited by Excavator; 11-14-2012 at 11:42 PM..
Excavator is offline   Reply With Quote
Users who have thanked Excavator for this post:
MMM717 (11-15-2012)