There are a few ways you might tackle this, but custom CSS is often a nice way to go, both because it’s “safer” than custom PHP and because you can easily tweak it to achieve a better fit. Plus, most themes make this really easy: simply navigate to Appearance ‣ Customize ‣ Additional CSS and add your code 🙂
/* Remove the titlebar area on forum archive pages */
.bbpress.forum-archive #page-titlebar {
display: none;
}
/* Retain some whitespace for consistency with other pages */
.bbpress.forum-archive #site-content {
margin-top: 75px;
}
In this case, perhaps some rules like I’ve listed above could be a nice starting point?
you might want to do some further styling
bbp style pack
Thank you both! The CSS did the trick and yes, I would like to be a bit more stylish.
Things are looking much better (check the link again), but I am having trouble changing the color of the bbPress sidebar. I’m using the bbPress specific sidebar from ‘bbPress WP tweaks’ and it doesn’t seem very customizable.
CSS is still a bit mysterious to me, but it seems that I should be able to have a snippet that changes the background color for this particular widget.
I figured it out with this:
.sidebar-primary { background: #ffe6d1; }