Css Positioning

eltonyliu

New Member
Messages
23
Reaction score
0
Points
0
I can't see your site so I don't know what exactly going on but if your using float then you cancel it with the clear property eg:

img.floatRight{
clear: left;
float: right;
}

but I don't like doing it like that. I prefer using position property using either relative or absolute and putting it inside a position relative div element

hope this helps you
 
Top