I'm struggling to get a custom dropdown menu to resize to acommadate the length of the child menu items. Below is the code section for the menu. (I have read other forum posts regarding this issue and have tried "overflow: visible; / max-width: none;" but perhaps I added them to the wrong tag?)
Your child menus are positioned absolutely, relative to their parent <li>. Because if this they are limited to the width of the parent <li>.
to force the child menu to cross the bounds of it's parent you have to either give it a static width like 500px or a percentage that is over 100%, such as 150%;
Your child menus are positioned absolutely, relative to their parent <li>. Because if this they are limited to the width of the parent <li>.
to force the child menu to cross the bounds of it's parent you have to either give it a static width like 500px or a percentage that is over 100%, such as 150%;