Quote:
Originally Posted by ggrimes620
Does anyone know how to move the thumbs image to the top right corner or bottom right corner of posts? I've attached a screenshot of how it's shown on my forum currently. Obviously I've messed something up and I cannot for the life of me figure out what I did.
...........
....................
Thanks to whomever saves the day!
|
I don't think you missed something, but your
postbit_display_complete hook needs to be modified where location of the post it has be set to.
you see here, it says the following:
Code:
$template_hook['postbit_messagearea_end'] .= $templater->render();
you need to change the hook :
postbit_messagearea_end to the place where you want and then play with the rest using css modification.
so basically
postbit_messagearea_end means the end of the post box area, but you need it somewhere close to the right side either up or down...
here is the list of the post hooks I know of:
PHP Code:
$template_hook['postbit_start']
$template_hook['postbit_userinfo_left']
$template_hook['postbit_userinfo_right_after_posts']
$template_hook['postbit_userinfo_right']
$template_hook['postbit_messagearea_start']
$template_hook['postbit_signature_start']
$template_hook['postbit_signature_end']
$template_hook['postbit_controls']
try them one by one and see where each one throw the icon at in your post...
I guess you can do that easily
Good luck!!