I have a rounded corner box, using 4 corner images. In the box, I have a PHP generated table that draws records from a database.
The problem is that my bottom two corners do not go on the bottom, but stay right below the upper corners (as if the box has no content)
I tried to fix that by generating the box in PHP, right where the table is generated but it made no difference.
How can I bring those two corers down?
This is the PHP version:
The problem is that my bottom two corners do not go on the bottom, but stay right below the upper corners (as if the box has no content)
I tried to fix that by generating the box in PHP, right where the table is generated but it made no difference.
How can I bring those two corers down?
This is the PHP version:
PHP:
echo "<div class='roundcont'>";
echo "<div class='roundtop'>";
echo "<img src='tl.gif' alt='' width='15' height='15' class='corner' style='display: none' />";
echo "</div>";
echo "<div class='Right_FM'>";
echo "<table width='100%' border='0' align='left'>";
while($nt=mysql_fetch_array($result)){
$dt=date("F j, Y", $nt[post_time]);
echo "<tr>";
echo "<td width='30%'>$dt</td>";
echo "<td width='70%'><a href='http://troutsalmonchar.com/Forum/viewtopic.php?f=$nt[forum_id]&t=$nt[topic_id]'>$nt[post_subject]</a></td>";
echo "<tr>";
}
echo "</table>";
echo "</div>";
echo "<div class='roundbottom'>";
echo "<img src='bl.gif' alt=''width='15' height='15' class='corner' style='display: none' />";
echo "</div>";
echo "</div>";