Quote:
Originally Posted by theighost
well actually i don't want to wrap the text around the image.
i will give u the example
::::::::text text text
::::::::text text text
::::::::text text text
(empty)text text text
(empty) text text text
i don't want it to look like this
:::::: text text text
:::::: text text text
:::::: text text text
text text text text
the points represent the image
|
That's easyier, you start out with a div container, with a width less that the screen size. In the div you have the image and the text. Just float the image left ( the image must have an assigned width at the very least), then put the text in a div with a specific width, where the combined width of the image and the text div are not greater then the containers width and either float the text div left or right.
Assign the same CSS to the text div that you assign to the container only changing the width and height.
Should work.