Remove Number From Magazine Code

Hi,

I copied a piece of code from a magazine to display a twitter feed however it adds a number to each tweet. I am trying remove the number however whatever I try it cretes an error. Does anyone know how to remove the numbering.

		<div id="twittercell">
<ol>
<?	

$feed = json_decode(file_get_contents('https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=example&count=5'));


$pattern = "/http:\\/\\/(www\\.)?([^.]+\\.[^.\\s]+\\.?[^.\\s]*)/i";
$replace = "<a href='http://\\\\1\\\\2'>http://\\\\1\\\\2</a>";

foreach($feed as $output) {

?>
	<div id="twittercellinner">
	<li>
<?	
echo preg_replace($pattern,$replace,$output->text);
?>
	</div>
	</li>
<?	

}
?>
</ol>
	</div>			

Can you show us the output and what number you are referring to.

You sure it’s not a CSS property that needs to be added?

ol{ list-style: none; }

Brilliant thanks,

That worked a treat.