Ok figured it out now, here is the modified CSS, sorry about me not seeing what you wanted before...
CSS:
Code:
#navlist li a#current {
background: #fff3b3;
border-bottom:1px solid #fff3b3; /*Mergers in with the colour of the content box*/
}
#navlist {
padding: 3px 0px;
margin: 0;
bottom: -1px;
font: bold 10px Tahoma, sans-serif;
}
I have also changed the HTML a little bit, as you do not need the "navcontainer" and the code you provided actually showed <div id=""navcontainer"> Which is invalid, but if you just take the navcontainer out you still maintain the same look. Also took out the link for the active tab, since it's active you don't need a link for it.
HTML:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Values Navigation Menu</title>
<!-- Cascading Style Sheet Section -->
<link rel="stylesheet" href="values_tabs.css" type="text/css" media="screen">
</head>
<body>
<h2>Tab Menu</h2>
<ul id="navlist">
<!-- CSS Tabs -->
<li><a id="current">Administration</a></li>
<li><a href="categories.php">Categories</a></li>
<li><a href="subcategories.php">Subcategories</a></li>
<li><a href="media_types.php">Media Types</a></li>
<li><a href="roles.php">Roles</a></li>
</ul>
<div id="main_header">
<p> Content goes here... </p>
</div>
</body>
</html>
Hope this sorts it for you, just tell me if that's not how you wanted it, final version's also at: http://www.bombthehills.com/test/tabs.html
Jack.
Bookmarks