Specifics:
- Drupal 6.x
- Views 6.x-2.16
Problem:
I’m trying to use a View to output multiple columns and organized by column instead of by row (i.e. - ordering each output vertically where at the end of each column, a new column is generated and populated until it gets to the end of that column, and so on.) I thought I had this working when I told the view to vertically-align, but as soon as I applied some floating CSS to the list-items, the order of each field appeared to be horizontally-aligned again.
Long story short, I need the following layout with my view:
[TABLE=“width: 500”]
[TR]
[TD]Column 1
[/TD]
[TD]Column 2
[/TD]
[TD]Column 3
[/TD]
[TD]Column 4
[/TD]
[/TR]
[TR]
[TD]Field Item 1
[/TD]
[TD]Field Item 10
[/TD]
[TD]Field Item 19
[/TD]
[TD]Field Item 28
[/TD]
[/TR]
[TR]
[TD]Field Item 2
[/TD]
[TD]Field Item 11
[/TD]
[TD]Field Item 20
[/TD]
[TD]Field Item 29
[/TD]
[/TR]
[TR]
[TD]Field Item 3
[/TD]
[TD]Field Item 12
[/TD]
[TD]Field Item 21
[/TD]
[TD]Field Item 30
[/TD]
[/TR]
[TR]
[TD]Field Item 4
[/TD]
[TD]Field Item 13
[/TD]
[TD]Field Item 22
[/TD]
[TD]Field Item 31
[/TD]
[/TR]
[TR]
[TD]Field Item 5
[/TD]
[TD]Field Item 14
[/TD]
[TD]Field Item 23
[/TD]
[TD]Field Item 32
[/TD]
[/TR]
[TR]
[TD]Field Item 6
[/TD]
[TD]Field Item 15
[/TD]
[TD]Field Item 24
[/TD]
[TD]Field Item 33
[/TD]
[/TR]
[TR]
[TD]Field Item 7
[/TD]
[TD]Field Item 16
[/TD]
[TD]Field Item 25
[/TD]
[TD]Field Item 34
[/TD]
[/TR]
[TR]
[TD]Field Item 8
[/TD]
[TD]Field Item 17
[/TD]
[TD]Field Item 26
[/TD]
[TD]Field Item 35
[/TD]
[/TR]
[TR]
[TD]Field Item 9
[/TD]
[TD]Field Item 18
[/TD]
[TD]Field Item 27
[/TD]
[TD]Field Item 36
[/TD]
[/TR]
[/TABLE]
[< Pager Here >]
Would anyone happen to know how to achieve something like this?
So far, I’m at a loss.