Pregunta

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

¿Fue útil?

Solución

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

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

Should remove the padding.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top