Great, then I need to know where to find this button in the templates, because I couldn't find anything that looked alike so far...
Edit:
Okay, I found it in the index_Original.css
But how can I link the image then?
.boardindex_board_lastpost
{
background: url(../images/_Original/spec/last_post_arrow.png) no-repeat;
background-position: left center;
padding-left: 24px;
padding-right: 38px;
a{url($board['last_post']['link'])};
}
.boardindex_board_lastpost:hover
{
background: url(../images/_Original/spec/last_post_arrow_hover.png) no-repeat;
background-position: left center;
}
Edit2:
And another problem...
I thought the Button was meantioned here in the div class. But even if I delete the class, the button is still there...so what have I forgotten?
<div class="boardindex_board_lastpost floatright">
<small>
<strong>', $txt['last_post'], '</strong> ', $txt['by'], ' ', $board['last_post']['member']['link'] , '<br />
', $txt['in'], ' ', $board['last_post']['link'], '<br />
', $txt['on'], ' ', $board['last_post']['time'],'
</small>
</div>