Notifications
Clear all

wpForo 1.x.x [Closed] How to remove gaps

2 Posts
2 Users
0 Likes
509 Views
Posts: 12
Topic starter
(@walehub)
Eminent Member
Joined: 3 years ago

Hi guys I just started using this plugin about 4days ago. Here's my blog. www.walehub.com 

In this attached shot is a problem. Please I need quick answer on how to close up those pointed gaps.

1 Reply
Robert
Posts: 10506
Admin
(@robert)
Support Team
Joined: 8 years ago

Hi @walehub,

The gaps come from your theme. The page layout and style is provided by the active theme. You can decrease the size of gaps using the following CSS code. Insert this CSS code in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea, save it, delete all caches, go to forum front-end and press Ctrl+F5:

.wpforo.ast-separate-container #primary{
    margin: 0;
    padding: 0;
}
.wpforo.ast-separate-container .ast-article-single{
    padding: 0 2em;
}