Please disregard the 'View article...' shown at the bottom of many posts as this is the result of restoring old forum posts from a backup.
Navigation Module Issue
I've been having an issue with the navbar dropdown menu items in responsive mode. After clicking to open the first drop down item (which contains quite a few submenu items) it 'pushes' the other top level menu items to the right side of the child items of the first parent item. It basically creates a second column for the drop down and it wreaks havoc on the behavior of the navbar (practically unfunctional).
I found the issue in the generated HTML, and when I modify it manually, my issue is gone. If I remove the 'pull-left' CSS class from the
I found the issue in the generated HTML, and when I modify it manually, my issue is gone. If I remove the 'pull-left' CSS class from the
- element I'm good to go... it works the way I want. Here's where I'm finding the issue and manually deleting using browser developer tools:
image
How do I go about modifying exponent to stop applying this class to the
- tags in responsive navabar mode? I took a quick look at the navigation module, but wasn't sure where to go exactly to make this change.
I do realize I shouldnt modify the 'framework' version of the module, and will create my own module in my theme.
Please help!
View article...
Comments
$menu .= ''."\n".'
'."\n";
to
$menu .= ''."\n".'
'."\n";
View article...
Exponent doesn't seem to be recognizing my custom plugin in my theme?
View article...
FWIW, I've updated the code in the pre-release version, so it'll be included in the next release (either v2.3.4patch2 or v2.3.5)
View article...