Hi, I would like to know how to increase the font size for the fullwidth submenu item.
Thanks.
Hey DROR!
Add this to your custom CSS.
.av-submenu-container .avia-menu-text { font-size: 14px !important; }
Best regards,
Elliott
Thanks! I also have a problem with the separator being in the wrong place – http://screencast.com/t/aCYjKoKR – it should be between the menu items, how can I fix that?
Hey!
Please add following code to Quick CSS
.rtl .av-subnav-menu > li > a {
padding: 0px 12px 0px 10px;
display: block;
border-left-style: none;
border-left-width: 0;
border-right-style: solid;
border-right-width: 1px;
}
.rtl .av-subnav-menu > li:first-child a {
border-right: none;
}
Regards,
Yigit
It did add the middle separator but it also kept the left one which is not needed – http://screencast.com/t/HtwOpeESB – how can I remove just the left separator?
Hey!
Can you please change the following line
border-left-style: none;
to following
border-left-style: none !important;
Regards,
Yigit
Thanks :)