I am using the Painter theme and would like to add a simple line between my posts in the burgundy color (#a11313) to match my blog, Coupons, Crafts and Causes. I'm in need of the code and instructions of where to put it.
Thanks, Kelly
I am using the Painter theme and would like to add a simple line between my posts in the burgundy color (#a11313) to match my blog, Coupons, Crafts and Causes. I'm in need of the code and instructions of where to put it.
Thanks, Kelly
in style.css of your theme, find:
/**********************************************************************
Posts
**********************************************************************/
<hr />
.post
{
clear:both;
margin:0px 0px 10px 0px;
padding:10px 10px 14px 10px;
}
remove the invalid <hr /> from the styles (html is not allowed in a stylesheet) and add something like this instead:
#content .post
{
border-bottom: 1px solid #a11313;
}OMG!!! You are awesome!!! Thank you SO much!! I've worked for hours trying to figure this out!
Have a great day!! :)
You must log in to post.