diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/default/template/picture.tpl | 2 | ||||
-rw-r--r-- | themes/default/theme.css | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index f52dc3255..12d020269 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -106,6 +106,7 @@ y.callService( </div> +<div id="imageInfos"> {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> <hr class="separation"> diff --git a/themes/default/theme.css b/themes/default/theme.css index 3a19b081a..1c7b075bb 100644 --- a/themes/default/theme.css +++ b/themes/default/theme.css @@ -356,14 +356,21 @@ TD.calDayHead { border: 0; } +#imageInfos { + position:relative; + min-height:110px; +} + #linkPrev { - float: left; + position:absolute; + left:0; margin-right: 10px; margin-left: 5px; } #linkNext { - float: right; + position:absolute; + right:0; margin-right: 5px; margin-left: 10px; } |