Quote:
Originally Posted by Garrey
But how can I move it? It's before post - but I would like to get it after post and aligned to right.
Thanks!
|
Hi
First, go to Admincp > Plugins, deactivate the plugin "add steam profile" in hook "postbit_display_start".
Then you navigate to Styles > Templates > Postbit > postbit/postbit_legacy (depends on what you're using)
Find:
HTML Code:
<!-- / attachments -->
</vb:if>
Below, add:
HTML Code:
<div class="steamprofile" title="{vb:raw post.steamid}"></div>
Then Navigate to Styles > Templates > CSS > additional.css
Add this to the template somewhere:
Code:
div.steamprofile{
float:right;
display:block;
z-index:300;
}
Save
That's it!