Hi,
To add a side bar to a full article page, you need to modify 2 files oin your theme. Try this (homemade solution, but simple) :
– in single.php : change the class of the content DIV tag from <div id=”content” class=”widecolumn”> to <div id=”content” class=”narrowcolumn”>
– add <?php get_sidebar(); ?> just before <?php get_footer(); ?>
– in header.php : change the condition :
if ( !$withcomments && !is_single() )
to
if ( !$withcomments || is_single() )
So you include single pages in side bar formatting, the difference is the background picture.
That works on my blog.
Hope that helps.
Seif