• How can I take the sidebars off my blog.

    I need to make landing pages for specific topics, and have just a header and then text going down the page.

    I want to take out all of the post information, and the comments thing and calendar, all the ‘Bloggy’ stuff.

    Is there a way of doing this in some sort of graphical interface or do I have to alter the style.css?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Find out how to access the elements that contain those things that you don’t want to show and add a display:none; to their css code.

    Or, comment out the call to the sidebar.php file if everything in there is stuff you don’t want…
    from:
    <?php get_sidebar(); ?>

    to:
    <?php /*get_sidebar();*/ ?>

    would eliminate the sidebar altogether.

    HTH

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to make my blog look like a webpage’ is closed to new replies.