Viewing 3 replies - 1 through 3 (of 3 total)
  • hannah

    (@hannahritner)

    Hey,
    That should pull from your basic styling settings in theme options. Or you can paste css like this in your custom css box in Theme Options > Advanced Settings:

    .sidebar a {
        color: #fff;
    }
    .sidebar a:hover {
        color: #999;
    }

    Hannah

    This would give you the hover options for the background:

    .sidebar ul.menu li a {
        background-color: rgba(0,0,0,.4);
        padding: 5px 10px;
        color: white;
    }
    .sidebar ul.menu li a:hover {
        background-color: #8224e3;
        color: white;
    }

    Kadence Themes

    Thread Starter Jorge23

    (@jorge23)

    Great!! All CSS worked like a charm.
    Thank you guys for your support.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom menu customization’ is closed to new replies.