View Single Post
Old 01-06-2007, 03:53 PM  
jayeff
Confirmed User
 
Join Date: May 2001
Posts: 2,944
By default AXS produces an unordered list (although you can change that in 'edit templates'), which means you need to use CSS to create output which looks like tables. This a stripped down version to illustrate the principal for 4-column output:
Code:
ul {
width: 860px;
}
	
ul li {
float: left;
width: 215px;
}
To cater for IE6 and lower, you might have to knock a pixel or two off the li width so that columns x li width did not exactly equal ul width...
jayeff is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote