To change the background color of the overall site for the Speed Feed WordPress theme, add the CSS for your desired background color to your site.
(How to add CSS to your site.)
Below are some sample colors. Note that each sample has the CSS code that you must add to your site to get that background color for your site.
Background Color Samples
Neutral Grayish
CSS
1 2 3 | body { background-color : #EBEAE3 ; } |
Yellow-blue Gradient
CSS
1 2 3 4 | body { background-color : #49B7D4 ; background-image : linear-gradient (to left , #49B7D4 , #ECE853 ); } |
Questions and Comments are Welcome