By Geijutsuka on
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
I believe you'll find that
I believe you'll find that the block is wrapped in a div with a unique ID.
The Firefox extension firebug
The Firefox extension firebug is useful for finding classes and ids.
Ah! Firebug, inspect element—
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!