Viewing 3 replies - 1 through 3 (of 3 total)
  • The sidebar code (or plural if your theme supports multiple sidebars) will be invoked in several different files depending on your theme.

    In your theme folder, edit the index.php file and delete the div called ‘sidebar’ (or everything in between that div’s opening and closing tags)

    One of your theme’s files:

    <body>
      <div id="wrapper">
        <div id="page">
          <div id="header"></div>
          <div id="main">
             <div id="content"></div>
    
             <div id="sidebar">
                  <div class="sidebar-box"></div>
                  <div class="sidebar-box"></div>
                  <div class="sidebar-box"></div>
                  <div class="sidebar-box"></div>
             </div>
    
            <div class="clear"/></div>
          <div id="footer">
    ...

    would become

    <body>
      <div id="wrapper">
        <div id="page">
          <div id="header"></div>
          <div id="main">
             <div id="content"></div>
            <div class="clear"/></div>
          <div id="footer">
    ...

    You could search your theme files for all instances of ‘sidebar’…

    Thread Starter rsaldana2008

    (@rsaldana2008)

    Great!!

    your so awesome musnake!!

    By the way…is there a way I can center the post? and take out the comments?

    Thread Starter rsaldana2008

    (@rsaldana2008)

    actually…

    I changed my theme again because I found the other one wasn’t going to accomplish what i needed. I finally made up my mind after 10 tries? ..ahaha

    Thanks for your help!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘remove side bar.’ is closed to new replies.