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).

Was it helpful?

Solution

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

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

Should remove the padding.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top