Change background color of results page

How can I change the background color of the search results page?

@pimpaoclothing

Can you share your store URL?

Thanks!

1 Like

Hey! Yes of course

https://umhw5c-2w.myshopify.com/

@pimpaoclothing

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

.template-search {
        background: #000 !important;
    }

Thanks!

1 Like

Thank you, but it only change in desktop, how can i change in mobile?

@pimpaoclothing

Please add this following the code for mobile

@media screen and (max-width: 749px) {
 .template-search {
        background: #000 !important;
    }
}