markling
Posts: 2071
Joined: 13 Jun 06
Trust:
07 May 07 10:23 pm
It's pretty hard to see what the problem is without looking at your whole page. If you want different borders, headers, font styles, background colours etc within that right div, you need to specify them. Otherwise, even though they're in another div, because they're headers, borders and font styles within the center div, they're going to inherit the properties of the center div.
Basically, if you don't tell it to do something different, it'll keep doing the same thing for *everything* inside the div.
So in your stylesheet you should also have:
Or if you're just putting stuff inside the "post" class, specify the headers and stuff for that.
P.S. You don't need to specify "block" for a div. It's a block level element already.
Hope that helps,
Mark