Sounds like when you add the subsequent images, you are pressing enter to move down. Most wysiwyg editors insert a <p> (paragraph tag) and this will add a space between your images. Use the <br> (line break) tag instead and your images should be stacked right on top of each other.
Check your softwares documentation on how to insert <br> instead of <p> or to satisfy our notepad people, edit your document by hand. This would be a good place to start learning how to edit manually.
This way everything fits on one screen without scrolling but you have no spaces.
Malte
------------------ Malte Ubl - www.Boardzilla.org
Communication: public<->programmers
of the Boardzilla BB
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.
cds posted this at 09:31 — 18th December 1999.
They have: 359 posts
Joined: Mar 1999
Sounds like when you add the subsequent images, you are pressing enter to move down. Most wysiwyg editors insert a <p> (paragraph tag) and this will add a space between your images. Use the <br> (line break) tag instead and your images should be stacked right on top of each other.
Check your softwares documentation on how to insert <br> instead of <p> or to satisfy our notepad people, edit your document by hand. This would be a good place to start learning how to edit manually.
------------------
Dan
CDS Web Design
Dan
Recycle Video Games Network
Stupidity killed the cat, curiosity was framed!
Josh Simpson posted this at 09:37 — 18th December 1999.
They have: 147 posts
Joined: Dec 1999
I am just learning HTML
and created my page in
Notepad and I am already
using the <BR> tag.
Any other Idears?
Melissa posted this at 10:19 — 18th December 1999.
They have: 6 posts
Joined: Dec 1999
Hi josh, can i have a look at your webpage? i agree with the other reply, <br> is what i use... check out my page http://drive.to/twins
Melissa
x.x Melissa x.x
Malte posted this at 15:06 — 18th December 1999.
They have: 297 posts
Joined: Apr 1999
Try to avoid any " " spaces between the image and br tags.
Malte
------------------
Malte Ubl - www.Boardzilla.org
Communication: public<->programmers
of the Boardzilla BB
RC posted this at 15:42 — 18th December 1999.
They have: 89 posts
Joined: Sep 1999
Put the images in a table on top of each other. That should get rid of any spaces.
Ex
<table>
<TR>
<TD><img blah blah blah>
</td>
</tr>
<TR>
<TD><img blah blah blah>
</td>
</tr>
</table>
Josh Simpson posted this at 22:19 — 18th December 1999.
They have: 147 posts
Joined: Dec 1999
Thanks Malte
That seemed to be the problem.
Those Darn Spaces.
And thank you to all the other people that
made sugestions.
Josh
Malte posted this at 23:39 — 18th December 1999.
They have: 297 posts
Joined: Apr 1999
Do it like this:
<img src="foo.gif" width= height= alt=><img
src><img scr><img
scr><img
<scr ...>
This way everything fits on one screen without scrolling but you have no spaces.
Malte
------------------
Malte Ubl - www.Boardzilla.org
Communication: public<->programmers
of the Boardzilla BB
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.