]> git.mjollnir.org Git - s9y.git/commitdiff
Use proper calendar image size, bypasses IE resizing problems
authorgarvinhicking <garvinhicking>
Fri, 19 Aug 2005 09:01:26 +0000 (09:01 +0000)
committergarvinhicking <garvinhicking>
Fri, 19 Aug 2005 09:01:26 +0000 (09:01 +0000)
docs/NEWS
templates/default/plugin_calendar.tpl

index c6de0bb737862729d3f8c0cf0b3f8e7667bf5d27..2552a2a41e8cdd471413eb6282499952017a1c83 100644 (file)
--- a/docs/NEWS
+++ b/docs/NEWS
@@ -3,6 +3,10 @@
 Version 0.8.4 ()
 ------------------------------------------------------------------------
 
+    * Add HTML information about calendar arrows image size to bypass
+      large sizing in Internet Explorer. Thanks to frodeste from the
+      Forums!
+
     * Hide title of an entry in the frontend, if entry is draft and not
       displayed. Fixes Bug #1260667 (garvinhicking)
 
index 996001a06bba8656258bfc2ae1c065c21cb90c5d..7fd58a755bd1d5806984da57f0ae907fbcc760fa 100644 (file)
@@ -2,7 +2,7 @@
     <tr>
         <td class="serendipity_calendarHeader">
 {if $plugin_calendar_head.minScroll le $plugin_calendar_head.month_date}
-            <a title="{$CONST.BACK}" href="{$plugin_calendar_head.uri_previous}"><img alt="{$CONST.BACK}" src="{serendipity_getFile file="img/back.png"}" style="border: 0px" /></a>
+            <a title="{$CONST.BACK}" href="{$plugin_calendar_head.uri_previous}"><img alt="{$CONST.BACK}" src="{serendipity_getFile file="img/back.png"}" width="16" height="12" style="border: 0px" /></a>
 {/if}
         </td>
 
@@ -12,7 +12,7 @@
 
         <td class="serendipity_calendarHeader" style="text-align: right">
 {if $plugin_calendar_head.maxScroll ge $plugin_calendar_head.month_date}
-            <a title="{$CONST.FORWARD}" href="{$plugin_calendar_head.uri_next}"><img alt="{$CONST.FORWARD}" src="{serendipity_getFile file="img/forward.png"}" style="border: 0px" /></a>
+            <a title="{$CONST.FORWARD}" href="{$plugin_calendar_head.uri_next}"><img alt="{$CONST.FORWARD}" src="{serendipity_getFile file="img/forward.png"}" width="16" height="12" style="border: 0px" /></a>
 {/if}
         </td>
     </tr>