It would be in your theme/stylesheet.css file under the .tablebg class.
The border color around your posts is the same border color around your forums.
- Code: Select all
.tablebg {
border: solid 1px #000;
background: #313131 url(images/cell.gif) top left repeat-x;
}
You see it has a blue background color chosen and the cell.gif background image.
The blue space you see between your posts in the viewforum_body.html page is the .spacer class.
- Code: Select all
.spacer {
background: #4A6786 url(images/th.gif) top left repeat-x;
}
You could replace any of those images above and the color would change for you.
Or you could take the images out and put in whatever solid color you wanted.
But the gradiant images are nicer for a background, now matter how thin it is.
If I were you, I'd go grab a th.gif image from one of his other color choices of this acidtech style.
And I'd grab a cell.gif from one of his other color schemes and put together what you like the look of the best for your site.
Please, show us your AJAX Chat page when you get it looking the way you like it.