I have been playing around with css and have found this.
HTML Code:
<html>
<head>
<link rel="stylesheet" type="text/css" href="test.css" />
</head>
<body>
<center>
<ul id="list-nav">
<li><a href="index.php">Home</a></li>
<li><a href="audition.php">Auditions</a></li>
<li><a href="hireservices.php">Hire Services</a></li>
<li><a href="products.php">Hire</a></li>
<li><a href="database.php">Register</a></li>
<li><a href="login.php">Login</a></li>
</ul>
</center>
</body>
</html>
and this
HTML Code:
ul#list-nav {
list-style:none;
margin:20px;
padding:0;
width:600px
}
ul#list-nav li {
display:inline
}
ul#list-nav li a {
text-decoration:none;
padding:5px 0;
width:100px;
background:#485e49;
color:#eee;
float:left;
text-align:center;
border-left:1px solid #fff;
}
ul#list-nav li a:hover {
background:#a2b3a1;
color:#000
}
It works well but I would like to add another bar in the middle, mabye silver, which isn't a link and just says Canberra Amatuer Productions. in nice big bold text and the green bit it's on could be wider. Any help would be appreciated.
Also could someone please move my post cause it isn't really looking for a script any more.
Bookmarks