jacobmatthew Posted October 1, 2017 Report Share Posted October 1, 2017 (edited) 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 } ?> Edited October 1, 2017 by jacobmatthew Quote Link to comment Share on other sites More sharing options...
flyalaska Posted October 1, 2017 Report Share Posted October 1, 2017 Put it in a table 1 Quote Link to comment Share on other sites More sharing options...
jacobmatthew Posted October 1, 2017 Author Report Share Posted October 1, 2017 (edited) 5 hours ago, flyalaska said: Put it in a table thank you! Edited October 1, 2017 by jacobmatthew Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.