Okay
  Public Ticket #2510144
Hover Effect on Horizontal List Items
Closed

Comments

  •  3
    erinnlspringer started the conversation

    I want to override the current hover options on the Horizontal List Items so that only the color of the font changes and not the color of the entire box. Is there an easy way to override that? 

  •  8,851
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .nectar-hor-list-item[data-color="accent-color"]:before {
        background-color: transparent !important;
    }
    .nectar-hor-list-item[data-hover-effect="default"]:hover {
        border-color: #333 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  3
    erinnlspringer replied

    Hey Tahir,

    That is helpful but I also want to change the font color on hover so that it's not white.

    Thank you for your help!

    Erinn

  •  8,851
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .nectar-hor-list-item[data-hover-effect="default"]:hover .nectar-list-item, .nectar-hor-list-item[data-hover-effect="default"]:hover .nectar-list-item-btn, .span_12.light .nectar-hor-list-item .nectar-list-item, .span_12.light .nectar-hor-list-item .nectar-list-item-btn {
        color: #000 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  3
    erinnlspringer replied

    Thank you!