Hi,
I want to integrate the ARI Ext Menu to a website and I have some problems to customize the layout:
1. The height of the first level I set to 55px, but there's an additional space below in the same background color like in the attached image. If the second level is shown, it appears at the right position. How can I get rid of this additional space? Here it is another problem, that this space is in front of the submenu.
2. Inside the height of 55px I want to center the text vertical. How can I do that?
At the moment I use the following css-code inside the module:
Code: |
.ux-menu-container UL.ux-menu LI.ux-menu-item-level-0,
.ux-menu-container UL.ux-menu LI A.ux-menu-link-level-0
{
border-style: none;
height: 55px;
}
.ux-menu-container UL.ux-menu LI.ux-menu-item-level-1,
.ux-menu-container UL.ux-menu LI A.ux-menu-link-level-1
{
border-style: none;
}
/* -- nur aufklappen, wenn Maus darber -- */
UL.ux-menu-hidden
{
display: none !important;
}
UL.ux-menu SPAN.ux-menu-arrow
{
display: none;
}
|