I am trying to use the following code to show 1 post from a selected number of category's whilst remaining in the grid, which is the bpr etc. code...
<?php
$c = 1; //init counter
$bpr = 3; //boxes per row
if(have_posts()) :
query_posts('cat=9,12,13,14,15,16,17&showposts=7');
while(have_posts()) :
the_post();
?>
how would I go about doing this?
Thanks