My site: etherealoasis.co
My theme: Dawn
On the collection pages where you can filter results, “Availability” and “Price” both have a black background, but “Best Selling” has a white background and the text is unreadable. It also puts a highlight box around it when clicked that the others do not. I’d like to get it to match “Availability” and “Price”. I’ve attached an image to show exactly what I’m talking about.
Thanks in advance for any help!
HI @spacetimerider
This is Victor from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
select#SortBy {
background: black;
}
Hope that my solution works for you.
Best regards,
Victor | PageFly
Hello @spacetimerider ,
It’s GemPages support team and glad to support you today.
I would like to give you a recommendation to support you so kindly follow steps below:
- Go to Online Store > Theme > Edit code of your current theme
-
Open your theme.liquid theme file
-
Paste the below code before
Let us know how it works for you.
Best regards,
GemPages Support Team
Hi @spacetimerider ,
I understand you want to have the select as the same background color as your price and availability. To do so, please follow the instructions below
- From your Admin page, go to Online store > Themes > click the three dots > Edit code
- Find the Asset folder, and open the theme.css file
- Add the code below at the very end of the file
select#SortBy {
background: rgb(var(--color-background));
}
Thank you. That fixed part of the problem, but it’s still showing the outlines of the box. Any suggestions to make those go away or be transparent?
@spacetimerider
You can try with this code:
.facet-filters__sort:focus-visible {
outline: 0 !important;
outline-offset: 0 !important;
box-shadow: none !important;
}
HI @spacetimerider ,
You can remove the box outline by following the instructions below
- From your Admin page, go to Online store > Themes > click the three dots > Edit code
- Find the Asset folder, and open the base.css file
- Add the code below at the very end of the file
select#SortBy.facet-filters__sort:focus-visible {
box-shadow: none;
outline: none;
}