View Full Version : Problems with scrolling pic code "marquee"


quimby5150
03-24-2006, 01:34 AM
Ok so I'm using the marquee code like so

<marquee>
<img src="http://xxx.photobucket.com.jpg" align="LEFT">
<img src="http://xxx.photobucket.com.jpg" align="LEFT">
</marquee>

The problem is that the pics are huge !!!!!!! how do I reduce the size of the the pic?!?!?

Erik

J to the izzosh
03-24-2006, 02:04 AM
Well, you could try specifing the images' dimensions with the width and height attributes in the <img> tag, but I'd recommend actually resizing them in an image editor like Photoshop or the GIMP (or MS Paint, if you're really hard up), that way the user doesn't have to download a huge image only to have it displayed as a small image. An image editor will also resample the image better than a browser will, so the image quality isn't degraded as much.

The width and height attributes are added like this:

<marquee>
<img src="http://xxx.photobucket.com.jpg" width="x" height="y" align="LEFT">
<img src="http://xxx.photobucket.com.jpg" width="x" height="y" align="LEFT">
</marquee>

...where x is the width of the image in pixels and y is the height of the image in pixels.

xraidercutiex
03-31-2006, 02:50 AM
<marquee>
<img width=number height=number src=http://www.photobucket.com align=left>
<img width=number height=number src=http://www.photobucket.com align=left>
</marquee>

Make sure you change the areas that say number to the number you choose. [=