Log in

View Full Version : Change Forum Layout


dave.lindsey
04-13-2012, 03:37 PM
Hi,

I have a forum that I'd like to split the page to show the main forum threads on one side of the page and the sub-forums on the other. I know when you create a page, you can configure the style so that you have the different modules in a 60%-40% arrangement, but I have not been able to find a way to do that with a forum. The sub-forum list is just above the main threads. Any one know how I can modify that?

Thanks!

Lynne
04-13-2012, 08:34 PM
You could try some CSS like:
.threadlist {
clear: none;
float: left;
width: 59%;
}
.forumbits {
clear: none;
float: right;
width: 40%;
}
You may need to adjust other CSS after adding that.

dave.lindsey
04-17-2012, 01:00 PM
Thanks! I'll give that a try.