Pagina 1 van 1

Posts kleuren

Geplaatst: 05 mei 2004, 20:38
door micha3L
Om de post staat de post in een andere kleur .. ik wil dit gewoon allemaal in row1 houden .. hoe kan ik dit instellen?

Geplaatst: 05 mei 2004, 21:09
door WebSiteNet
OPEN viewtopic.php en vind rond lijn 1147:

Code: Selecteer alles

	//
	// Again this will be handled by the templating
	// code at some point
	//
	$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
	$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
Vervang met:

Code: Selecteer alles

	//
	// Again this will be handled by the templating
	// code at some point
	//
	$row_color = $theme['td_color1'];
	$row_class = $theme['td_class1'];