HTML help, Trying to move image from left side to right on page?

In the img of your html, add the following: id="thisone"

(Note that 'thisone' can be anything you want, like 'herbert' or 'something' or 'yahoo' or 'whatever'.)

Next, up top, between < head > and < / head > in your html, place something like this:

< style type="text/css" >

img#thisone { float:right; margin:1em; }

</ style >

That'll move your image to the right side, and make sure it gets a little padding so's it doesn't go TOO far to the right, plus gets a little padding so stuff doesn't cram up next to it.

Later, if you change your mind and want it back to the left, just change 'float:right'
to 'float:left'
 
You can put the image in a div box and give that div box a position to the right on 100%

Example:

<div styles="position: absolute; right: 100%">
<!-- image -->
</div>
 
Use the below code
<marquee height=20 width=100% align=left direction=left scrolldelay="250" bgcolor="#C0C0C0"><font color=red>insert your image here
</font></marquee>
and your job is done
 
Back
Top