Hello, I would like to remove the default background image (then remove top-body.png and bottom-body.png) and replace it with a simple gray background color, what should I do? Thanks
margob
You can try with this custom CSS:
.t4-content, .t4-content:before, .t4-content:after { background-image: none !important; } .t4-content { background-color: #f5f5f5 !important; }
and change to your desired color.
saguaros Hello, yes, It works perfectly, thanks