DDR_freak
05-22-2006, 07:05 PM
How do you make images not go to the next line I know it involves putting somewhere but I dont know where
|
View Full Version : image spacing DDR_freak 05-22-2006, 07:05 PM How do you make images not go to the next line I know it involves putting somewhere but I dont know where Wermaus 05-22-2006, 07:21 PM You could use this:<img src="whatever.jpg" alt="" style="display:inline;" /> Arwen 05-22-2006, 07:55 PM Or <img src="image.jpg" vspace="10"> DDR_freak 05-22-2006, 08:33 PM You could use this:<img src="whatever.jpg" alt="" style="display:inline;" /> thanks, What do I put there? ^_^" alt="" style="display:inline;" Wermaus 05-23-2006, 02:28 AM between the "" of alt="" you put the alternative text that should display, if the image doesn't work. Just keep the style="display:inline;" like it is :) J to the izzosh 05-25-2006, 02:01 PM The <img> element displays as inline by default. If your images are breaking to the next line, then it has to do with your surrounding markup. Usually the line that they're on isn't long enough to fit all images. For example, if you have two 50-pixel wide images in a 90-pixel wide <div> element, then the second image will break to the next line just like normal text will if it reaches the edge of its parent element. DDR_freak 06-21-2006, 07:03 PM this is the page I'm talking about http://www.myspace.com/s73ph4ni3 If you scroll down to the movie secrtion either 4 rows of movies will show up or nothing at all, I just wanna make it so I dont have to put the images in marquee format so that they will always show up evenly and 4 to a row This is the code I'm using.... <marquee behavior="alternate"scrollamount="0"width="390"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/mr.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lsaw.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lro.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lre.png"> </marquee> <marquee behavior="alternate"scrollamount="0"width="400"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lpp.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lnbk.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lpoto.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lnb.png"> </marquee><marquee behavior="alternate"scrollamount="0"width="400"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/wd.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/nbt.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/anastasiam.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/other/RENICON.png"> </marquee> <marquee behavior="alternate"scrollamount="0"width="400"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/sne.png"> <img src="http://img.photobucket.com/albums/v297/s73ph4ni3/xmen.png"><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/mcc.png"><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/news.png"></marquee> pb&j 06-22-2006, 02:52 AM <table><tr> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/mr.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lsaw.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lro.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lre.png"></td> </tr><tr> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lpp.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lnbk.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lpoto.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/lnb.png"></td> </tr><tr> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/wd.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/nbt.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/anastasiam.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/other/RENICON.png"></td> </tr><tr> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/sne.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/xmen.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/mcc.png"></td> <td><img src="http://img.photobucket.com/albums/v297/s73ph4ni3/news.png"></td> </tr></table> |