Recent Topics

1 Mar 27, 2005 18:43    

I'm using the custom skin and I've been trying really hard to place the date and time together by messing with the code in the _main.php page but it only gives me errors. I've also tried removing the lines above and below the date but was only successful in removing the one above the date. Preferably i would like the title of the post first, than the date and time underneath. Are there any hints you could give
me?

My results thus far: http://anniewayz.com/a/

I'd like it to look something like this: http://tin-men.net/blog/

help?

2 Mar 27, 2005 19:39

Goto you _main.php file
Look for

<?php // ------------------------------------ START OF POSTS ----------------------------------------
	if( isset($MainList) ) $MainList->display_if_empty(); // Display message if no post

	if( isset($MainList) ) while( $Item = $MainList->get_item() )
	{
		$MainList->date_if_changed();
	?>


replace it with :

<?php // ------------------------------------ START OF POSTS ----------------------------------------
	if( isset($MainList) ) $MainList->display_if_empty(); // Display message if no post

	if( isset($MainList) ) while( $Item = $MainList->get_item() )
	{
?>

look for :

$Item->issue_time();


change it with

<?php $Item->issue_date(); ?>
			&bull;
			  <?php $Item->issue_time(); ?>

3 Mar 27, 2005 23:37

thx so much!! that's exactly what i wanted ^_^!

4 Jul 04, 2006 20:39

That helped me out too!


Form is loading...