Notifications
Clear all

wpForo 1.x.x [Solved] Forum not centering on page or using full width

4 Posts
3 Users
0 Likes
4,616 Views
Posts: 5
Topic starter
(@kybourneadmin)
Active Member
Joined: 7 years ago

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;

}

Topic Tags
3 Replies
Robert
Posts: 10499
Admin
(@robert)
Support Team
Joined: 8 years ago

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.

1 Reply
Aseize Okaztle
(@okaztle)
Joined: 7 years ago

Active Member
Posts: 8

Thanks for this, I've been wondering how to use this. 

Posts: 5
Topic starter
(@kybourneadmin)
Active Member
Joined: 7 years ago

o*g, I don't know how I missed that! THANK YOU for pointing that out. Such a simple fix 😀