Hi!
I would like to display the links undes a category in columns, not in rows.
e.g. the links under
http://localhost/browse.php?cat=13
did somebody do this before?
Help will be appreciated.
Bye!![]()
Hi!
I would like to display the links undes a category in columns, not in rows.
e.g. the links under
http://localhost/browse.php?cat=13
did somebody do this before?
Help will be appreciated.
Bye!![]()
I haven't done this myself - but you should be able too
You will need to find the place that the html code is for that particular area is and modify it to suit
I would start looking in maybe MSG.HTML (themes folder) or may be in the LIB section - category.class.php!! (take care when changing thing in the lib section)
Sorry I cant be much more help - maybe some else knows?
Regards
You should change the code. Almost all job that display links is handled by Display() function in /lib/link.class.php
Instead of change it that may cause terrible result in other page, you should hack browse.php. Doing manually fetching database and assign template value.
Thanks for your replies, but seems to be too difficult for me...
By the way, is it possible to display categories alphabetically ordered from left to right and not from up to down?
Thanks a lot!
modify rows.html, its about html trick
when you display in rows, you need to loop
but when you need in columns:PHP Code:<tr> ........ </tr>
make sure browse.html and *_rows.html will construct valid tablePHP Code:<td> ........ </td>
PHP Code:<table><tr><td> ........ </td></tr><table>