[QUOTE=OcR Envy;1978198]Find:
PHP Code:
$output .= '<center>';
if($image != '') $output .= "<img src='".$image."' width='".$width."px' height='".$height."px' /><br />";
$output .= "<a href='content.php?".$nodeid."-".$url."'>".$title."</a><br /><p>Publish Date: ".$date."</p></br></center><p>".$text." <a href='content.php?".$nodeid."-".$url."'>(more)</a></p><br />";
Replace with something like this:
PHP Code:
$output .= '<div style="float: right; width:255px;">';
if($image != '') $output .= "<img src='".$image."' width='".$width."px' height='".$height."px' style="float: left;" /><br />";
$output .= "<a href='content.php?".$nodeid."-".$url."'>".$title."</a><br /><p>Publish Date: ".$date."</p></br><p>".$text." <a href='content.php?".$nodeid."-".$url."'>(more)</a></p><br /></div>";
Hello I tried this and it just came up as an error has anyone else got it to work with the picture on the left and text on the right??
I also only want picture and title to show, everything else removed including read more
HELP PLEASE ANYONE