<?php $querycat=mysql_query("Select * from categories order by category"); echo mysql_error(); while($rowpcat=mysql_fetch_array($querycat)){ $adr=str_replace(" ","-",$rowpcat['category']); echo "<div class='clink'><a href='".$site.$path."c/$adr/1/'>$rowpcat[category]</a></div>"; } ?> PHP: Currently The nav is displaying categories vertically, looking to change it so they show diagonally.