I'd like to display a picture gallery both horizontal and vertical. When using the Grid option, building the template it defaults to going up/down (vertical), while I'd like some of the pictures to show horizontal (ie. 5 pics left to right). So for example the gallery would display 5 pics going horizontal while the number of rows would be 10 vertical (pagination). What specific tag and its property would I need to use in order to accomplish this task?
I reviewed the current tutorials and forum discussions, but could not find anything definite. Any help would be appreciative. Thanks.
EDIT (ANSWER):
http://www.fbr.org/DesktopModules/XModPro/help/temp_datalist.html
The DataList tag, like the Template tag, is a View control that is used for displaying and interacting with records from your datasource. It is used in essentially the same manner as the Template tag and can be used together with the Template tag within your templates. Like the Template tag, it contains the data commands and layout instructions for your display and enables you to specify who is allowed to add, edit, and delete records as well as who is allowed to view the details of records. The primary difference between the DataList and Template is that the DataList allows you to layout your records in a grid pattern.
Record1 Record2 Record3<br>Record4 Record5 Record6<br>Record7 Record8
----- OR ----
Record1 Record4 Record7
Record2 Record5 Record8
Record3 Record6