Spalte -Letzter Beitrag- verschwinden lassen
Verfasst: 12.08.2009 11:12
Wie kann man die rechte Spalte (letzter Beitrag) in den Foren und Unterforen verschwinden lassen ? 

phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
<dd class="lastpost"><span>{L_LAST_POST}</span></dd>
Code: Alles auswählen
<dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
<!-- IF not S_IS_BOT --><a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a> <!-- ENDIF --><br />{topicrow.LAST_POST_TIME}</span>
</dd>
Öffne die forumlist_body.html und finde:alaaedin hat geschrieben:1.) Nun sind aber noch die letzten Beiträge in der Forumsübersicht zu sehen.
Wie macht man diese unsichtbar ?
Code: Alles auswählen
<dd class="lastpost"><span>{L_LAST_POST}</span></dd>
Code: Alles auswählen
<dd class="lastpost"><span>
<!-- IF forumrow.LAST_POST_TIME --><dfn>{L_LAST_POST}</dfn> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}
<!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a> <!-- ENDIF --><br />{forumrow.LAST_POST_TIME}<!-- ELSE -->{L_NO_POSTS}<br /> <!-- ENDIF --></span>
</dd>
Finde in der content.css:alaaedin hat geschrieben:a) Forennamen und Beschreibungen zu zentrieren
b) Themen in den Foren zu zentrieren
Code: Alles auswählen
ul.topiclist dt {
display: block;
float: left;
width: 50%;
font-size: 1.1em;
padding-left: 5px;
padding-right: 5px;
}
Code: Alles auswählen
ul.topiclist dt {
display: block;
width: 100%;
font-size: 1.1em;
padding-left: 5px;
padding-right: 5px;
}
Code: Alles auswählen
dl.icon dt {
padding-left: 45px; /* Space for folder icon */
background-repeat: no-repeat;
background-position: 5px 95%; /* Position of topic icon */
}
Code: Alles auswählen
dl.icon dt {
/* padding-left: 45px; Space for folder icon */
background-repeat: no-repeat;
background-position: 5px 95%; /* Position of topic icon */
}