diff options
-rw-r--r-- | stylesheet.css | 9 | ||||
-rw-r--r-- | templates/single_photo.tpl | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/stylesheet.css b/stylesheet.css index a1c380e..fe2b2ef 100644 --- a/stylesheet.css +++ b/stylesheet.css @@ -17,6 +17,8 @@ table, tr, td { td.options {
width: 250px;
+ max-width: 250px;
+ min-width: 250px;
padding: 2px;
padding-top: 8px;
border-top: solid 1px #000000;
@@ -63,6 +65,13 @@ td.index_header { white-space: nowrap;
}
+td.photo_name {
+ background-color: #eeeeee;
+ padding: 10px;
+ vertical-align: middle;
+}
+
+
img {
border: none;
}
diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl index 9f92693..5275843 100644 --- a/templates/single_photo.tpl +++ b/templates/single_photo.tpl @@ -1,7 +1,7 @@ <!-- Single photo --> <table> <tr> - <td class="index_header" style="text-align: left;"> + <td class="photo_name" style="text-align: left;"> <b>Photo {$image_name}</b><br /> {$description}<br /> </td> |