Speed Feed WordPress Theme

Change Background Color

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);
}

Updated on January 28, 2021

Questions and Comments are Welcome

Your email address will not be published. All comments will be moderated.

Please wrap code in "code" bracket tags like this:

[code]

YOUR CODE HERE 

[/code]