Notifications
Clear all

wpForo 1.x.x [Solved] Make forum full width

6 Posts
2 Users
1 Likes
1,976 Views
Posts: 7
Topic starter
(@60minuteman)
Active Member
Joined: 5 years ago

I am a total beginner on wordpress so sorry if this is a daft question.

I use wpforo forums on my site which uses the shuttle theme. I would like the forum to display full width like this forum does. Is there any way to achieve this without affected the look of the other pages on my site.

Here is my site https://atstradingsolutions.com/forum/

 

5 Replies
Sofy
Posts: 4233
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi@60minuteman,

This issue comes from your current active theme. Some div elements have unnecessary value for the max-width property.

To solve it, just navigate to Dashboard > Forums > Setting > Styles admin page, put the following CSS code in "Custom CSS code" textarea, save it, delete all caches and check again. 

div#content-core, .elementor-section.elementor-section-boxed>.elementor-container {
max-width: none !important;
}
.elementor-4751 .elementor-element.elementor-element-158e1c03 {
padding: 0 !important;
}

Don't forget to press Ctrl+F5 (twice) on the forum frontend before checking to reload the updated CSS file.     

1 Reply
(@60minuteman)
Joined: 5 years ago

Active Member
Posts: 7

@sofy

perfect, thank's... looks great now

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

slightly off topic, but there wouldn't be a way of removing my themes ugly banner title too?

 

 

2 Replies
Sofy
 Sofy
Admin
(@sofy)
Joined: 6 years ago

Support Team
Posts: 4233

@60minuteman

I think there should be an option in the active theme. If you're not able to find the option, please use the following CSS code. It should help you to hide that section:

div#intro {
display: none !important;
}

The code should be added in "Custom CSS code" textarea. 

(@60minuteman)
Joined: 5 years ago

Active Member
Posts: 7

@sofy

once again.... thank's!