phpBB.com     phpBB Academy     phpBB Modders     phpBB Weekly     ktuk     phpBB Hacks     Vlad Studio  

2 Column Forum Layout

Allows you to show your forums in a 2 column layout, rather than 1 long list.

Not enough for a full proper MOD, but too useful not to share
Forum rules
Please read over our forum guidelines

2 Column Forum Layout

Postby kenny » 23 Sep 2008, 11:44

A few people have asked me for the code I use on Six String Romance to get the 2 column forum layout. It's quite simple. The simple version required 1 file edit to add 1 block of code and 1 html file replacement.

Please note that I didn't write this code. It was written by other members of the phpBB Team (who will be credited when I get the exact member names :P ). I am merely documenting how to do it. As will all the other snippets, this will not come in MODx format. Please also note that I may not be able to help with any technical queries about this.

Lastly - this snippet is only supported with prosilver based styles. Please don't ask to get for support with subSilver2 based styles as I don't work with any sS2 based styles.

------------------------------------------------------------------------------------------------------

OPEN: includes/functions_display.php
FIND:
Code: Select all
        $last_catless $catless;
    }  

AFTER ADD:
Code: Select all
//
// Start category based loops
// Credits to Noxwizard of phpBB.com for this code
//

//Sort forums by category

$cat_array = array();

foreach($forum_rows as $forum)
{
   if ($forum['forum_type'] == FORUM_CAT)
   {
      $cat_array[$forum['forum_id']] = $forum;
   }
   else
   {
      $id = $forum['parent_id'];
      @$cat_array[$id]['children'][@count(@$cat_array[$id]['children'])] = $forum;
   }
}

