The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
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! |
|
#2
|
||||
|
||||
|
You could try some CSS like:
HTML Code:
.threadlist {
clear: none;
float: left;
width: 59%;
}
.forumbits {
clear: none;
float: right;
width: 40%;
}
|
|
#3
|
|||
|
|||
|
Thanks! I'll give that a try.
|
![]() |
|
|