Try:
img#MYIMAGE {
float: right;
}
Not sure if that'll work - it depends on how div#contact_17
is styled, which isn't clear from your question.
Dominic Rodger
2009-02-24 09:19:41
Try:
img#MYIMAGE {
float: right;
}
Not sure if that'll work - it depends on how div#contact_17
is styled, which isn't clear from your question.
Just float it right
#MYIMAGE{
float:right;
}
It would be a good idea to fix the width of the image too.
An alternative is to use absolute positioning.
If #contact_17 is position:relative, you can set #MYIMAGE to position:absolute and set its 'right' property to 0 (or however far from the right edge you desire). Absolute positioning will ignore anything else in the div, though, so if you do that be sure to set the rest of the contents to not overlap.