Okee, het is een ingewikkeld verhaal. De code die ik nu heb ziet er als volgt uit:

	<td width="20%">
   <?php if (($this->item->params->get('show_section') && $this->item->sectionid) || ($this->item->params->get('show_category') && $this->item->catid)) : ?>
	<?php if ($this->item->params->get('show_section') && $this->item->sectionid && isset($this->item->section)) : ?>
		<?php if ($this->item->params->get('link_section')) : ?>
			<?php echo '<a href="'.JRoute::_(ContentHelperRoute::getSectionRoute($this->item->sectionid)).'">'; ?>
		<?php endif; ?>
		<?php echo $this->escape($this->item->section); ?>
		<?php if ($this->item->params->get('link_section')) : ?>
			<?php echo '</a>'; ?>
		<?php endif; ?>
			<?php if ($this->item->params->get('show_category')) : ?>
			<?php echo ' - '; ?>
		<?php endif; ?>
	<?php endif; ?>
	<?php if ($this->item->params->get('show_category') && $this->item->catid) : ?>
		<?php if ($this->item->params->get('link_category')) : ?>
			<?php echo '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug, $this->item->sectionid)).'">'; ?>
		<?php endif; ?>
		<?php echo $this->escape($this->item->category); ?>
		<?php if ($this->item->params->get('link_category')) : ?>
			<?php echo '</a>'; ?>
		<?php endif; ?>
	<?php endif; ?>
<?php endif; ?>
    </td>
    
    
     &nbsp; <td="80%">
<b> <a href="<?php echo $this->item->readmore_link; ?>" class="contentpagetitle<?php echo $this->escape($this->item->params->get( 'pageclass_sfx' )); ?>">
		<?php echo $this->escape($this->item->title); ?>
	</a> </b>
	<?php else : ?>
		<?php echo $this->escape($this->item->title); ?>
	<?php endif; ?> <br /> 
	<?php if ($this->item->params->get('show_create_date')) : ?>
	<?php echo $Tijd; ?>
    <?php endif; ?> | <?php if (($this->item->params->get('show_author')) && ($this->item->author != "")) : ?>
		<?php JText::printf(($this->item->created_by_alias ? $this->item->created_by_alias : $this->item->author) ); ?>
 | 0 reacties </td>


Mijn bedoeling is eigenlijk:
 Categorie: Titelvanmijn eigenartikel 


en dan strak onder titel
 11:22 | Liptem Jongles | 0 reacties 


als iemand mij een code kan geven dat ik hem er zelf in kan zetten graag. Ben niet zo thuis in de tables, maar wat ik tot nu toe zelf doe:

<td width="20%"> -> categorie
<td width="100%"> -> voor titel en daaronder.

Bitte help!
kan het trouwens zijn dat me website langzamer door alle php tags word?
Ja, omdat je elke regel php opent en sluit wat onnodig is.

Kijk even hoe Oetzie het precies gedaan heeft. dat is namelijk een stuk sneller
hmms maar dan moet ik al mijn html gaan echo'en dat is best veel werk. Iemand nog suggesties hoe ik mijn probleem kan oplossen.
je hoeft je html niet perse te echoen (niet alles in ieder geval)

als ?> en <?php achter of onder elkaar staan zonder html ertussen dan kan je die 2 al weghalen.

<?php
//hier je condities of iets dergelijks
while(blablabla)
{
?>
<div>
<!-- of andere html inhoud -->
</div>
<?php
en dan verder met php.
?>


dit kan ook. als je alles echo'en te erg vind.

Reageren