diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-08 12:39:33 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-08 12:39:33 +0000 |
commit | 2d1b7b600731d0333acbbdf3c7f253eadbde71d6 (patch) | |
tree | ac7ecd145f7331a16aa2039459ee79aa9d5b7312 | |
parent | 8c399c253036c9520fb951eee149e492838d297e (diff) |
issue33, fixed nasty IE viewing page selectors wrong
git-svn-id: file:///var/lib/svn/phpfspot/trunk@181 fa6a889d-dae6-447d-9e79-4ba9a3039384
-rw-r--r-- | templates/photo_index.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/photo_index.tpl b/templates/photo_index.tpl index 5b44449..8aea9bc 100644 --- a/templates/photo_index.tpl +++ b/templates/photo_index.tpl @@ -66,7 +66,7 @@ </td> </tr> <tr> - <td style="text-align: left; width: 32px;"> + <td style="text-align: left; width: 33%;"> { if $previous_url == "" } { if $count != 0 } <img src="resources/arrow_left_gray.png" alt="first page reached" /> @@ -77,14 +77,14 @@ </a> { /if } </td> - <td style="text-align: center;"> + <td style="text-align: center; width: 33%;"> { if $page_selector == "" } { else } {$page_selector} { /if} </td> - <td style="text-align: right; width: 32px;"> + <td style="text-align: right; width: 33%;"> { if $next_url == "" } { if $count != 0 } <img src="resources/arrow_right_gray.png" alt="last page reached" /> |