diff options
author | chrisaga <chrisaga@piwigo.org> | 2005-11-13 10:15:06 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2005-11-13 10:15:06 +0000 |
commit | a06d7c5cae0218384ba0879841cc4e81d229d2dc (patch) | |
tree | da67d91667aa55a0bde9e355045808f774e3396f /template/yoga/picture.tpl | |
parent | 5fa7cab4da94a9eac7a09a24242aaaa171501460 (diff) |
- bug 197 fixed : IE doesn't support multiple class
git-svn-id: http://piwigo.org/svn/branches/branch-1_5@933 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/picture.tpl')
-rw-r--r-- | template/yoga/picture.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/yoga/picture.tpl b/template/yoga/picture.tpl index 7a574b36e..c9df55eeb 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 --> |