Please help me on my menu
Posted: 26 May 2008 03:27 PM   [ Ignore ]
Newbie
Rank
Total Posts:  2
Joined  2008-05-26

OK I have to get this done today.  I am building a site for a restaurant using wordpress and I have build a horizontal nav menu for the site.  The menu displays all the pages and when the page name is hovered over it shows a drop down of all of the child pages associated with that page.  Now I want the drop down that displays the child pages to be horizontal under the nav menu instead of being a vertical drop down.  There will always only be 2 levels to this menu.  Here is the css that I have so far.

#suckerfishnav  {
    
positionabsolute;
    
margin0;
    
padding0;}
#suckerfishnav li {
    
list-stylenone;
    
floatleft}
#suckerfishnav li a {
    
displayblock;
    
padding3px 8px;
    
text-transformuppercase;
    
text-decorationnone;
    
color#999;
    
font-weightbold}
#suckerfishnav li a:hover {
    
color#000; }
#suckerfishnav li ul {
    
displaynone;  }
#suckerfishnav li:hover ul, #suckerfishnav li.hover ul {
    
positionabsolute;
    
displayinline;
    
left0;
    
width100%;
    
margin0;
    
padding0}
#suckerfishnav li:hover li, #suckerfishnav li.hover li {
    
floatleft
    
displayinline;
}
#suckerfishnav li:hover li a, #suckerfishnav li.hover li a {
    
color#000;
    
displayinline;
}
#suckerfishnav li li a:hover {
    
color#357; 
    
displayinline;

please help me today I really need to get this done.

Profile
 
 
Posted: 26 May 2008 06:42 PM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  2
Joined  2008-05-26

anybody? please….

Profile
 
 
Posted: 27 May 2008 01:37 PM   [ Ignore ]   [ # 2 ]
Jr. Member
RankRank
Total Posts:  36
Joined  2008-01-11

CSS is useless without some HTML…

Plus there are thousands of resources available to help you build a horizontal CSS menu.

Profile