1
0
-1

I'm using layout 109. How do I hide the sidebars so there is no padding added?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      You can hide and change the width of the sidebar by adding the following CSS to Website > Custom CSS:

      /*===============
      SIDEBAR RIGHT  
      ===============*/
      
      
      #content tbody td#right {
      width: 0px;
      display: none;
      }
      
      
      /*===============
      SIDEBAR LEFT 
      ===============*/
      #content tbody td#left {
      width: 0px;
      display: none;
      }
      
      
        CommentAdd your comment...