Quote:
|
After weeks on this I found the answer. I'm already thinking of switching back to tables!! CSS is drving me nuts!!
|
Hahah, css is actually incredibly useful and simple once you learn it

.
For your "comments" elements, you could simply do something like this:
Of course, this is just mock code, but it gives you an idea of what you
could do. If you piece together the background into a few blocks, then it won't clutter up your markup at all. The 'header' div will have the background for the top part of the block, the body will have the repeating side borders, and the footer will have the rounded corner.
Also, in your document, you were using
IDs where you should've been using
classes. IDs should only be used when the element is unique - when there will only ever be one of them on a page (ie. a footer, or a main navigation block.) A class should be used when there may be more than one (ie. a comment on a post, a gallery image.)
Hope that helps...and convinces you to stick with css!
