and +1 for the same solution. A way to randomize a choosen gallery would even be better in my case.
This is te code i use in category-txt.php
<div id="container">
<div id="content" role="main">
<ul id="CategoryTekst">
<?php sort_query_posts_by('title','asc'); ?>
<?php while ( have_posts() ) : the_post(); ?>
<li>
<h5>Code: <?php the_title(); ?></h5>
<?php the_content(); ?>
</li>
<?php endwhile; ?>
</ul>
</div><!-- #content -->
</div><!-- #container -->
Still (post names are: 00-01-xxxnl > 00-04-xxxnl) the post are not sorted correctly.
What do i do wrong?