Pergunta

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

Foi útil?

Solução

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

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

Should remove the padding.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top