MyBB Community Forums

Full Version: Move up a link to post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
As explained above, you can find this link in postbit/postbit_classic templates:
<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
and modify it to:
<a style="display: block; position: relative; top: -45px;" name="pid{$post['pid']}" id="pid{$post['pid']}"></a>

Adjust the top value to suit your needs - currently it moves 45px higher. Add a class instead of inline style tag and move the code to global.css if you want.
Pages: 1 2