MyBB Community Forums

Full Version: jump.gif is this used?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I found this in the standard css:

Quote:.quick_jump{background:url(images/jump.gif) no-repeat 0;width:13px;height:13px;padding-left:13px;vertical-align:middle;border:none;}

But when I turn the quick jump options on, it doesnt even seem to be used.

(its a little green arrow)

I'm currently spriting my images, so need to find where its displayed.
Searching the templates for jump.gif or quick_jump didnt pull anything up, anyone know where this is displayed or if its used?
It shows on the forum display template next to the start of the thread name to jump to the first unread post.
yeah, your right. Interestingly this didn't use the style, but the direct image:

<a href="{$thread['newpostlink']}"><img src="{$theme['imgdir']}/jump.gif" alt="{$lang->goto_first_unread}" title="{$lang->goto_first_unread}" /></a>

and not:
<a href="{$thread['newpostlink']}"><span class="quick_jump"></span></a>

I'm not sure if that style .quick_jump is ever used (since it looks like this is the only place it 'should' be used)