I try to put a picture in the right side of the page. the problem is that there is a text near it, and in some browsers the picture hide the text. I use the next CSS for the <img> attribute:
.imgP
{
position:relative;
top:10px;
right: 10px;
float:right;
}
the text is the next element:
<p> bla bla bla... </p>
How can I change it, in order that the text would move automatically near the picture?
positionandfloattogether (get rid of the position). But you did not provide enough information, so we can't help you more.