> I think with css is everything ok.
No, it's not OK at that test site (which uses different CSS than what
you posted). You have
#inhalt { PADDING-BOTTOM: 30px; MIN-HEIGHT: 400px; PADDING-LEFT: 0px;
WIDTH: 580px; PADDING-RIGHT: 40px; FLOAT: left; BORDER-RIGHT: #ccc 1px
dotted; PADDING-TOP: 0px }
and
.content_toggle { BACKGROUND-COLOR: red; WIDTH: 920px; BORDER-RIGHT:
#ccc 1px dotted }
The id selector will overrule the class selector. In your first post,
you represented them as both class selectors, which is why Ryan and I
pointed out the order.
#inhalt.content_toggle { BACKGROUND-COLOR: red; WIDTH: 920px;
BORDER-RIGHT: #ccc 1px dotted }
will be more specific than #inhalt and will do what you want.
It's still a CSS problem, not a Moo problem.
-- Sandy