I'm using a custom theme.
I have a custom content type with two fields.
- title
- thumbnail (created using imagecache).
Note, in the example below, URL 1 and Title 1 are the two fields for the first row in the result set.
I would like it to output something like so:
<span>
<img src="URL1" />
<span>Title 1</span>
</span>
<span>
<img src="URL2" />
<span>Title 2</span>
</span>
Basically I went a horizontal list of blocks that are flush with each other. Each block consists of two parts, the top part is a thumbnail, the bottom part is the title.
The issue I'm having is that I'm not sure which theme override I should use. In this case each list element consists of two fields rather than the 1 list element per field that the views module seems to expect. Overriding fields is too low, but overriding the rows seems to be too high because I can't seem to get at the information I need.
How would you recommend I go about accomplishing this?