Hey guys, I've been trying to get the forum on my website to center (btw best forum plugin ever) and it's just not working for me. Could you please let me know what I'm doing wrong?
http://ufria.com/community - is the link to the forum page
I had this as custom CSS, but I can't work out what's wrong with it:
ย
#wpforo #wpforo-wrap {
ย ย font-size: 13px; width: 100%; padding:10px 20px; margin:0px;
}
#body.wpforo .entry-content.page-content, body.wpforo .entry-title.entry-title-page{
ย ย ย ย width: 1170px; ย ย
ย ย ย ย max-width: 1170px;
}
This doesn't have any relation to wpForo, this is a theme page layout issue. You're using wpForo in a right sidebar page template. I recommend edit this page and use Full Width page template. If you don't have full width template in your theme you should ask theme developers to create one for you, that's not so hard.
Also if you built this page with a visual composer make sure you've set the content wrapper with 1 column as far as I see this is 2 or 3 column layout.
As a not recommended alternative you can hide sidebar part using CSS Code like this:
.wpforo.ht_right_sidebar #primary{
ย ย ย float: none;
ย ย ย width: 100%;
}
Then delete all caches and do Ctrl+F5 on front end. In case you made it 100% you can use wpForo Sidebar in Dashboard > Appearance > Widgets admin page. please don't use this sidebar if forum doesn't have 100% width.
o*g, I don't know how I missed that! THANK YOU for pointing that out. Such a simple fix ๐