I have added the new products block to my homepage using the following code
<block type="catalog/product_new" name="homepage.newproducts" as="homepageNewproducts" template="catalog/product/new.phtml">
I have also set the product and column count for this custom layout as follows
<action method="setProductsCount"><count>6</count></action>
<action method="addColumnCountLayoutDepend"><layout>homepage_layout</layout><count>3</count></action>
My question is, is there an easy way to add markup or a class or identifier to the block to enable me to style it. I know I could use the body class that magento applies and maybe the products-grid class, but what i'd really like to do is create some generic styling for 3/4/5 column grids and then be able to simply change the xml to the new column count and have that shown correctly on the frontend.
I hope that makes sense?