YASB! The following code in Mega Menu Layout generates invalid HTML because the id attribute and the following href attribute have no white space between them.
Fix by adding a space before the href:
Code:
echo '<li> <a id="main-link'.$MoreLinksIndex.'"'; echo 'href="#" onclick="return false;" style="cursor: default;" onmouseover="mmOpen('.$MoreLinksIndex.');" onmouseout="mmCloseTime();"';
Code:
echo '<li> <a id="main-link'.$MoreLinksIndex.'"'; echo ' href="#" onclick="return false;" style="cursor: default;" onmouseover="mmOpen('.$MoreLinksIndex.');" onmouseout="mmCloseTime();"';