diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2005-08-26 04:12:40 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2005-08-26 04:12:40 +0100 |
| commit | 126682c10d3b7059f37eabe297ca6e2d2f932dca (patch) | |
| tree | e0d0ab492fc0cd88d694d337b03d9d57e6155898 | |
| parent | b7f4bda2987193da0399aed302df0c5624e0f9ce (diff) | |
fix vertical align in content box
| -rw-r--r-- | backend.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backend.php b/backend.php index e34cde944..d931ae9a9 100644 --- a/backend.php +++ b/backend.php @@ -203,7 +203,8 @@ print "<tr class=\"titleBottom\"><td align=\"right\"><b>Link:</b></td> <td><a href=\"".$line["link"]."\">".$line["link"]."</a></td> <td> </td> </tr>"; - print "<tr><td class=\"post\" colspan=\"2\">" . $line["content"] . "</td> + print "<tr><td valign=\"top\" class=\"post\" + colspan=\"2\">" . $line["content"] . "</td> <td valign=\"top\">$feed_icon</td> </tr>"; print "</table>"; |