Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
2 or 3 Column Dynamic Section list?
Is this possible at all in txp?
Last edited by tye (2008-07-24 00:46:09)
Offline
Re: 2 or 3 Column Dynamic Section list?
Why not? You can use in build tags like section_list, article_custom or some of those many section list plugins. Then, just style them to use three columns, not hard at all.
In example:
<txp:section_list wraptag="ul" break="li" />
ul {
list-style: none;
}
ul li {
float: left;
display: inline;
width: 33%;
}
And with 4.0.7 version’s txp:variable you can do even more, in example build a complete table etc.
Offline
Re: 2 or 3 Column Dynamic Section list?
Ha Ha – cool, you learn something new every day :)
Thanks v.much
Offline
Pages: 1