Help please to change font colour of drop down menus in the collection filters (dawn theme)

Thanks as always all,

My filter boxes have white text in the second tier of drop downs, how can i please change this to black? You can see below the issue;

Store is: p1simgear.com.au

pw is: P1test%

Thanks!

1 Like

Hi,

Sure, let me fix it quickly for you. :slightly_smiling_face:

1 Like

@p1simgear

Please add the following CSS code to your assets/base.css bottom of the file.

.facets-container .list-menu__item {color: #000 !important;}

Thanks!

1 Like

Hi,

Please add the below CSS and check:

label.facet-checkbox {
    color: #000;
}
1 Like

Perfect, thanks so much @Prezentech ! Superstar!

@p1simgear

Thanks! welcome again!

1 Like

Hi @Prezentech , sorry i just realised, this fix worked perfectly on the desktop, but on mobile the filter box text is still white. How can i please change that to black also?

thanks!

Hi @p1simgear

Please add the below CSS and check.

li.mobile-facets__item.list-menu__item {
    color: #000;
}

Thanks @Prezentech , but that didnt seem to work, the mobile fonts are still white:

Thanks!

Hi @p1simgear

Can you please add the CSS in the base.css file and save it again?

li.mobile-facets__item.list-menu__item {
    color: #000 !important;
}

It will work as expected for you.

Still no joy sorry @Prezentech , the last tier of the filter menu on mobile remains white!

@p1simgear

Please add the following CSS code to your assets/base.css bottom of the file.

.mobile-facets .list-menu__item {
    color: #000 !important;
}