> .content_toggle {
> width:920px;
> background-color:red;
> }
> to
> .content {
> width:580px;
> }
> $('inhalt').toggleClass('content_toggle');
> it change the color but not the width.
Assuming the true order of the style rules was as above, you simply
added a class that was overridden by a later rule. This isn't a Moo
issue, it's a CSS issue.
-- Sandy
