How could i change the white frame and hovered text colours?
Pass: blaosk
A user seeks to customize the Debut theme by changing the white frame and hovered text colors on their collection page.
Solution Provided:
.filters-toolbar__item-child elements to modify border and hover colorsCurrent Status:
Hi @Aighard
Please go to Online Store > Themes > Edit code, find the theme.css file, and add the following code at the end of the file:
.filters-toolbar__item-child .filters-toolbar__input-wrapper.select-group:focus-visible, .filters-toolbar__item-child .filters-toolbar__input:focus-visible {
outline: #C04B3F solid 1px;
}
.filters-toolbar__item-child .filters-toolbar__input option:hover {
color: #C04B3F ;
}
I hope that this will work for you.
Thanks a lot, it worked for the frame, but the hovered text is still white.
Any idea how to fix it?