//Loop through the categories
foreach($cat_array as $cat)
{

//Category
$template->assign_block_vars('catrow', array(
   'FORUM_ID'         => $cat['forum_id'],
   'FORUM_NAME'         => $cat['forum_name'],
   'FORUM_DESC'         => generate_text_for_display($cat['forum_desc'], $cat['forum_desc_uid'], $cat['forum_desc_bitfield'], $cat['forum_desc_options']),
   'FORUM_FOLDER_IMG'            => '',
   'FORUM_FOLDER_IMG_SRC'   => '',
   'FORUM_IMAGE'         => ($cat['forum_image']) ? '<a href="' . append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $cat['forum_id']) . '"><img src="' . $phpbb_root_path . $cat['forum_image'] . '" alt="' . $user->lang['FORUM_CAT'] . '" /></a>' : '',
   'FORUM_IMAGE_SRC'      => ($cat['forum_image']) ? $phpbb_root_path . $cat['forum_image'] : '',
   'CHILDREN_COUNT'      => count($cat['children']),
   'U_VIEWFORUM'         => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $cat['forum_id']))
);

   //Forums under category
   foreach($cat['children'] as $row)
   {
      $visible_forums++;
      $forum_id = $row['forum_id'];
      
      $forum_unread = (isset($forum_tracking_info[$forum_id]) && $row['orig_forum_last_post_time'] > $forum_tracking_info[$forum_id]) ? true : false;

      $folder_image = $folder_alt = $l_subforums = '';
      $subforums_list = array();

      // Generate list of subforums if we need to
      if (isset($subforums[$forum_id]))
      {
         foreach ($subforums[$forum_id] as $subforum_id => $subforum_row)
         {
            $subforum_unread = (isset($forum_tracking_info[$subforum_id]) && $subforum_row['orig_forum_last_post_time'] > $forum_tracking_info[$subforum_id]) ? true : false;

            if ($subforum_row['display'] && $subforum_row['name'])
            {
               $subforums_list[] = array(
                  'link'      => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $subforum_id),
                  'name'      => $subforum_row['name'],
                  'unread'      => $subforum_unread,
               );
            }
            else
            {
               unset($subforums[$forum_id][$subforum_id]);
            }

            // If one subforum is unread the forum gets unread too...
            if ($subforum_unread)
            {
               $forum_unread = true;
            }
         }

         $l_subforums = (sizeof($subforums[$forum_id]) == 1) ? $user->lang['SUBFORUM'] . ': ' : $user->lang['SUBFORUMS'] . ': ';
         $folder_image = ($forum_unread) ? 'forum_unread_subforum' : 'forum_read_subforum';
      }
      else
      {
         switch ($row['forum_type'])
         {
            case FORUM_POST:
               $folder_image = ($forum_unread) ? 'forum_unread' : 'forum_read';
            break;

            case FORUM_LINK:
               $folder_image = 'forum_link';
            break;
         }
      }

      // Which folder should we display?
      if ($row['forum_status'] == ITEM_LOCKED)
      {
         $folder_image = ($forum_unread) ? 'forum_unread_locked' : 'forum_read_locked';
         $folder_alt = 'FORUM_LOCKED';
      }
      else
      {
         $folder_alt = ($forum_unread) ? 'NEW_POSTS' : 'NO_NEW_POSTS';
      }
      
      // Create last post link information, if appropriate
      if ($row['forum_last_post_id'])
      {
         $last_post_subject = $row['forum_last_post_subject'];
         $last_post_time = $user->format_date($row['forum_last_post_time']);
         $last_post_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id_last_post'] . '&amp;p=' . $row['forum_last_post_id']) . '#p' . $row['forum_last_post_id'];
      }
      else
      {
         $last_post_subject = $last_post_time = $last_post_url = '';
      }

      // Output moderator listing ... if applicable

      $l_moderator = $moderators_list = '';
      if ($display_moderators && !empty($forum_moderators[$forum_id]))
      {
         $l_moderator = (sizeof($forum_moderators[$forum_id]) == 1) ? $user->lang['MODERATOR'] : $user->lang['MODERATORS'];
         $moderators_list = implode(', ', $forum_moderators[$forum_id]);
      }

      $l_post_click_count = ($row['forum_type'] == FORUM_LINK) ? 'CLICKS' : 'POSTS';
      $post_click_count = ($row['forum_type'] != FORUM_LINK || $row['forum_flags'] & FORUM_FLAG_LINK_TRACK) ? $row['forum_posts'] : '';

      $s_subforums_list = array();

      foreach ($subforums_list as $subforum)
      {
         $s_subforums_list[] = '<a href="' . $subforum['link'] . '" class="subforum ' . (($subforum['unread']) ? 'unread' : 'read') . '">' . $subforum['name'] . '</a>';
      }
      $s_subforums_list = (string) implode(', ', $s_subforums_list);

      if ($row['forum_type'] != FORUM_LINK)
      {
         $u_viewforum = append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']);
      }
      else
      {
         // If the forum is a link and we count redirects we need to visit it
         // If the forum is having a password or no read access we do not expose the link, but instead handle it in viewforum
         if (($row['forum_flags'] & FORUM_FLAG_LINK_TRACK) || $row['forum_password'] || !$auth->acl_get('f_read', $forum_id))
         {
            $u_viewforum = append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']);
         }
         else
         {
            $u_viewforum = $row['forum_link'];
         }
               }

      $template->assign_block_vars('catrow.forumrow', array(
         'S_IS_LINK'         => ($row['forum_type'] == FORUM_LINK) ? true : false,
         'S_UNREAD_FORUM'      => $forum_unread,
         'S_LOCKED_FORUM'      => ($row['forum_status'] == ITEM_LOCKED) ? true : false,
         'S_SUBFORUMS'         => (sizeof($subforums_list)) ? true : false,

         'FORUM_ID'         => $row['forum_id'],
         'FORUM_NAME'         => $row['forum_name'],
         'FORUM_DESC'         => generate_text_for_display($row['forum_desc'], $row['forum_desc_uid'], $row['forum_desc_bitfield'], $row['forum_desc_options']),

         'TOPICS'            => $row['forum_topics'],
         $l_post_click_count         => $post_click_count,
         
         'FORUM_FOLDER_IMG'      => $user->img($folder_image, $folder_alt),
         
         'FORUM_FOLDER_IMG_SRC'   => $user->img($folder_image, $folder_alt, false, '', 'src'),

         'FORUM_IMAGE'         => ($row['forum_image']) ? '<a href="' . append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']) . '"><img src="' . $phpbb_root_path . $row['forum_image'] . '" alt="' . $user->lang[$folder_alt] . '" /></a>' : '',
         'FORUM_IMAGE_SRC'      => ($row['forum_image']) ? $phpbb_root_path . $row['forum_image'] : '',

         'LAST_POST_SUBJECT'      => censor_text($last_post_subject),
         'LAST_POST_TIME'      => $last_post_time,
         'LAST_POSTER'         => get_username_string('username', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']),
         'LAST_POSTER_COLOUR'      => get_username_string('colour', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']),
         'LAST_POSTER_FULL'      => get_username_string('full', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']),

         'MODERATORS'         => $moderators_list,
         'SUBFORUMS'         => $s_subforums_list,

         'L_SUBFORUM_STR'      => $l_subforums,
         'L_FORUM_FOLDER_ALT'      => $folder_alt,
         'L_MODERATOR_STR'      => $l_moderator,

         'U_VIEWFORUM'         => $u_viewforum,
         'U_LAST_POSTER'         => get_username_string('profile', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']),
         'U_LAST_POST'         => $last_post_url)
      );

      // Assign subforums loop for style authors
      foreach ($subforums_list as $subforum)
      {
         $template->assign_block_vars('forumrow.subforum', array(
            'U_SUBFORUM'      => $subforum['link'],
            'SUBFORUM_NAME'   => $subforum['name'],
            'S_UNREAD'      => $subforum['unread'])
         );
      }
   }
}
//
// End category based loops
//

For the next part, you need to replace your entire forumlist_body.html file. I recommend backing up this file in case you ever want to revert back. There is also multiple ways to set this up, more details below :)

Change the DEFINE $FORUMS to 1in this part to specify the max number of forums before it starts putting them into a second column. This is the output:
flb1-define1.png

Setting DEFINE $FORUMS = 3 will give this output: (Notice that the 2nd catagory only has 2 forum, so it's displayed as normal).
flb1-define3.png

Edit: Below is what you should replace your forumlist_body.html file with :)

Code: Select all
<!-- DEFINE $FORUMS = 1 -->
<!-- BEGIN catrow -->

   <div class="forabg">
      <div class="inner"><span class="corners-top"><span></span></span>
         <ul class="topiclist">
            <li class="header">
               <dl class="icon">
                  <dt><!-- IF catrow.FORUM_NAME --><a href="{catrow.U_VIEWFORUM}">{catrow.FORUM_NAME}</a><!-- ELSE -->{L_FORUM}<!-- ENDIF --></dt>
               </dl>
            </li>
         </ul>
         <!-- IF catrow.CHILDREN_COUNT > $FORUMS --><div style="float: left; width: 49.95%;"><!-- ELSE --><div style="width: 100%"><!-- ENDIF -->
            <ul class="topiclist forums">
               <!-- BEGIN forumrow -->
                  <!-- IF forumrow.S_ROW_COUNT is even or catrow.CHILDREN_COUNT <= $FORUMS -->
                     <li class="row">
                        <dl class="icon" style="background-image: url({forumrow.FORUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
                           <dt title="{forumrow.FORUM_FOLDER_IMG_ALT}">
                              <!-- IF forumrow.FORUM_IMAGE --><span class="forum-image">{forumrow.FORUM_IMAGE}</span><!-- ENDIF -->
                              <a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a><br />
                              {forumrow.FORUM_DESC}
               <!-- IF forumrow.CLICKS -->
                  <span>{L_REDIRECTS}: {forumrow.CLICKS}</span>
               <!-- ELSEIF not forumrow.S_IS_LINK -->
                  <br /><br />{forumrow.TOPICS} {L_TOPICS} / {forumrow.POSTS} {L_POSTS} &nbsp;
                  <!-- IF forumrow.LAST_POST_TIME --> <a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_TIME}">{LAST_POST_IMG} {L_LAST_POST}</a> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}<br />
                   <!-- ELSE -->{L_NO_POSTS}<!-- ENDIF -->
               <!-- ENDIF -->   
                              <!-- IF forumrow.MODERATORS -->
                                 <br /><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}
                              <!-- ENDIF -->
                              <!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS --><br /><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}<!-- ENDIF -->
                           </dt>
                        </dl>
                     </li>
                  <!-- ENDIF -->
               <!-- END forumrow -->
            </ul>
         </div>
      </div>
      <!-- IF catrow.CHILDREN_COUNT > $FORUMS -->
      <div style="float: right; width: 49.95%;">
         <ul class="topiclist forums">
            <!-- BEGIN forumrow -->           
               <!-- IF forumrow.S_ROW_COUNT is odd -->
                  <li class="row">
                     <dl class="icon" style="background-image: url({forumrow.FORUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
                        <dt title="{forumrow.FORUM_FOLDER_IMG_ALT}">
                           <!-- IF forumrow.FORUM_IMAGE --><span class="forum-image">{forumrow.FORUM_IMAGE}</span><!-- ENDIF -->
                           <a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a><br />
                           {forumrow.FORUM_DESC}
               <!-- IF forumrow.CLICKS -->
                  <span>{L_REDIRECTS}: {forumrow.CLICKS}</span>
               <!-- ELSEIF not forumrow.S_IS_LINK -->
                  <br /><br />{forumrow.TOPICS} {L_TOPICS} / {forumrow.POSTS} {L_POSTS} &nbsp;
                  <!-- IF forumrow.LAST_POST_TIME --> <a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_TIME}">{LAST_POST_IMG} {L_LAST_POST}</a> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}<br />
                   <!-- ELSE -->{L_NO_POSTS}<!-- ENDIF -->
               <!-- ENDIF -->   
                           <!-- IF forumrow.MODERATORS -->
                              <br /><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}
                           <!-- ENDIF -->
                           <!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS --><br /><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}<!-- ENDIF -->
                        </dt>
                     </dl>
                  </li>
               <!-- ENDIF -->
            <!-- END forumrow -->
         </ul>
      </div>
      <!-- ENDIF -->

      <span class="corners-bottom"><span></span></span>
   </div>

