[Typo3] different stylesheets depend on different positions?

Christopher bedlamhotel at gmail.com
Tue Jul 12 16:46:18 CEST 2005


HI,

On 12/07/05, Bing Du <du_bing at hotmail.com> wrote:
> Hi,
> What I'm after is the same stuff should be displayed in different size,
> font,etc. in the content area than if it's displayed in the left column.
> Can this be done using some conditions in one template or I have to
> create different templates?


Basic css, nothing really typo3-specific about this:

HTML

<div id="left">Lorem ipsum</div>
<div id="center">Dolor sit</div>
<div id="right">Amet consectetuer</div>


CSS
body { font-size:.8em; }

#left { font-size:100%; } 
#center { font-size:150%; }
#right { font-size:300%; }


-Christopher



More information about the TYPO3-english mailing list