Skip to main content

Within IP.Board 4.x there is an option to increase the amount of topics shown in the recent topic block.  The issue I’ve had with it is this, it extends the size of the box pushing all other items down.  For some this might be ok, but I’d prefer it hold it’s size and scroll.

Go to your forum homepage and click the arrow on the far left to open up your block settings.

Click edit on your recent topics block and increase the number to show to whatever number you like (it’s set to 5 topics by default).  Save the settings and close the block editor.

Now login to your AdminCP and navigate to the themes area.  Instead of editing your theme click the button next to it to “Edit HTML and CSS”.

Then change the tab to CSS and look for custom.css.  Open the file and drop in the following code:

.ipsWidget.ipsWidget_vertical.ipsBox:nth-of-type(1){
overflow-y: scroll;
height: 412px;
overflow-x: hidden;
}

That’s it, save it and you’re all set!  Questions or comments?  View the forum discussion here.

Leave a Reply