Quote:
Originally Posted by saqiralemarate
hey looking at your site, got me amazed.....could I ask a question if I wasn't annoying you......looking at your forum I realized you got "New Forum Post" and "Latest Threads" How can I add them with the code and the forum layout? thanks=D
|
The bit on the right hand side? That's a feature of VB4 called forum blocks. You can find it under the Forums & Moderators section.
Andy
--------------- Added [DATE]1289899421[/DATE] at [TIME]1289899421[/TIME] ---------------
After getting Lynne to take a look at the grid she managed to get it almost the way i needed it with the following code:
The only problem was, that the side panels were too wide at 25, so was informed that i needed to change the CSS from 25% to 12.5% and from 50% to 75% to even it out.
The code i ended up with was:
Code:
<style type="text/css">
.top {width: 100% !important;}
.bottom {clear: both; width: 100% !important;}
.yui-tvb-l25 {width: 18%;}
.yui-tvb-l50 {width: 60%;}
</style>
<div id="doc3">
<div id="bd">
<div class="yui-g">
<div class="yui-tvb-l25 first yui-panel">
<ul class="list_no_decoration widget_list" id="widgetlist_column1">$column[1]</ul>
</div>
<div class="yui-tvb-l50 first yui-panel">
<div class="yui-g top">
<ul class="list_no_decoration widget_list" id="widgetlist_column2">$column[2]</ul>
</div>
<div class="yui-g bottom">
<div class="yui-u first">
<ul class="list_no_decoration widget_list" id="widgetlist_column5">$column[5]</ul>
</div>
<div class="yui-u">
<ul class="list_no_decoration widget_list" id="widgetlist_column4">$column[4]</ul>
</div>
</div>
</div>
<div class="yui-tvb-l25 first yui-panel">
<ul class="list_no_decoration widget_list" id="widgetlist_column3">$column[3]</ul>
</div>
</div>
</div>
</div>
You can see the nice even layout at
www.eteknix.com
Thanks,
Andy