Hello
I need to have right to left menu in my website,I did this job but have problem with mega menu, Could you pls help me
Hi,
Can you post the link to your website please?
Regards,
Josue
Hello
How to send private message to you?
Hey!
You can reply here and set it as a private reply with the checkbox under the post labeled “Set as private reply”.
Regards,
Devin
Hey!
Edit js > avia.js, find this code on line 1011:
if(pos.left + megaDiv.width() < parentContainerWidth)
{
megaDiv.css({right: -megaDiv.outerWidth() + item.outerWidth() });
//item.css({position:'static'});
}
else if(pos.left + megaDiv.width() > parentContainerWidth)
{
megaDiv.css({right: -mainMenuParent.outerWidth() + (pos.left + item.outerWidth() ) });
}
Replace it with:
if(pos.left + megaDiv.width() < parentContainerWidth)
{
megaDiv.css({right: 0 });
//item.css({position:'static'});
}
else if(pos.left + megaDiv.width() > parentContainerWidth)
{
megaDiv.css({right: 0 });
}
Remove browser cache then reload the page a few times.
Cheers!
Ismael
Hello
Thank you for your support, But unfortunately doesn’t work.
Hey!
Can you try adding following code to Quick CSS in Enfold theme options under Styling tab
#header_main_alternate .avia_mega_div {
right: 0; }
Best regards,
Yigit
Hi
It’s working well, Thank you for your support.