I'm trying to figure out how to theme just the block of a certain view which has more than one display type. I understand that there are tons of CSS classes for things (i.e. .view-myview) but is there such a class as something like ".view-myview-block"? I would like to style my block display without affecting the other displays... I wouldn't have to make an entirely new view would I?
Thanks in advance for any help you guys can give me.

Comments

zbricoleur’s picture

I believe you'll find that the block is wrapped in a div with a unique ID.

nevets’s picture

The Firefox extension firebug is useful for finding classes and ids.

Geijutsuka’s picture

Ah! Firebug, inspect element— yes I see the class of just that block now. I'm embarrassed I didn't think of that...
Thanks guys!