Jump to content

Turning a table menu into a list


jandr27

Recommended Posts

I got a tab menu, where the user choose his category and a list of sub categories appear. Personally I like the old fashion way, where everything listed like in craiglist.com ...

How can I turn the following tab menu, into a simple 3 column list?

 

<!--CATEGORIES-->

  <div id="selCategories">

    <div class="slidetabsmenu menu_fix">

      <ul>

        <?php

 

if(isset($groups) and $groups->num_rows()>0)

 

 

{

 

$i=0;

 

foreach($groups->result() as $group)

 

{

?>

        <li id="gr<?php echo $i;?>" class="<?php if($i == '0') echo "selected"; ?>"><a href="javascript:;" onclick="getCat('<?php echo $i ?>','<?php echo $groups->num_rows ?>',<?php echo $group->id;?>);"><span><?php echo $group->group_name;?></span></a></li>

        <?php $i++;}

 

}

 

 

 

?>

      </ul>

    </div>

    <div class="clsInfoBox">

      <div class="block">

        <div class="grey_t">

          <div class="grey_r">

            <div class="grey_b">

              <div class="grey_l">

                <div class="grey_tl">

                  <div class="grey_tr">

                    <div class="grey_bl">

                      <div class="grey_br">

                        <div class="cls100_p">

                          <h4><span class="clsCategory"><?php echo $this->lang->line('CATEGORIES');?></span></h4>

                          <div class="clsCategoryList clearfix" id="catInner"> </div>

                        </div>

                      </div>

                    </div>

                  </div>

                </div>

              </div>

            </div>

          </div>

        </div>

      </div>

    </div>

  </div>

  <!--END OF CATEGORIES-->

 

Your tips, directions, and support is highly appreciated.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.