View Single Post
Old 06-19-2009, 09:04 AM   #2 (permalink)
neonjuice
Registered User
 
neonjuice's Avatar
 
Join Date: Dec 2008
Location: Minnesota
Posts: 114
OS: Vista Ultimate 64 bit SP1. Linux Ubuntu, XP Pro


Re: How to insert scrolling pictures on website

Hi.

You would need to upload the images to your servers public HTML folder. Then to add those to your <marquee> attribute, you need to add an <img src> attribute to the display the images.

Code:
<marquee><img src="example.png" width="100px" height="300px" alt="example image" /></marquee>
To put a space between each image.
Add this to the end of each image src code.
Code:
&nbsp;
for example


Code:
<marquee><img src="example.png" width="100px" height="300px" alt="example image" />&nbsp;<img src="example" alt="example" /></marquee>

To make your images a link
Code:
<a href="http://www.example.com"><img src="example.png" alt="example" /></a>
neonjuice is offline   Reply With Quote