Okay
  Public Ticket #1836120
sidebar link color
Closed

Comments

  •  13
    Rodney started the conversation

    I want  to change the HOVER color for the sidebar links on my site. I've applied some custom css already to set the default color, but can't figure out how to change the text hover color. Can you help?

    Here is what I have in place:

    .ascend #sidebar div ul li a {
        font-size: 14px!important;
        font-weight: 300!important;
        color: #3c3c3c!important;
    }




  •  3,030
    Andrew replied

    Hi Rodney,

    Thank you for contacting us.

    You can use the following Custom CSS to change color on hover.

    .ascend #sidebar div ul > li:hover > a {
        color: red !important;
    }
    

    Kind Regards

  •  13
    Rodney replied

    Worked perfectly. Thanks, Andrew!