![]() |
| | LinkBack | Themen-Optionen | Thema durchsuchen | Thema bewerten | Ansicht |
|
#1
| |||
| |||
Vieleicht ist meine Frage ganz simple. Aber ich komme einfach nicht weiter. Ich brauche 3 Content Spalten. Schaffe es aber nur im Normal den Content anzeigen zu lassen <!-- ###SUB_CONTENT### begin--> <!-- hier den Inhalt rein... --> <!-- ###SUB_CONTENT### end --> und den Rand: <!-- ###SUB_CONTENT_MARGIN### begin--> <!-- hier den Rand Inhalt rein --> <!-- ###SUB_CONTENT_MARGIN### end --> Mit Links und Rechts schaffe ich es einfach nicht. Bitte hilft mir. Danke. |
| Sponsored Links |
![]() TYPO3 Forum.net empfiehlt domainFactory als Hoster! |
|
#2
| |||
| |||
| das musst du im template via typoscript definieren. hier mal kurz der code: Code: #Content Normal marks.DEIN_MARKER = CONTENT marks.DEIN_MARKER.select.where = colPos = 0 #Content Rechts marks.DEIN_MARKER = CONTENT marks.DEIN_MARKER.select.where = colPos = 2 |
|
#3
| |||
| |||
| Danke für die schnelle Antwort. Das habe ich jetzt im SETUP reingeschrieben: #Content Normal marks.CONTENT = CONTENT marks.CONTENT.select.where = colPos = 0 #Content Rechts marks.RECHTS = CONTENT marks.RECHTS.select.where = colPos = 2 #Content Links marks.LINKS = CONTENT marks.LINKS.select.where = colPos = 1 Und im TEMPLETE selbst ###CONTENT### ... ###LINKS### ... ###RECHTS### ... Funktioniert aber nicht. Könntest Du mir weiterhelfen? Bitte. ![]() |
|
#4
| |||
| |||
| also, zunächst mal darfst du keinen marker verwenden, der CONTENT heißt. der ist typo3-intern reserviert. nimm stattdessen halt NORMAL oder so was. um dir wirklich helfen zu können, musst du mal kurz "die hosen runterlassen": poste mal deinen kompletten TS-code. |
|
#5
| |||
| |||
| Versuch's mal so: Code: seite = PAGE
seite.typeNum = 0
seite.stylesheet = fileadmin/wilkens.online.de/css/wilkens.css
seite.10 = TEMPLATE
seite.10 {
template = FILE
template.file = fileadmin/index_tschechisch.html
#Content Normal
marks.NORMAL < styles.content.get
#Content Rechts
marks.RECHTS < styles.content.getRight
#Content Links
marks.LINKS < styles.content.getLeft
} maxhb |
|
#6
| |||
| |||
| :lol: :lol: :lol: DANKE!!!! Das habe ich gesucht! Vielen Dank. :D |
|
#7
| |||
| |||
| so, dann wollen wir mal: Code: template = FILE template.file = fileadmin/index_tschechisch.html Code: workOnSubpart = DOKUMENT Code: marks.RECHTS = CONTENT
marks.RECHTS {
select.where = colPos = 0
table = tt_content
select.orderBy = sorting
} |
![]() |
| Themen-Optionen | Thema durchsuchen |
| Ansicht | Thema bewerten |
| |
Ähnliche Themen | ||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| Galerie: Thumbnails rechts, Bilder Normal-Spalte | stevan | Extension suchen und neue vorschlagen | 13 | 13.07.07 14:32 |
| BE user kann nur Content in Spalte Normal anlegen | ghoti | TYPO3 4.x Fragen und Probleme | 2 | 23.12.06 11:18 |
| rechts links rand | sister | TYPO3 4.x Fragen und Probleme | 7 | 30.06.06 10:56 |
| IE zeigt mittleren div (Content-Normal) falsch an. | dersven | HTML & CSS | 2 | 28.05.06 11:34 |
| normal und rechts-spalte dynamisch verbinden | stefansvw | TYPO3 3.x Fragen und Probleme | 4 | 31.10.05 12:35 |