Adoway
Adoway WordPress theme is a 2 columns fixed width WP template by MagPress.com. This theme has theme options, featured slider and categories, Adsense ready, etc.

Version 1.0
- initial release
Tags: Adsense Ready, Custom Homepage, Custom Menu, Featured Content, Fixed Width, Right Sidebar, Sidebar Footer, Theme Options, Threaded Comments, Twitter Ready, Two Columns, White, Widget Ready
Version and Changelog
Version 1.0
- initial release
Adoway Theme looks great.
Love that Adoway theme.
Somehow, I encountered a problem. Nomatter what Category I go, it will always show me all posts of the blog instead of the category posts.
try open index.php and replace this code
[php]<?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(‘showposts=&cat=&paged=’ . $paged);?>
<?php $postcounter = 0; if ($wp_query->have_posts()) : ?>
<?php while ($wp_query->have_posts()) : $postcounter = $postcounter + 1; $wp_query->the_post();?>[/php]
with
[php]<?php $postcounter = 0; if ( have_posts()) : while ( have_posts()) : $postcounter = $postcounter + 1; the_post(); ?>[/php]
see if its working now.