I would like to interchange the position of sidebar and the content of the "Default" theme.
I have changed the code to
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
......
However, the position of sidebar still keeps on the right, while the main content moves lower. I have tried to create a table but still fails.
Please advice
Thank you.