Home Forums Air WordPress Theme Menu | Underline active page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #15450
    kamilrasinski
    Participant
    Purchased
    Expired

    Hi,

    Please, could you let me know if it is possible to deactivate underline of an active page in the navigation menu?

    The second think is that menu is not working correctly on Safari browser. When I click in navigation menu on some topic, it’s not getting me correctly to the subject. For example: if I click on the section Upcoming Fashion Fairs, I will go to the Our Advantages. The case is only on Safari.

    Thanks a lot in advance!

    URL: http://aurex.pl/en/

    Regards!
    Kamil

    #15453
    SeaTheme
    Keymaster
    Purchased
    Expired

    Hi,

    1) Please add the css into custom.css :

    #navi li.menu-item.current-menu-item > a:before { 
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        transform: scaleX(0);
    }
    #navi li.menu-item.current-menu-item > a:hover:before { 
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        transform: scaleX(1);
    }
    
    

    2) Because the origin design is that main content wrap will come down when menu icon clicked. When the menu item clicked, the content wrap will come back(changed the position, the browser would remember the position). So the anchor position will go wrong place on some browsers, so we have to remove the main wrap translate CSS:

    .show_mobile_menu #wrap {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    NOTICE: clean the browser to test.
    ——————————–
    If it doesn’t work, please send your question and wp-admin(url/user/pass) to uiueux@gmail.com, I’ll log in to check it.

    Regards!
    Bwsm – uiueux.comTwitterFacebook

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.