[TYPO3-german] Dynamische Bilder abhängig von der Seite

Jonas Loepthien loepthien at netconsult.ch
Fri Nov 24 14:40:12 CET 2006


> Hi, ich würde mit body-ids arbeiten. Das hat den Vorteil, dass .css
> Dateien vom Browsern gecached werden und der HTML-Code sauber bleibt.
> 

Hallo Patric

Gute Idee

Ich habs jetzt so gelöst:
zu sehen auf http://customer.sylon.net/~erg/
bei 'Über uns' + 'Produkte'

TypoScript:

# #################################################################	
# Body id + class erzeugen

temp.bodytag = COA
temp.bodytag.10 = TEXT
temp.bodytag.10.field = uid
temp.bodytag.10.wrap =  <body id="pid| "

temp.bodytag.20 = TEXT
temp.bodytag.20.data = leveluid : 1
temp.bodytag.20.wrap =  class="uid|">

page.bodyTagCObject < temp.bodytag



CSS:

#seitenkopf_bild {
position: relative;
height: 66px;
background: #fff url(../bilder/seitenkopf_bild.jpg) no-repeat top left;
}

body.uid35 #seitenkopf_bild {
background: #fff url(../bilder/ueberuns.jpg) no-repeat top left;
}

body.uid31 #seitenkopf_bild {
background: #fff url(../bilder/produkte.jpg) no-repeat top left;
}



Gruss Jonas



More information about the TYPO3-german mailing list