Posts by Carol • 145 points
3 posts
-
3
votes1
answer2989
viewsQ: How to make a horizontal list of images that does not break?
I want to make a list of images horizontally, but they’re falling, look: My CSS: #fotos{ margin-top:30px; width:650px; overflow-x: hidden; height:110px; border:1px solid #CCC; } #fotos ul li{…
-
8
votes2
answers600
viewsQ: How to read a file with an email list?
I have a text file with many emails and I want to save everything in a database, as I do to get each email from the file in PHP? The emails are separated by comma.
-
3
votes1
answer173
viewsQ: How to organize my models in the construction of a photo album in Django?
I’m building a photo album, but I don’t know how I should organize it. How my models should be? Class Foto(models.Model): foto = models.ImageField(upload_to='img') Class Album(models.Model): nome =…