diff options
author | mistic100 <mistic@piwigo.org> | 2011-04-27 17:56:18 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-04-27 17:56:18 +0000 |
commit | a843760442133882060d35fb7829e48a6f7147a1 (patch) | |
tree | 8f38dbe35dfed516642819ecc67ff6635d4f89e2 | |
parent | 619be51edf20e2604e62599dfdd862d2a26ea5c5 (diff) |
merge r10645 from trunk
git-svn-id: http://piwigo.org/svn/branches/2.2@10646 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | themes/default/template/picture.tpl | 2 | ||||
-rw-r--r-- | themes/default/theme.css | 14 |
2 files changed, 12 insertions, 4 deletions
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index f52dc3255..ecfb425f1 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -106,6 +106,7 @@ y.callService( </div> +<div id="infosImage"> {if $DISPLAY_NAV_THUMB} {if isset($previous)} <a class="navThumb" id="linkPrev" href="{$previous.U_IMG}" title="{'Previous'|@translate} : {$previous.TITLE}" rel="prev"> @@ -277,6 +278,7 @@ y.callService( {/foreach} </table> {/if} +</div> {* <!-- infosImage --> *} <hr class="separation"> diff --git a/themes/default/theme.css b/themes/default/theme.css index 3a19b081a..2f0af02c9 100644 --- a/themes/default/theme.css +++ b/themes/default/theme.css @@ -355,15 +355,21 @@ TD.calDayHead { margin: 0 auto; border: 0; } + +#infosImage { + position:relative +} -#linkPrev { - float: left; +#infosImage #linkPrev { + position:absolute; + left:0; margin-right: 10px; margin-left: 5px; } -#linkNext { - float: right; +#infosImage #linkNext { + position:absolute; + right:0; margin-right: 5px; margin-left: 10px; } |