Gossamer Forum
Home : Products : DBMan : Customization :

Display as 3 column table short/long mod

Quote Reply
Display as 3 column table short/long mod
I would like to display the short page in 3-4 columns, with a title header at the top of the page. Any ideas

Thanks


Sean

------------------
Quote Reply
Re: Display as 3 column table short/long mod In reply to
To make your short page display in 3 columns just search for:

<-- Start of short display formatting -- >

where it has the example just add the 3 fields such as:

<a href="$long_url">$rec{'Name'}</a></TD><TD>
$rec{'field2name'}</TD><TD>
$rec{'field3name'}

To add a page tile define in sub html_view_success {

look for where it has
$page_title = "Search Results";

or you can have a standard title defined with your regular page formatting which appears on all pages.

Hope this helps Smile