diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2008-11-27 22:08:56 +0000 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-27 22:08:56 +0000 |
| commit | 26c9ec6d4ba2a563a53b74612af4a0083c7fa23e (patch) | |
| tree | ce597157cf13ecce364ae68571f5c5009a25e436 /themes/default/views/photo.html.php | |
| parent | bb388af21af7a4778f55598e8b78fc71ae0cd04b (diff) | |
Make header buttons, line them up nicely and float them to the right
so that they don't push the album grid down.
Diffstat (limited to 'themes/default/views/photo.html.php')
| -rw-r--r-- | themes/default/views/photo.html.php | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/themes/default/views/photo.html.php b/themes/default/views/photo.html.php index 1229bc00..6ac30d86 100644 --- a/themes/default/views/photo.html.php +++ b/themes/default/views/photo.html.php @@ -1,10 +1,14 @@ <? defined("SYSPATH") or die("No direct script access."); ?> -<div id="gItem"> - <a href="" class="gButtonLink"> - <?= sprintf(_("Full size (%dx%d)"), $item->width, $item->height) ?> - </a> - <?= $theme->photo_top() ?> +<div id="gItemHeader"> + <div id="gItemHeaderButtons"> + <a href="" class="gButtonLink"> + <?= sprintf(_("Full size (%dx%d)"), $item->width, $item->height) ?> + </a> + <?= $theme->photo_top() ?> + </div> +</div> +<div id="gItem"> <img id="gPhotoID-<?= $item->id ?>" alt="photo" src="<?= $item->resize_url() ?>" width="<?= $item->resize_width ?>" height="<?= $item->resize_height ?>" /> |
