Hi Joe,
I started using WP just recently and also am using twenty seventeen. I run into the same dilemma on how to make the pages a bit wider, especially the bbPress forums.
I am completely new to CSS coding but after scouring the forums for some solutions I found this:
1. In your dashboard click Appearance>Edit CSS
2. At the end of what’s there, on a new, line insert this code:
/* wider wrapper in large screens */
@media screen and (min-width: 48em) {
.wrap {
max-width: 1200px;
}
}
You can play with the number in front of “px” to see what fits your needs.
One caveat though is that it will widen all the pages in the theme and I don’t know how to apply this code to specific pages, and I’m sure there is a way.
The beauty of this theme is that you can put this code (or any) in the CSS editor and you see the result immediately, you don’t like it, delete the code no harm done.
Hopefully this helps.
cheers
Roman
I’m also relatively new to coding with different CSS techniques so I greatly appreciate your pointing out this simple trick. It is working out spectacularly!!
Thank you for your help!!!!
This didn’t work for me. I think because I’m using a sidebar on my forum pages, this is a must for me. Is there something that can be done to reduce the margin of the sidebar and forum blocks at the same time?
Hi all – I am not having any luck getting my forums page to work full width. Have tried all sorts of css and function.php and nope – no luck.
See the forums page here:
https://hopevisionaction.org/forums/
… and any help would be very much appreciated.
Using 2017 default theme. Also using BuddyPress now.
Thanks.
Steve
via css try
.has-sidebar:not(.error404) #primary {
width: 100% !important;
}
you can set it to more than 100% if you wish !
Robin W! WOW! That was quick and easy!
THANK YOU THANK YOU THANK YOU! 🙂
Very much appreciated.
Steve
no problem, glad to have helped 🙂