Forums

List subcategories as a directory in several columns? (3 posts)

  1. Mortfiles
    Member
    Posted 5 months ago #

    I have this weird idea to build a FAQ in WP and the way I wanted it is to have a directory style that kind of resemble for example WHMCS (http://demo.whmcs.com/knowledgebase.php)

    The problem is to get the subcategories and then divide them into columns which I don't seem to find anyone ever tried before :)

    Could anyone give a few pointers on how this might be possible to do?

  2. esmi
    Member
    Posted 5 months ago #

    How about a floated list? Off the top off my head, something like:

    ul.catlist {
    	margin:0;
    	padding:0;
    	list-style:none;
    }
    .catlist li {
    	float:left;
    	width:15em;
    	margin:0 20px 5px 0;
    }
  3. Mortfiles
    Member
    Posted 5 months ago #

    Not a bad idea...It might work.
    Making the categories behave like a top navigation list...

    Thanks for the idea esmi, I'll try that :)

Reply

You must log in to post.

About this Topic