So jetzt hatte ich mal wieder ein bisschen, Zeit, ist nicht genau, was du wolltest aber so ungefähr und du kannst halt ja auch noch selbst Änderungen machen, du musst aber halt beachten, dass die News eine feste Größe haben und nicht zu lang sein dürfen!
Hier der Anfang der news.htm
<div class="news">
<div class="banner">{kate}</div>
<div class="text">
<a class="title" href="index.php?news-{id}">{title}</a>
<br /><br />
{text}
<br /><br />{readwholenews}
</div>
<div class="footer">
<div class="author">Author: <strong>{username}</strong></div>
<div class="koms">Kommentare: <a href="index.php?news-{id}">{kom}</a></div>
<div class="date"><strong>{datum}</strong></div>
</div>
</div>
{EXPLODE}
<div class="clear"></div>
<br />
<br /><center>{SITELINK}</center>
{EXPLODE}
Und dann noch etwas, was in die style.css eingefügt werden muss.
/* News */
.news {
width: 400px;
height: 400px;
overflow: hidden;
float: left;
margin: 0 6px 10px 0px;
}
.news .banner {
height: 56px;
}
.news .text {
padding: 15px 0 0 5px;
height: 300px;
width: 300px;
}
.news .text a.title {
text-decoration: none;
font-weight: bold;
}
.news .footer {
height: 20px;
width: 380px;
margin: 3px auto;
background: #E2E2E2;
padding: 3px 2px 0 4px;
}
.news .footer strong, .news .footer a {
color: #005BB7;
text-decoration: none;
font-weight: bold;
}
.news .footer div {
width: 33%;
text-align: left;
float: left;
}