Make bbPress Forums Full Width for Sparkling WordPress theme

Hello,

as part of my website I have bbPress forums. I am trying to make the forums the full width of the page, but I am struggling to do so. Can someone help?

Thank you

Hi @80gradehalos,

I hope you are well today and thank you for your question.

You can make the forums the full width of the page by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

body.bbpress div#secondary {
  display: none;
}
body.bbpress  .main-content-inner {
  width: 100%;
}

Best Regards,
Movin