GLFusion Tidbits - Horizontal MooMenu Width

In playing around with the default font size for a site I noticed that the drop-downs on the top horizontal menu were no longer properly lining up.
A bit of sleuthing shows that this width is hard coded at 177px, whereas to work correctly it really should be relative to the font size.
A bit of playing around in /private/plugins/sitetailor/templates/custom/gl_horizontal-cascading.thtml (make a copy of the file from the directory above custom) turned the line:
width:177px;
to
width:14.6em;



What's Related