Recent Topics

1 Dec 20, 2005 19:18    

Ok, that's not the problem any longer. But I have something else...

In the first line is the date than there is some space and than there is the line with the time, category and count of words. I just want to have the date in the same line in which the other things are, but on the right.

Hope someone can help me,
thanks

>Hallo, i want to change the format of the date of the postongs on my >website( anruether.an.ohost.de) I want it in a smaller font size, lets say h5 >and in this format: 14. December 05.
>
>Thanks in advance!
>
>andreas

2 Dec 20, 2005 21:55

Open up your skins _main.php file and look for:


$Item->issue_time();


That line of code is what displays the Date, now remove what you want, you should be able to figure out what is what.

So:

The Post's Date is [<?=$Item->issue_time()?>]


OR

The Post's Date is [<?php echo $Item->issue_time();?>]


Is displaying the date, (Echo, Print and <?=, is the same as display this thing)

Now wordcount looks like:

$Item->wordcount();


And categories l ooks like:

$Item->categories();

So just look for what you want to remove and delete it, it's easy to work out after about 10minutes of going wtf ;)


Form is loading...