<!-- BEGINELSE -->
   <div class="panel">
      <div class="inner"><span class="corners-top"><span></span></span>
      <strong>{L_NO_FORUMS}</strong>
      <span class="corners-bottom"><span></span></span></div>
   </div>
<!-- END forumrow -->

Although the screenshots above don't show it, the above code includes the code to show the last topics/posts from each forum. Here is a screenshot below that shows it. Included is how it would look with a forum image as well.
flb1-define1-lpiafi.png

Now here is a look at some of the subforum views. Depending on how many subforums you have and what you set the DEFINE at, will change how this displays. These screenshots are based on DEFINE being 1 with 1 and 2 subforums :)
define-1-viewforum-lpiafi.png


define-1-viewforum-lpiafi-sub2.png


This is all running from a default un-modded phpBB 3.0.2. If i've missed anything, if anything prosilver template-wise doesn't work, please let me know. I would appreciate anyone trying this, to try it on their prosilver template 1st before another style to make sure it works. That way we can work out other style quirks later.

------------------------------------------------------------------------------------------------------

Credits:

Noxwizard for the php code and template code
will_hough for template code
Lurtinnen for template & CSS code
halabit - for updating the subSilver2 code


Comment:
[goto=ss2]SubSilver2 Code[/goto] - this is untested and unsupported. I only post it here so others can use it. I have not modified it in any way from the original code given to me.

