View Single Post
Old 07-01-2004, 05:52 AM   #3 (permalink)
Distorted
Inactive
 
Join Date: 10-13-03
Posts: 275
iTrader: 0 / 0%
Latest Blog:
None

Distorted is on the right pathDistorted is on the right path
You just need to use the CSS float property.

It should be something like this:

[code:1:9c68a4497a]
#floatingImage {
float: left;
clear: right;
}
[/code:1:9c68a4497a]

The float property tells it to stay on the left side, and the clear property is telling the text to wrap around the right side.

Hope this helps.
Distorted is offline   Reply With Quote