I have already been trying to figure this out for hours and have had no success. Can someone tell me how to specifically ON THE SEARCH RESULTS PAGE, to change the background color to black? and also to center the search results. Thanks
Announcement
Collapse
No announcement yet.
I just want to change the background color of the search results page. HELP?
Collapse
X
-
The search_template.html page is just like an ordinary HTML page. So you would change those things (background colour, positioning, etc.) like how you would with any other web page of your site.
The most common method is by changing the CSS. You can add or modify a CSS line such as:
.body { background-color: black; }
Or simply link to your CSS file.
More information in the FAQ here:
Comment