Hello Ian
I think I understood the concept regarding the menu positions but was only able to retrieve the 'About' tab underneath my header.
I tried all kinds of different permutations under <div> tags in the header.php but haven't been able to put the Home tab next to the About tab.
This is the code in my /* =Menu section -
#access {
font-size:12px;
font-weight:bold;
background:#fff;
border-top:1px solid #CADEF0;
margin-top:-1px;
}
.skip-link {
display:none;
}
#menu {
padding:7px 0 8px 0;
overflow:hidden; /* clears the inner float */
}
#menu ul {
margin:0;
list-style:none;
clear:both;
}
#menu ul ul {
display:none;
}
#menu li {
display:inline;
}
#menu a {
display:block;
float:left;
margin:0 10px 0 0;
padding:1px 6px;
background:#fff;
color:#002BFF;
border-bottom:1px solid #002BFF;
text-decoration:none;
}
#menu a:hover {
background:#5C9BD1;
color:#fff;
border-color:#002BFF;
}
#menu .current_page_item a {
background:#5C9BD1;
color:#fff;
border-color:#002BFF;
}
#menu a:focus {
background:#4887BD;
color:#fff;
border-color:#2772B3;
}
I tried entering this into my header.php -
<div id="menu">
">HOME
</div>
I also tried -
<div id="menu">
</div>
Of the 20 ways I tried, those 2 were the closest and even then, they just put the Home tab ABOVE the About tab (into the header graphic)
What should I put in my header.php to get the Home tab next to the About tab?
Thanks
TCT