Hello @tuanphan,
I still need some help with this when you get a chance.
In addition if you have a moment I am also trying to make the arrow keys in the testimonials section change the background color on hover, but I can only get it to work for the outside part of the colored circle. I can't get the arrow hover event, only the background hover event.
section[data-section-id="63da0d96a2da9f1289ae15a8"] .user-items-list-banner-slideshow__arrow-icon-background-area:hover {
background-color: #c951f4;
}
/* testimonial arrow hover color, not working */
/*
section[data-section-id="63da0d96a2da9f1289ae15a8"] .user-items-list-banner-slideshow__arrow-icon:hover + section[data-section-id="63da0d96a2da9f1289ae15a8"] .user-items-list-banner-slideshow__arrow-icon-background-area {
background-color: #c951f4;
}
EDIT:
I was able to solve the arrow keys background color with a child selector!
Here is the code
section[data-section-id="63da0d96a2da9f1289ae15a8"] .user-items-list-banner-slideshow__arrow-button--left:hover > .user-items-list-banner-slideshow__arrow-icon-background-area {
background-color: #c951f4; //check if the user is hovering over the left button, then use the child selector to select the background color element and change it
}
section[data-section-id="63da0d96a2da9f1289ae15a8"] .user-items-list-banner-slideshow__arrow-button--right:hover > .user-items-list-banner-slideshow__arrow-icon-background-area {
background-color: #c951f4; //check if the user is hovering over the right button, then use the child selector to select the background color element and change it
}