This code has now been updated by halabit - you can see a demo a few posts down.

Code: Select all
        <table class="tablebg" cellspacing="1" width="100%">
        <!-- BEGIN catrow -->
           <tr>
                 <td class="cat" colspan="2"><h4><a href="{catrow.U_VIEWFORUM}">{catrow.FORUM_NAME}</a></h4></td>
           </tr>
           <tr>
              <td width="50%" valign="top">
                 <table width="100%">
                    <!-- BEGIN forumrow -->
                       <!-- IF forumrow.S_ROW_COUNT is even -->
                          <tr>
                             <td class="row1" width="80" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
                             <td width="100%" class="row1">
                <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div><div style="float: {S_CONTENT_FLOW_BEGIN};">
                                   <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
                                   <p class="forumdesc">{forumrow.FORUM_DESC}</p>
                <!-- IF forumrow.CLICKS -->
                          <span>{L_REDIRECTS}: {forumrow.CLICKS}</span>
                       <!-- ELSEIF not forumrow.S_IS_LINK -->
                          <br /><br />{forumrow.TOPICS} {L_TOPICS} / {forumrow.POSTS} {L_POSTS} &nbsp;
                          <!-- IF forumrow.LAST_POST_TIME --> <a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_TIME}">{LAST_POST_IMG} {L_LAST_POST}</a> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}<br />
                           <!-- ELSE -->{L_NO_POSTS}<!-- ENDIF -->
                       <!-- ENDIF -->
                                   <!-- IF forumrow.SUBFORUMS -->
                                         <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
                                   <!-- ENDIF -->
                             </td>
                          </tr>
                       <!-- ENDIF -->
                    <!-- END forumrow -->
                 </table>
              </td>
              <td width="50%" valign="top">
                 <table width="100%">
                    <!-- BEGIN forumrow -->
                       <!-- IF forumrow.S_ROW_COUNT is odd -->
                          <tr>
                             <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
                             <td width="100%" class="row1">
                <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div><div style="float: {S_CONTENT_FLOW_BEGIN};">
                                   <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
                                   <p class="forumdesc">{forumrow.FORUM_DESC}</p>
                <!-- IF forumrow.CLICKS -->
                          <span>{L_REDIRECTS}: {forumrow.CLICKS}</span>
                       <!-- ELSEIF not forumrow.S_IS_LINK -->
                          <br /><br />{forumrow.TOPICS} {L_TOPICS} / {forumrow.POSTS} {L_POSTS} &nbsp;
                          <!-- IF forumrow.LAST_POST_TIME --> <a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_TIME}">{LAST_POST_IMG} {L_LAST_POST}</a> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}<br />
                           <!-- ELSE -->{L_NO_POSTS}<!-- ENDIF -->
                       <!-- ENDIF -->
                                   <!-- IF forumrow.SUBFORUMS -->
                                         <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
                                   <!-- ENDIF -->
                             </td>
                          <!-- ENDIF -->
                       </tr>
                    <!-- END forumrow -->
                 </table>
              </td>
           </tr>
        <!-- END catrow -->
        </table>
