Specter 0 Posted June 18, 2005 Share Posted June 18, 2005 I need some help changing the below code to make the Forum index page(at a licensed IPB board, for ZJJ over at http://www.k9gold.net)split up into 5 rows instead of three. If someone can help, it will be greatly appreciated, by both of us. I just know HTML that well yet. Thanks in advance ! ! Semper Fi ! ! Sam Here is the code: <tr> <td align="center" class="row3" width="1%">{$data['img_new_post']}</td> <td class="row2">{$data['_queued_img']}<b><a href="{ipb.script_url}showforum={$data['id']}">{$data['name']}</a></b><br /><span class="forumdesc">{$data['description']}{$data['show_subforums']}<br /><i>{$data['moderator']}</i></span>{$data['_queued_info']}</td> <td align="center" class="row3">{$data['topics']}</td> <td align="center" class="row1">{$data['posts']}</td> <td class="row3" nowrap="nowrap">{$data['last_unread']} <span>{$data['last_post']}<br /><b>{ipb.lang['in']}:</b> {$data['last_topic']}<br /><b>{ipb.lang['by']}:</b> {$data['last_poster']}</span></td> </tr> Quote Link to post Share on other sites
Avey 0 Posted June 18, 2005 Share Posted June 18, 2005 When using tables, rows are vertical (one above the other) and columns are horizontal (side by side). I don't understand what you mean however, there are five columns already? Icon | Name | Topics | Replies | Last Post Info <tr> <td align="center" class="row3" width="1%">{$data['img_new_post']}</td> <td class="row2">{$data['_queued_img']}<b><a href="{ipb.script_url}showforum={$data['id']}">{$data['name']}</a></b><br /><span class="forumdesc">{$data['description']}{$data['show_subforums']}<br /><i>{$data['moderator']}</i></span>{$data['_queued_info']}</td> <td align="center" class="row3">{$data['topics']}</td> <td align="center" class="row1">{$data['posts']}</td> <td class="row3" nowrap="nowrap">{$data['last_unread']} <span>{$data['last_post']}<br /><b>{ipb.lang['in']}:</b> {$data['last_topic']}<br /><b>{ipb.lang['by']}:</b> {$data['last_poster']}</span></td> </tr> [/code] Each <td> represents a column, which there are five of. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.