I want to make page like the image below:
So far I did like this:
Now can anyone help me with this? I want 2 box just like the attached image.
So far I did like this:
PHP Code:
echo "<div style='border:1px solid #4989FE;padding: 5px;'>";
echo "<div id='left' class='width25'>";
echo "<img class='sidebar' src='$sitelink/assets/images/profile/tiny/$row[6]' alt='$row[0]'/>";
echo "</div>";
echo "<div id='right' class='width75'>";
echo "<span id='title'>$name</span><br />";
echo "<a id='a2c' href='$sitelink/p_details.php?id=$row[0]'>More</a>";
echo "</div>";
echo "<div class='clearfix'></div>";
Comment