Last edited by kenny on 27 Aug 2009, 08:58, edited 8 times in total.
Reason: Updated subSilver2 code
|| 6 String Romance || Myspace || phpBB.com || Need Freelance Work? ||
If you need one of my MODs installed - click here


Are you a musician in the Glasgow area interested in acoustic events? The ArtBox
User avatar
kenny kenny is probably rawking out on RockBand \m/
Project Leader
Project Leader
 
Posts: 647
Joined: 06 Jun 2008, 11:38
Location: Airdrie, UK

Donate to 6 String MODs
If you like any of the work that I do here, please consider donating.
click the image on the left for a list of some of the advantages of donating



2 Column Forum Layout

Postby Lunatic Zorr » 25 Sep 2008, 14:26

YESS!! That's nice!! That's good for boards with a lot of forums :)

can't wait to see it done :)
User avatar
Lunatic Zorr
Registered User
Registered User
 
Posts: 5
Joined: 21 Sep 2008, 17:04

2 Column Forum Layout

Postby JohanNL » 27 Sep 2008, 07:25

Wow, look nice! I could use it. When does the code come? :P
Image
User avatar
JohanNL JohanNL is my name
V.I.P
V.I.P
 
Posts: 148
Joined: 27 Sep 2008, 07:24

2 Column Forum Layout

