Seeing as i can't use 'float' and 'absolute' in my title,
I have a couple of divs nested within my div, of which some are floated, and an image placeholder of absolute positioning. The floated divs are used for text values
How can i make this div NOT overlap my current 'blue' image placeholder?
It currently uses the layout:
+----------------------------+
| CREDIT CARD |
+----------------------------+
|\/\/\/\/\/\/\/\/\/\/\/\/\/\/|
+----------------------------+
| Mr Joe Bloggs addressssssss|
| +-----------+ more address |
| | |___| | <-- text appears behind image placeholder
| | | |
| |_______________| |
| footer text |
+----------------------------+
What i would like is:
+----------------------------+
| CREDIT CARD |
+----------------------------+
|\/\/\/\/\/\/\/\/\/\/\/\/\/\/|
+----------------------------+
| Mr Joe Bloggs addressssssss|
| +---------------+ more|
| | | address| <-- want text to wrap around it instead
| | | |
| |_______________| |
| footer text |
+----------------------------+
How can i make this div wrap around the image's placeholder?