Site logo

[Resolved] Modifying mega menu.

Home Forums Support [Resolved] Modifying mega menu.

Home Forums Support Modifying mega menu.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2549422
    Jusung

    Hello. This has become complicated.

    I have made a mega menu.

    On mobile, it looks ok, but on pc, I want to remove the hover effect on child item.
    only chid item. not the grand child item.
    It is because the child item becomes white without background hover effect only on PC.

    Could you fix this?

    The mega menu is on 서비스

    #2549869
    David
    Staff
    Customer Support

    Hi there,

    in your current CSS you have this rule for setting those menu items color on desktop:

    nav .main-nav .mega-menu > ul > li > a {
        font-weight: bold;
        font-size: 22px;
        font-weight: 500;
        color: black;
    }
    

    Change it to:

    
    nav .main-nav .mega-menu > ul > li > a,
    nav .main-nav .mega-menu > ul > li:hover > a {
        font-weight: bold;
        font-size: 22px;
        font-weight: 500;
        color: black !important;
        pointer-events: none;
    }
    #2549978
    Jusung

    Thank you!!

    finally this is resolved.

    #2550277
    David
    Staff
    Customer Support

    Glad to hear that!!

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