I have just completed a project that looks similar to this:
I am wondering if there is a way to remove the line at the end of the last column? (it's within a PHP while loop)
Here is the code snippet:
<div style="border-bottom: 1px solid #cdcdcd; margin-right: 10px; margin-bottom: 5px; font-size: 10px;">
<div name="gameicon" style="width: 16px; margin-left: 5px; float: left;">
<img src="images/games/<?php echo $games['short']; ?>.gif" alt="ICON" />
</div>
<div id="game" style="width: 115px; margin-left: 5px; float: left; text-align: right;">
<b><?php echo $games['game']; ?></b>
</div>
<div style="float: left; margin-left: 15px;">
<?php echo $signs_count; ?>
</div>
<div style="float: left; margin-left: 3px; margin-right: 3px;">/</div>
<div style="float: left; color: <?php echo $site_color; ?>;">
<b><?php echo $signs_count_paid; ?></b>
</div>
<div class="clearer"></div>
</div>