Setting the responsive menu tabs size

Sharing below the only way i was able to set the tabs size for opened menus with the responsive menu
The value hardcoded by Scriptcase is small and long menu titles are truncated.
Change 200px to suit your needs

onApplicationInit of the responsive menu
echo '<style>.tab > a > span { max-width: 200px !important; }</style>';

2 Likes

I use this in applicationInit:

<style>
#contrl_abas .tab > a > span {
    max-width: unset !important;
}
</style>

I still wonder why NetMake is not exposing this as a configurable setting in response menu applications

actually, I just ran into this issue after updating the menu today. I fixed it with:

    .submenu .wrapper .label, #list_megamenu .wrapper .label {
    max-width: unset !important;}