At least one place I have found is in the "next page/previous page". Rather than use the left and right quotes, how about using the calendar arrows! This might not work in all themes if the background color is not complimentary to the arrow. Carl might not like it because he likes to set a class of "grey" in some of his themes to imply a "dimmed" appearance. However, wherever it might work, this is what I did in entries.tpl, usually located in <div class='serendipity_pageFooter' > (I also added title="whatever" to the text link):
Code: Select all
{if $footer_prev_page}
<a title="{$CONST.PREVIOUS_PAGE}" href="{$footer_prev_page}"><img alt="{$CONST.PREVIOUS_PAGE}" title="{$CONST.PREVIOUS_PAGE}" src="{serendipity_getFile file="img/back.gif"}" /></a>
<a title="{$CONST.PREVIOUS_PAGE}" href="{$footer_prev_page}"> {$CONST.PREVIOUS_PAGE}</a>[ascii characters for 2 spaces]
{/if}
Code: Select all
{if $footer_next_page}
[ascii characters for 2 spaces]<a title="{$CONST.NEXT_PAGE}" href="{$footer_next_page}">{$CONST.NEXT_PAGE}</a>
<a title="{$CONST.NEXT_PAGE}" href="{$footer_next_page}"><img alt="{$CONST.NEXT_PAGE}" title="{$CONST.NEXT_PAGE}" src="{serendipity_getFile file="img/forward.gif"}" /></a>
{/if}
I also stripped the styling out of both entries.tpl, and the plugin_calendar.tpl and added this css:
Code: Select all
.serendipity_pageFooter img,
.serendipity_calendarHeader img{
height: 16px;
width: 16px;
border: 0;
vertical-align: bottom;}Anyway, I thought it was cool & thought I would share it. If you can use it, great, if not - disregard. If the calendar arrows did not work, the same concept could be applied with a different arrow located in the theme directory.