Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #210037

    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

    #210374

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    #211512

    Hello

    How to send private message to you?

    #211518

    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

    #211534
    This reply has been marked as private.
    #211693

    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

    #212120

    Hello

    Thank you for your support, But unfortunately doesn’t work.

    #212979

    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

    #213193

    Hi

    It’s working well, Thank you for your support.

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Problem with Mega Menu’ is closed to new replies.