Hello, I created a submenu full width. I need to control the space letter this menu. How do I do this? Leave must also bold in some menu items.
I saw another problem. The menu is fixed on the desktop and rises along with the page on mobile. It has to be fixed also in mobile.
The behavior must be the same as on the desktop.
Hey!
Your trying to limit the width so you can fit the whole alphabet on line line correct? Try adding this to your custom CSS.
#top .av-subnav-menu > li > a { padding: 0px 5px !important; }
To give it a fixed position on mobiles try adding this.
@media screen and (max-width: 767px) {
.responsive #top .av-submenu-container { position: fixed !important; top: 0px !important; }
}
Regards,
Elliott
Thanks Elliott.
Ok, it worked on mobile.
It created a very large line break the list of items. How to control this spacing?
Hey!
You could reduce the padding a bit more. Try 2px.
#top .av-subnav-menu > li > a { padding: 0px 2px !important; }
Best regards,
Elliott