How do I evenly space text on sidebar? [SOLVED]

My sidebar currently looks like this, and I’d like to evenly space the text.

 

Id like for my sidebar to be evenly spaced like this. 

 

I am clueless, and don’t know how to space the text. Any help would be greatly appreciated, thanks! Website here

Heres my frontpage_recentpilots.php

\<?php if(!defined('IN\_PHPVMS') && IN\_PHPVMS !== true) { die(); } ?\> \<?php foreach($pilot\_list as $pilot) { ?\> \<p\> \<a href="\<?php echo url('/profile/view/'.$pilot-\>pilotid);?\>"\> \<?php echo PilotData::GetPilotCode($pilot-\>code, $pilot-\>pilotid).' '.$pilot-\>firstname.' '.$pilot-\>lastname ?\> \<?php echo '\<img src="'.Countries::getCountryImage($pilot-\>location).'" alt="'.Countries::getCountryName($pilot-\>location).'" /\>'; ?\> \<?php echo date(DATE\_FORMAT, strtotime($pilot-\>joindate)); ?\> \</a\> \</p\> \<?php } ?\>

 

Put it in a table

1 Like

5 hours ago, flyalaska said:

Put it in a table

thank you!