Support » Themes and Templates » List subcategories as a directory in several columns?

  • 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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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;
    }
    Thread Starter Jimi Wikman

    (@mortfiles)

    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 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘List subcategories as a directory in several columns?’ is closed to new replies.