Hey guys, I am making some sort of a "wall" for my Twitter clone ish site.
Here is a printscreen of my problem:
[ATTACH]4240[/ATTACH]
As you can see, the text is overlapping an area that I dont want the text to be, I have tried to set a width with <font style="width:amount">, and I have also tried to make a new div and wrapped it around the text area, but it didnt work as I wanted to.
Here is a snippet of the code:
$result = mysql_query("SELECT * FROM status_comments WHERE commented_status_id='$status_id'");
$num_rows = mysql_num_rows($result);
echo '<div style="float:left"><a href="profile.php?profile=' . $row2['username'] . '"><b><div style="float:left"><img src="' . $row2['picture_thumb'] . '" width="30"></div><font color="black" style="margin-left:2px">' . ucfirst($row2['fullname']) . '</font></b></a></div>';
echo '<br /><div style="padding-top:9px">';
echo '<font size="-2">Postet: ' . $row['date'] . '</font><br />';
$_SESSION['status_id'] = $status_id;
echo '<strong>' . $row['status'] . '</strong>';
So now, how do I limit the text area?
Any help is appreciated,
Thanks in advance 🙂