first of all, i just want to say thank you for releasing such an incredible theme! i'm tinkering with the free version to see how it works for my site, modified tons of stuff very easily, planning to upgrade to your premium version provided my site gets *at least* a tiny bit of traffic ;)
...but the most unusual bug has appeared and it is simply beyond me. here's the summary:
i've attempted to copy the code for the category bar into the top of post and page and archive (single and page and archive.php respectively) - but once i do this, every single link on the entire site redirects to the exact same (randomly selected) url/permalink. what i mean is that nothing crashes, nothing breaks, but rather you click on *any* article/page/category link on the site and the "permalink" in url bar is just fine, but the actual page displayed is a randomly selected post - and that same exact post appears for 100% of all links - any thoughts? here's the precised code that i'm pasting, which is exactly what you've written - unmodified - and pasting into header.php (and also tried below header in page.php, single.php etc, but same thing happens every time!!!)
<div id="middle" class="clearfloat">
<h3>browse categories >> </h3>
<?php $display_categories = array(12,6,7,8,9); $i = 1;
foreach ($display_categories as $category) { ?>
<div id="cat-<?php echo $i; ?>" class="category">
<?php query_posts("showposts=1&cat=$category")?>
<span class="cat_title">"><?php single_cat_title(); ?></span>
"><?php echo category_description($category); ?>
</div>
<?php $i++; ?>
<?php } ?>
</div>
...should some element of this be removed to prevent infinite references to a single post? and how on earth is that random post selected for all redirects! so strange...confounding...any insight appreciated