please, please help - i'm trying to get a page to display 10 posts of a category 33. and i've had absolutely no luck (despite hours of trying!). any help would be so so so appreciated. here's the coding:
<div id="gallery">
<?php query_posts($query_string . '&cat=33'); ?>
<div class="content">
<?php if(have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<div class="date">
<?php the_date(''); ?>
</div>
<div class="title">
<?php the_title(''); ?>
</div>
<div class="entry">
<?php the_content(''); ?>
</div>
<?php endwhile;?>
<?php endif; ?>
</div>