aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorchrisaga <chrisaga@piwigo.org>2005-11-21 20:10:10 +0000
committerchrisaga <chrisaga@piwigo.org>2005-11-21 20:10:10 +0000
commit687d3922d8a6b482ccf5f18720cedcfc1bb1bc1c (patch)
tree2102adec99298a000f83d39be9cb56c87997fd39 /template
parentcf0b90d473cc8ebf86f76004436744dbb2d92d76 (diff)
- bug 197 fixed : IE doesn't support multiple class (port form 1.5 branch)
git-svn-id: http://piwigo.org/svn/trunk@950 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template')
-rw-r--r--template/yoga/image.css11
-rw-r--r--template/yoga/picture.tpl8
2 files changed, 11 insertions, 8 deletions
diff --git a/template/yoga/image.css b/template/yoga/image.css
index cff44831e..a7c8dfa83 100644
--- a/template/yoga/image.css
+++ b/template/yoga/image.css
@@ -65,20 +65,23 @@ de l'image...
margin: 0 auto;
}
-.navThumb.prev {
+.navThumb {
+ margin-top: 2px;
+}
+#thumbPrev {
float: left;
}
-.navThumb.next {
+#thumbNext {
float: right;
}
-.thumbLink.prev {
+#linkPrev {
margin-right: 10px;
margin-left: 5px;
}
-.thumbLink.next {
+#linkNext {
margin-right: 5px;
margin-left: 10px;
}
diff --git a/template/yoga/picture.tpl b/template/yoga/picture.tpl
index 2fa8a196c..04b5b6ff5 100644
--- a/template/yoga/picture.tpl
+++ b/template/yoga/picture.tpl
@@ -65,13 +65,13 @@
</div>
<!-- BEGIN previous -->
-<a class="navThumb prev" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}">
- <img src="{previous.IMG}" class="thumbLink prev" alt="{previous.TITLE_IMG}">
+<a class="navThumb" id="thumbPrev" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}">
+ <img src="{previous.IMG}" class="thumbLink" id="linkPrev" alt="{previous.TITLE_IMG}">
</a>
<!-- END previous -->
<!-- BEGIN next -->
-<a class="navThumb next" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}">
- <img src="{next.IMG}" class="thumbLink next" alt="{next.TITLE_IMG}">
+<a class="navThumb" id="thumbNext" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}">
+ <img src="{next.IMG}" class="thumbLink" id="linkNext" alt="{next.TITLE_IMG}">
</a>
<!-- END next -->