1 Attachment(s)
I'm learning CSS and I need some expert input
I'm just starting to learn CSS and I've tried to tackle a Navigation Menu.
So I figured I'd start with a clean "tabs" type menu -- with no graphics in it.
So I wrote the html file below and used the attached CSS file too (after reviewing various examples and reading through my CSS books).
I created the menu header and then tried to generate a floting box for content to complete the overall look
I managed to generate the navigation tabs, but I cannot seem to get the over all look be connected.
My content box is not connected to the navigation bar -- so it looks disjointed.
Can anyone point out my shortcoming?
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>
<div id=""navcontainer">
<ul id="navlist">
<!-- CSS Tabs -->
<li><a id="current" href="admin_index.html">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>
<div id="main_header">
<p> Test this out </p>
</div>
</body>
</html>
Applied suggestion...but...
I applied the suggestion given -- but I see no difference