How can I change the background color of the search results page?
1 Like
Hey! Yes of course
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?
Please add this following the code for mobile
@media screen and (max-width: 749px) {
.template-search {
background: #000 !important;
}
}