XF 2.1 forum_overview_wrapper

mcloutier87

Member
Im trying to add into this section but everything is pushed to the right. How do I make this centered and use 100% of it?
 
Where exactly are you trying to place it?

Just a heads up you can use the ad system or widget system to place custom content there easily, it has places:

forum_overview_top and forum_overview_bottom to place it all.
 
I'm putting images in there and they're always pushing to the right. I looked at the code but I can't seem to find the one that controls that. If you know what file it's in that would be a great help. I also know about the advertisements that can go in the box.
 
Wrap it in a div, something like:
Code:
<div class="block-center">
    <img src="https://dummyimage.com/308x90/000/fff.png" />
</div>

then add to your extra.less:

Code:
.block-center {
    margin: 0 auto;
    text-align: center;
}
 
Top Bottom