Hello,
Not sure if you were able to solve your problem using the links provided by " davemies" I agree with him 100% - you should use css & list items for your navigation. Sample code below ( The Nav is not very pretty, I just created this so you could get the idea:
<html>
<head>
<style type="text/css">
.nav{
height:50px;
background-color:#83AABF;
}
.nav ul{
padding-top:15px;
}
.nav li{
list-style:none;
display:inline;
margin-right:0px;
}
.nav li a{
color:#fff;
font-size:18px;
text-decoration:none;
border:thin solid #fff;
padding:10px;
}
</style>
</head>
<body>
<div class="nav">
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">LInk 2</a></li>
</ul>
</div>
</body>
</html>
Hope this helps...
__________________
I'm always available to assist. PM me with any questions...
Josh
|