Okay
  Public Ticket #3390423
Disable the hover effect in a menu item
Closed

Comments

  •  4
    miguelserra started the conversation

    Hi! 

    How can I disable the hover effect in a menu item? 

    The item where I want to disable the hover is the flag.

    Thank you

    Attached files:  Captura de ecrã 2023-06-11, às 11.06.15.png

  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .lang-item  :after {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2,958
    Andrew replied

    Hello again,

    Thank you for getting in touch.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #header-outer[data-lhe="animated_underline"] #top nav > ul > li.lang-item > a .menu-title-text:after {
        border-color: transparent !important
    }
    

    Thanks,

  •  4
    miguelserra replied

    Great! 

    Both solutions worked.

    Thank you very much!