How to change List color on hover

To change List color on hover, like this.

V2 364 3 78 1 min

#1. First, hover on top right of list > Click Edit Section

V2 364 3 78 2 min

#2. Next, enter word: list-style04 to Anchor Link option

list-style04

V2 364 3 78 3 min

#3. Next, use this code to Custom CSS

section#list-style04 .list-item-media {
    max-width: 50px;
}
section#list-style04 a.list-item-content__button {
    border: none !important;
    background-color: transparent !important;
    color: #000 !important;
    padding-left: 0px !important;
    transition: unset !important;
}
section#list-style04 a.list-item-content__button:after {
    content: "\2191";
    transform: rotate(45deg);
    display: inline-block;
    margin-left: 5px;
}
section#list-style04 li {
    padding: 10px;
}
section#list-style04 li:hover {
    background-color: #022140;
}
section#list-style04 li:hover * {
    color: #fff !important;
}
section#list-style04 li:nth-child(1):hover img {
    content: url(https://cdn.pixabay.com/photo/2025/07/16/15/01/karlsbad-9718003_1280.jpg);
}
section#list-style04 li:nth-child(2):hover img {
    content: url(https://cdn.pixabay.com/photo/2025/05/13/07/47/skyscrapers-9596809_1280.jpg);
}

V2 364 3 78 4 min

Update Pixabay with hover icon url

You can remove it if you don’t need change icon hover color.

V2 364 3 78 5 min
Change list hover background color here.

V2 364 3 78 6 min

Buy me a coffee