1
I recently found an easy way to control how my blocks show individually.
here it is....
Quote:
<{$block.title}>
<{$block.content}>
Every block has an id once saved, so in my rightblocks.html template, I add a class to my title div and one class to my content div (could also be an id instead of a second class, whatever suites you)
In the example above the title has the block<{$block.id}> class
and the content area has the content<{$block.id}> class
So now if we examine the webpage's html we can see the actual class names of every block, and write the css for each one of them individually. :) while maintaining the basic characteristics of the primary classes.
I hope it helps someone.