• Resolved jcoles

    (@jcoles)


    Hi;

    I’m trying to run my blog (posts) page as tidy as possible. Is there a way to remove the sidebar?

    Many thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • I may not be the best person to ask, but from what I’ve seen, you should just be able to comment out the code in the “sidebar.php” class under your editor, and it should go away! This is similar to what I did on my site.

    Just place “/*” at the top of the file, and “*/” at the bottom.
    Let me know if it works!

    Thread Starter jcoles

    (@jcoles)

    Hi aidancbrady;

    Didn’t seem to work for me. Thanks, though…

    Theme Author Fruitful Code

    (@fruitfulcode)

    We will decide to add options for controlling sidebars in next theme version.

    At the moment you can remove sidebar on single page via source code editor.

    single.php

    Remove or comment this

    <div class="five columns omega">
    	<?php get_sidebar('blogright'); ?>
    </div>

    In custom css, change the width

    .blog_post .post-content {
    width: 884px;
    }

    If sidebar will be appear on archives, category pages.

    Edit archive.php and category.php in same way

    Hi,
    I’m new in the world of wordpress, I’m trying to remove the sidebar, I follow your instructions. I removed the code:

    <div class="five columns omega">
    <? php get_sidebar ('blogright');?>
    </ div>

    from the file single.php
    in the css file, I have not found. blog_post. {post-content
    width: 884px;} to change the width.

    thank you for the help

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Hi!

    What if I want to do the same for a single page?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Single column posts page (no sidebar)’ is closed to new replies.