Hi Jenn, do you have a link so I may see where the problem lies? I’m sure it can be fixed with a bit of css.
Hi Ernest,
the site is http://www.grindproent.com/
I would like to change the white background to another colour also on the pages http://www.grindproent.com/contact-us/ and posts http://www.grindproent.com/make-me-a-star/
Thanks in advance.
Hi Jenn, to change the color for all the pages and posts use this in your css plugin:
#content {
background-color: #F80E0E;
}
Now you will notice a 1px white border at the bottom of the content. If you want to remove or change this, it is set on the article in the hentry class like below:
.hentry {
padding-top: 3em;
padding-bottom: 3em;
border-bottom: 1px solid #f6f6f6;
}
To change it do this:
.hentry {
border-bottom: 1px solid #F80E0E;
}
or any other color of your choice.
Let me know if this works for you.
Kind regards
Ernest Close
Worked Perfect!! Thanks for your help!