Drupal 6 Views 2 custom theming
Views 2 combined with CCK is by far if not the best drupal modules out there. Gone are the days of tedious query writing and pagination coding.
The only issue that I’ve had trouble with using Views 2 is that even though Views does offer several options displaying all that wonderful content, you can’t always get it to show just how you want it to using CSS.
Enter the wonderfull world of the Drupal override system. After Googling around for a bit I found out that it’s actually remarkably easy to override those default views templates. All that you need to do is find the views-view-style.tpl.php file under /sites/all/modules/views/themes/*.
Copy that file to your theme folder and rename it to views-view-style–your-view-name.tpl.php.
Note the two dashes before your view name. That’s about it. I’d recommend doing a print_r($variable) in there to see what you have available. From what I understand you can override just about every file in the views/theme folder. Have fun making freaking awesome views!