Is there a way to align my Dropdown and parent submenu text to the left, while keeping my tab text always justified to the right?
Below is the code snippet:
<!doctype html public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<style>
/* CSS for Multi Level Drop Down Navigation Menu */
#nav {
position: relative;
left: auto;
float: left;
font: 12px calibri, Helvetica, Sans-serif;
border: 1px solid #121314;
border-top: 1px solid #2b2e30;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
overflow: visible;
line-height: 10px;
}
/* More CSS Styles */
</style>
<header style="position: relative; top: 6px;">
<div id="nav">
... Insert navigation menu items here ...
</ul>
</li>