Filter background colour blending with text

Hi,

I’m trying to change the background colour of my drop down boxes which are currently white, as I use a dark themed background my text is also white causing it to blend.

Looking through the coding I’ve been unable to find where to amend this.

I am using the Dawn theme.

Thanks,

Alex

Hello Alex ,

You can assign css to select or it’s class

e.g.

.selectClass{

background: #000;

}

Thanks

1 Like

Thank you for replying.

I couldn’t originally find the .css file of where to amend this but I found the class in Assets/template-collection.css after checking inspect again (this time properly)

All working now

.collection-filters__sort,
.collection-filters__sort:hover {
box-shadow: none;
Background-color: #16222e
}

1 Like