I have a gallery which has a number of images. They have a set width and no height to the image and the height is obviously just what the image is, so one could be 500px in height and the next one could be 620px in height.
Here is the css for this:
.mygallery { width: 650px; padding:0; margin:0; }
I have a caption which needs to go directly below the image and the css for this is:
#category span{color:#FFFFFF;}
Can anyone help me how I can put the category span below my gallery. I just cannot get it to go underneath. Obviously it would be fine if all the images were the same height, but as they are all different its proving difficult.
Thanks for your help.