Trouble getting the Child menu Item inline with the rest of the menu
pseudo_bot - October 28, 2009 - 10:38
| Project: | Nice Menus |
| Version: | 6.x-1.1 |
| Component: | CSS |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
I have developing a site in Drupal
I have modified the GlossyBlue theme
And am using the nice_menus module
But the menu elements are not aligned properly
I have tried resetting the css margins and padding manually by placing the css below the other style sheets in the page.tpl.php file
ul.nice-menu,
ul.nice-menu ul,
ul.nice-menu li {
border: 0;
padding : 0px 0px 0px 0px;
margin: 0px;
}
And still no luck, I am running out of Ideas....
Here is a screen shot I took:
On the left is how it currently looks....And on the right is how I need it to look
Please any help would be greatly appreciated.

#1
hmmm. try adding this to the css file that is controlling nice menus
ul.nice-menu>li>ul {top: 2em;
}
on my nice menus it moves the position of the 2nd level submenu down a bit. However, I am not sure how to target just the 3rd level of menu as you desire. Hopefully this gives you a hint, so you can play around with it and get it working
good luck