Page 1 of 1

simple HTML question : solved

Posted: Fri Nov 18, 2005 7:37 am
by ben_albrechts
Hey ,

I've got a simple html question.
I'm placing a load of thumbnails after eachother , but they automatically go to the next line , how can i make it so that they all are on one line and just has a scrollbar underneath to move to the ones that aren't visible on the screen

it's like :

<img src="....">
<img src="...">
<img src="....">
<img src="...">
<img src="....">
<img src="...">
<img src="....">
<img src="...">
<img src="....">
<img src="...">


and so on ....

Posted: Fri Nov 18, 2005 7:41 am
by jayshields
Hmm, try putting the code like this:
<img src="..."> <img src="..."> <img src="...">

That's only a guess.

Posted: Fri Nov 18, 2005 7:46 am
by ben_albrechts
just tried it , but it didnt change anything

Posted: Fri Nov 18, 2005 7:55 am
by ben_albrechts
Ok I solved it. I did it like you said , but put <pre>in front and </pre> after.

Thanks !

Posted: Fri Nov 18, 2005 7:59 am
by Weirdan

Code: Select all

<style type='text/css'>
img {display:inline}
</style>