How to get full sidebar on comment page
-
I am using the default theme 1.5, following previous advise I did this:
WordPress default theme (Kubrick based) does not display sidebar on single post page. However with a minor change in the theme you can make it to display sidebar. This works in the default theme of WordPress 2.0 and 1.5.x.
Login as admin.
Click on Presentation / Theme Editor / Single Post.
Change the second line from:
<div id=”content” class=”widecolumn”>
to
<div id=”content” class=”narrowcolumn”>Then add this line :
<?php get_sidebar(); ?>just before the last line containing:
<?php get_footer(); ?>Sidebar fully appears on all screens expect the comment page, still only get part of the sidebar, it leaves off the links and meta list. Any suggestions how to get the full sidebar to appear?
- The topic ‘How to get full sidebar on comment page’ is closed to new replies.