Question

Demo

$(document).ready(function ($)
        {
            $('#mega-menu-1').dcMegaMenu({
                rowItems: '3',
                speed: 'fast',
                effect: 'slide'
            });
        });

Using megamenu js file.Megamenu Link i m facing issue How to left align SubMenu Links(Product 1,Product 2,product 3).

Était-ce utile?

La solution

The text is left aligned, however the ul is padded.

#mega-menu-1 ul {
   padding: 0;
   margin: 0;
}

Should remove the padding.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top