Do you want change Change Post Background Color in Blogger or blogspot ? You are right place with exact answer for your question. Now you can simple change background in blogger.
There are lot of customization in blogger Customise tab under theme but some of customization option like changing color of post background , post outer background etc. are not available. Which makes blogger difficult to customize some of the blog elements. But don't worry there is an easy way to Change Post background color , Change body background color and post-outer color and that is CSS.
Yes , CSS ( Cascading Style Sheet) is very useful tool for completely change the look and feel of the html elements. Below is the tutorial for both CSS to change background color and where to add custom CSS.
Table Of Contents
There are lot of customization in blogger Customise tab under theme but some of customization option like changing color of post background , post outer background etc. are not available. Which makes blogger difficult to customize some of the blog elements. But don't worry there is an easy way to Change Post background color , Change body background color and post-outer color and that is CSS.
Yes , CSS ( Cascading Style Sheet) is very useful tool for completely change the look and feel of the html elements. Below is the tutorial for both CSS to change background color and where to add custom CSS.
Note: These codes will turn background color to white. Change Red bold color hex value to change background color.
Table Of Contents
- CSS for changing post background color in blogger.
- CSS for changing post-outer or main-outer background color in blogger.
- CSS for changing body background color in blogger.
- CSS for changing footer background color in blogger.
- Where to add CSS in Blogger?
CSS for changing post background color
.post {
background-color: #ffffff;
}
background-color: #ffffff;
}
CSS for changing post-outer or main-outer background color
.main-outer {
background-color: #ffffff;
}
background-color: #ffffff;
}
CSS for changing blog Body background color
body {
background-color: #ffffff;
}
background-color: #ffffff;
}
.footer-outer {
background-color: #ffffff;
}
background-color: #ffffff;
}
Where to add CSS in Blogger?
- Go to Blogger > Theme > Customise > Advanced > Add CSS.
- Copy and paste desired CSS code in text box , press enter once and click on Apply to Blog.