changeset 4:4351c0bf33d4

Improving IGB formatting
author Dominic Cleal <dominic@computerkb.co.uk>
date Sat, 24 Jan 2009 17:35:31 +0000
parents e640eb6cefc3
children 42268fc087a9
files reproctool.cgi
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/reproctool.cgi	Sat Jan 24 17:18:17 2009 +0000
+++ b/reproctool.cgi	Sat Jan 24 17:35:31 2009 +0000
@@ -105,10 +105,11 @@
         }
         .item
         {
-            width: 64px;
+            text-align: center;
         }
     </style>
 </head>
+
 <body>
 <table>
 END
@@ -142,8 +143,8 @@
         $img = "icons/icons_items_png/64_64/icon07_15.png";
     }
     
-    print "<td class='item $style'>";
-    print "<img src='$img_http_path/$img' width='64' height='64' alt='$item->{name}' /><br />$text";
+    print "<td width='64' class='item $style'>";
+    print "<img src='$img_http_path/$img' width='64' height='64' border='1' alt='$item->{name}' /><br />$text";
     print "</td>\n";
     
     $col++;