• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

forums in columns

It would be really great if someone can come up with addon as suggested in First post can be helpful for the Project i am working on :)
 
A lost list of forums, on the increasingly prevalent wide screen monitors must look even worse when they aren't in columns !
Personally my work computer monitors are either square or portrait !
 
A few simple template html/css changes will make this the way you guys want. Just code it how it's done on any website with columns, and put the data $vars back in where you want them to appear.
 
I'll end up taking a crack at this sooner or later, I'm sure of it(making styles). I wouldn't know how to do custom icons though, hopefully xencons will be finished up and released.
 
.forumsleft {
/* css here */
float: left;
}
.forumsright {
/* css here */
float: right;
}
.forumscontainer {
/* css here for container exceptions, basics */
text-align: left;
}
in extra.css

<div class="forumcontainer">
<div class="forumsright">
xen: if nodeid is category 4,5,6 ? show /xen:if
</div><!-- end forumsright -->
<div class="forumsleft">
xen: if nodeid is category 1,2,3 ? show /xen:if
</div><!-- end forumsleft -->
</div><!-- end forumcontainer -->

should do the trick
 

Attachments

  • xenfans_2columns_dem.webp
    xenfans_2columns_dem.webp
    40.1 KB · Views: 57
Where would the actual code be placed?

<div class="forumcontainer">
<div class="forumsright">
xen: if nodeid is category 4,5,6 ? show /xen:if
</div><!-- end forumsright -->
<div class="forumsleft">
xen: if nodeid is category 1,2,3 ? show /xen:if
</div><!-- end forumsleft -->
</div><!-- end forumcontainer -->
 
I did this with the first beta release (Was doing it more for subforums on forum list), but I'll see if I can remember how I did it, and post the results.
 
Top Bottom