Archived topic
Background Color Inside Content Area
3 replies · Started by bluebit on October 31, 2015
On my site: http://www.bellezacolombia.com
I'd like to change the background color inside the content area and the spacing around the boxes from white to yellow, how do I do this with changing the base background color that its on the outside edges of my webspage? I want the sides of my website to be white.
Hi there,
Give this CSS a try:
.site-content {
background-color: #fcce35;
}
Awesome that worked. I changed the colors a little bit more :), how do I make the right red sidebar have some blue padding to the right? http://www.bellezacolombia.com
This should do it:
.site-content {
padding-right: 15px;
}
