Re: Sub-Sub-Categories flyout menu doesn't align. Too much gap!
FOUND IT!
It's inside master.css (I knew there was another css file I was forgetting about too!)
Down at the bottom of it you'll find...
/* Style drop down list level 2 */
#catnav li ul ul{margin:-25px 0 0 170px}
If you change that 170px to something larger, then the menu moves to the right. Making it smaller moves the menu to the left, reducing that gap. Since I had a 4-pixel gap to overcome, the following will fix that...
#catnav li ul ul{margin:-25px 0 0 166px}
Was this post helpful? Click the "Thanks" button below.