Postby kenny » 27 Sep 2008, 10:41

Very soon. I have some time today so I can write it up :mrgreen:
|| 6 String Romance || Myspace || phpBB.com || Need Freelance Work? ||
If you need one of my MODs installed - click here


Are you a musician in the Glasgow area interested in acoustic events? The ArtBox
User avatar
kenny kenny is probably rawking out on RockBand \m/
Project Leader
Project Leader
 
Posts: 647
Joined: 06 Jun 2008, 11:38
Location: Airdrie, UK

2 Column Forum Layout

Postby kenny » 27 Sep 2008, 13:48

Double post (because I can :P ).
Instructions are now up. Please read over them very carefully. Feedback for this would be very much appreciated, as i'm not 100% I documented it correctly. But i've done my best and it seems to be working fine on my local install :)
|| 6 String Romance || Myspace || phpBB.com || Need Freelance Work? ||
If you need one of my MODs installed - click here


Are you a musician in the Glasgow area interested in acoustic events? The ArtBox
User avatar
kenny kenny is probably rawking out on RockBand \m/
Project Leader
Project Leader
 
Posts: 647
Joined: 06 Jun 2008, 11:38
Location: Airdrie, UK

2 Column Forum Layout

Postby JohanNL » 27 Sep 2008, 15:07

Yay! :D I will test it later this weekend, Thanks!
Image
User avatar
JohanNL JohanNL is my name
V.I.P
V.I.P
 
Posts: 148
Joined: 27 Sep 2008, 07:24

2 Column Forum Layout

Postby JohanNL » 28 Sep 2008, 12:24

Hmm.. how do I give the description a higher width?
http://johandev.dotbas.net/index.php

:D
Image
User avatar
JohanNL JohanNL is my name
V.I.P
V.I.P
 
Posts: 148
Joined: 27 Sep 2008, 07:24

2 Column Forum Layout

Postby kenny » 28 Sep 2008, 12:55

Ah, new there was something. I'm having a bit of trouble tracking the change down though.
Funny thing is, it's working on my other live site, but I can't replicate it (using the same code) on my test board :lol:
If you have Firebug, feel free to poke about here http://www.sixstringromance.co.uk/community/index.php and see if you can find anything. I'm going to work with prosilver a bit more ;)
|| 6 String Romance || Myspace || phpBB.com || Need Freelance Work? ||
If you need one of my MODs installed - click here


Are you a musician in the Glasgow area interested in acoustic events? The ArtBox
User avatar
kenny kenny is probably rawking out on RockBand \m/
Project Leader
Project Leader
 
Posts: 647
Joined: 06 Jun 2008, 11:38
Location: Airdrie, UK

2 Column Forum Layout

Postby JohanNL » 28 Sep 2008, 13:08

Can't find it :P Maybe a CSS-thing? :(
Image
User avatar
JohanNL JohanNL is my name
V.I.P
V.I.P
 
Posts: 148
Joined: 27 Sep 2008, 07:24

2 Column Forum Layout

Postby kenny » 28 Sep 2008, 13:43

Yeah it's deinately a CSS thing. I'll speak to a few of the other guys (Noxwizard/will_hough) and they if they can help me figure it out :(
|| 6 String Romance || Myspace || phpBB.com || Need Freelance Work? ||
If you need one of my MODs installed - click here


Are you a musician in the Glasgow area interested in acoustic events? The ArtBox
User avatar
kenny kenny is probably rawking out on RockBand \m/
Project Leader
Project Leader
 
Posts: 647
Joined: 06 Jun 2008, 11:38
Location: Airdrie, UK

Next



Return to Code Snippets

Who is online

Google [Bot], MSN [Bot]


cron