I want to differentiate .content in right-sidebar and left-sidebar so I can apply different .css. How?
Generally each region has an outer div with a unique id, something like <div id="left-sidebar">...</div>. You can then use that id to apply different styling to .content like this
<div id="left-sidebar">...</div>
#left-sidebar .content { ... your css rules go here }
Get yourself Firebug (http://www.getfirebug.com). It will help you to identify all the div id's and classes used.
----------------------------------------- Joep CompuBase, Drupal websites and design
Comments
Generally each region has an outer div
Generally each region has an outer div with a unique id, something like
<div id="left-sidebar">...</div>. You can then use that id to apply different styling to .content like thisGet yourself Firebug
Get yourself Firebug (http://www.getfirebug.com). It will help you to identify all the div id's and classes used.
-----------------------------------------
Joep
CompuBase, Drupal websites and design