some wordpress and css trickery, did this recently.
some designers add a class to the last item in tube designs
example to 4th item (last video in the row)
Code:
<div class="video last">
code here
</div>
this will help you do this in wordpress
Code:
<div class="video<?php if (!((1+$wp_query->current_post) % 4)) echo ' last' ?>">