New Landing How can we help? Atelier Menu hover?

Viewing 12 posts - 1 through 12 (of 12 total)
  • Posted in: Atelier
  • #246608
    micheal_w
    Member
    Post count: 498

    Hi Guys,
    how can I achieve this type of hover with Atelier like here: http://joyn.swiftideas.com/home/home-multi-layer-parallax/
    (little rectangular block comes down above the menus)

    Thanks!

    #246619
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Hi

    Add this to your custom css:

    nav .menu > li.current-menu-ancestor > a, nav .menu > li.current-menu-item > a, nav .menu > li.current-scroll-item > a, #mobile-menu .menu ul li.current-menu-item > a {
      box-shadow: 0 5px 0 #52cebe inset;
    }
    

    – Kyle

    #246667
    micheal_w
    Member
    Post count: 498

    Hi Kyle,

    thanks for the code however it works differently unfortunately. At the moment the top rectangular block appears when the menu is active but not on hover. Can it be active only when I hover over the menu?

    #246675
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Try this instead:

    #main-navigation ul.menu > li:hover > a {
      box-shadow: 0 5px 0 rgba(82, 206, 190, 0.7) inset;
    }

    – Kyle

    #246680
    micheal_w
    Member
    Post count: 498

    Almost perfect, thanks!
    The only difference is, that now on my site the hover boxes appear straight away without any “effect” while on this site http://joyn.swiftideas.com/home/home-multi-layer-parallax/ they appear a bit slowly, going down from the top… Can it be like that please?

    #246685
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Try adding this:

    .full-center #main-navigation ul.menu > li > a, .full-center .header-right ul.menu > li > a, .full-center nav.float-alt-menu ul.menu > li > a, .full-center #logo h1, .full-center .header-right div.text {
      transition: height 0.3s ease-in-out 0s, line-height 0.3s ease-in-out 0s, box-shadow 0.3s ease-in-out 0s;
    }

    – Kyle

    #246689
    micheal_w
    Member
    Post count: 498

    If I use this code, there is no rectangular hover boxes at all…

    #246690
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Did you keep the other css too?

    – Kyle

    #246692
    micheal_w
    Member
    Post count: 498

    No, I replaced it…

    #246694
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    You need that too

    – Kyle

    #246696
    micheal_w
    Member
    Post count: 498

    YAY! it works, beautiful, thank you!

    #246698
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    No problem 🙂

Viewing 12 posts - 1 through 12 (of 12 total)

You must be logged in to reply to this topic.