newbie question - nav bar no longer straight accross
amywadlington
Registered Users Posts: 2 Beginner grinner
Hi everyone! Please help! I have been a lurker for quite some time and up unitl now have been able to find all of my answers by searching the threads. The drop down items on my nav bar have always been straight accross the top and I have never had problems with them...until now. I checked and double checked my code (ha! like I actually know what to look for!) but i cannot figure this one out. Any suggestions?
check it out at http://www.amywadlingtonphotos.smugmug.com
thank you!
amy
check it out at http://www.amywadlingtonphotos.smugmug.com
thank you!
amy
0
Comments
Meanwhile, remove all this js from your CSS.
My Website index | My Blog
looking into it.
Replace your header nav html with this.
Change the red in your CSS so the drop it up to the main.
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:21px;
left:0;
width:125px; /* Size of the daughter cells */
}
My Website index | My Blog
It's working now - thank you very much!