• Hello,

    Does anyone know how I can remove the left (black) sidebar in all of the forum pages and let the forum fill up that space?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Bellow are the code lines I used in my child theme for removing the left sidebar. I strongly recommend to have a child theme for making this changes.
    My new space is 620px instead of 470px. Where you see this number 65.95744680851064%, is the operation of 620/940. 940px is the full width of the theme. This mean that if your new desired space is 700px, you have to put the number given by 700/940.

    .content-wrap {
    	float: left;
            width: 100%;
    } 
    
    .featured-wrapper {
    	float: left;
    	width: 65.95744680851064%;  /* 620 / 940 = 0.6595744680851064 */
    } 
    
    .aside {
    	float: right;
    }
    
    #content {
    	float: left;
    	width: 65.95744680851064%;	/* 620 / 940 = 0.6595744680851064 */
    }

    Maybe you will encounter some problems after changing your theme to 2 columns (like post thumbnail remaining at old size, etc.). You can resolve that problems also.
    Try this lines above, and let know if it worked.

    Thread Starter murielconen

    (@murielconen)

    Hi mihaigiurgiu,

    Thanks for the solution but I only want it on the forum pages not on my blog. Do you know what I can do?

    You can insert a link of your site for a real view.

    At every page you have an option (in a right panel) to select ”full width” for the page. This will remove all sidebars for the page you hit the option.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I remove left sidebar in my forum (bbpress)’ is closed to new replies.