Can I use multiple body classes in my css? This doesn't seem to work for me. I'd like to have css that targets the home page only if it is a static page... and so not if it is the default blog index. Basically on a static home page I will remove the widget asides and go full width, but leave the asides in place for a blog. I thought that:
.home .page #content {
}
would let me control the #content on a static home page, but no luck. Same w/ .page .home.
any insight on to how to tackle this? Should I just apply a template to be able to use that body class? Seems unnecessary otherwise.