I have a client who is a photographer and I am developing a site for them to display their photos. I have built the back end, which will enable album creation and then photo upload into the specific album.
On the "portfolio" page they would like to show all available albums, which then link to the subsequent images. I can easily get this to work with GridView that then just loops through the available albums displaying these on the page one after the other. But the photographer wishes this to look a bit more "arty" so that there are defined spaces between the albums.
Image if it was the hardcoded table below.....
<table>
<tr>
<td> </td>
<td>album1</td>
<td> </td>
</tr>
<tr>
<td>album2</td>
<td> </td>
<td> </td>
</tr> ....etc....etc
</table>
If anyone has any ideas on how this could be achieved would be very much appreciated.
Thanks in advance