I have a problem on the menu of this site: http://gabriellevinson.fr/. Notably with the project submenu and the contact link. Indeed, when I click on the arrow next to the project, the contact link disappears, but I would like it to be visible all the time. I tried:
jQuery(document).ready(function( $ ){
$(".mega-indicator").click(function(){
$(" #mega-menu-wrap-sidemenu #mega-menu-sidemenu > li.mega-menu-item > a.mega-menu-link").css("position", "inherit")};
});
});
But it doesn’t work. I do not see the solution. I just know that you have to move from position:absolute to position:inherit.
Thank you in advance, I have been struggling with this for more than a week.