Size of graphics
Posted: Fri Aug 19, 2005 12:07 pm
plugin_calendar.tpl is missing info about the size of the arrows used in the calendar. I see this causes trouble for some browerses (although it definently shouldn't)
A diff:
5c5
< <a title="{$CONST.BACK}" href="{$plugin_calendar_head.uri_previous}"><img alt="{$CONST.BACK}" height="12" width="16" 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"}" style="border: 0px" /></a>
15,16c15
< <a title="{$CONST.FORWARD}" href="{$plugin_calendar_head.uri_next}"><img alt="{$CONST.FORWARD}" height="12"
< width="16" 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"}" style="border: 0px" /></a>
This seems to fix the problems I had.
A diff:
5c5
< <a title="{$CONST.BACK}" href="{$plugin_calendar_head.uri_previous}"><img alt="{$CONST.BACK}" height="12" width="16" 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"}" style="border: 0px" /></a>
15,16c15
< <a title="{$CONST.FORWARD}" href="{$plugin_calendar_head.uri_next}"><img alt="{$CONST.FORWARD}" height="12"
< width="16" 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"}" style="border: 0px" /></a>
This seems to fix the problems I had.