I don't know what you think about with your first question, but the posts are open for comments (but no comments posted yet).
I've made category templates which are used to display all "blog" posts. I've pasted one of these below. All are equal apart from the initial lines.
Just to explain what this is about:
The site I'm building will be a WP version of the Italy guide dolcevita.no - for now "hidden away" on dolcevita.no/wp. Each category will display posts about local places in each Italian region. So, as you understand, I'm trying to use WP as a CMS.
If I can't make the sidebar appear in this theme (Remix - a purchased premium theme), maybe I will have to use another?
Thanks for taking your time
Kjetil
-----
The Piemonte category template - category-4.php:
<?php
/*
Template Name: Category 4 Piemonte
*/
?>
<?php get_header(); ?>
<div id="center">
<div id="center-in" class="blog">
<div class="clearfix">
<?php while(have_posts()) : the_post(); ?>
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="post-date clearfix">Posted by <?php the_author(); ?> on <?php the_time('F jS, Y') ?></div>
<?php the_content('Read more...'); ?>
<?php edit_post_link('Edit', '<p>', '</p>'); ?>
<!-- <?php trackback_rdf(); ?> -->
<div class="post-footer cleafix">
<span class="post-cat"><?php the_category(', ') ?></span>
<span class="post-comments"><?php comments_popup_link('Post a comment', '1 Comment', '% Comments'); ?></span>
</div>
<?php endwhile; ?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php next_posts_link('« Older posts'); ?></div>
<div class="nav-next"><?php previous_posts_link('Newer posts »'); ?></div>
</div>
</div>
<br clear="all" />
</div><!-- end #center -->
</div><!-- end #center-in -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>