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
https://forums.phpfreaks.com/topic/229858-turning-a-table-menu-into-a-list/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.