Hey guys wats up i'm having a little trouble with links. i have some css code with the links so that they have a border on top and bottom and stuff. i have to links at the moment as i'm trying to figure this out.
on to explanation lol
anyways the two links are right beside each other and i want them to be but they look like one word. i'm trying to find a way to separate them into two words. here is my code:
CSS:
Quote:
#Nav{
float: left;
width: 948px;
height: 18px;
border-top: 1px solid #FFA701;
border-right: 1px solid #000;
border-left: 1px solid #000;
border-bottom: 1px solid #FFA701;
}
#Nav a{
float: left;
padding: 0;
margin: 0;
height: 18px;
color: #fff;
text-transform:uppercase;
text-decoration: none;
font-weight: bold;
overflow: hidden;
}
HTML:
Quote:
<html>
<link href="code.css" type="text/css" rel="stylesheet">
<body bgcolor="#000">
<div id="Nav">
(a href="#" class="">Home
(a href="#" class="">TEST
</div>
</body>
</html>
ok in the html change the ( brackets to [ u changed because when i originally posted this it put it actually like a link.
thx in advance