Date: 10/22/07 (Web Development) Keywords: php I am doing a photo site, and I'm having a problem with the section of the site that enables me to save information. My problem is that doing *one* image is easy, but when I try to do multiple images, I have problems. Here is what a single image looks like: .editImage { position: absolute; left: 5%; border-bottom: 1px #CCC dotted; clear: both; } #register h4, #profile h4, .editImage h4 { font-size: 12px; font-family: "Arial"; font-weight: bold; } #compose label, #register label, #profile label, .editImage label { margin-top: .33em; display: block; } #compose input, #compose textarea, #register input, #profile input, .editImage input, .editImage textarea { display: block; width: 300px; } #register, #avatar, .editImage .imageDetails { float: left; } #profile, #profiledetails, .image { padding-left: 325px; } I suspect it has something to do with my use of "float: left", as my understanding of float and clear is a bit sketchy. I would strongly prefer to *not* use a table to accomplish this, even if it means finding another way to present the information. Thank you for your help. Edit: Got it figured out. Instead of using multiple forms with multiple containing divs, I opted instead to use one form in one v. large containing div. Thanks to ezerick for the idea. Source: http://community.livejournal.com/webdev/442252.html
|