MyBB Community Forums

Full Version: Post comment style
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
For lack of a better explanation, what I'm trying to do is make it so anytime a reply is made or post is made that the content get's put inside a nice CSS styled speech bubble type thing if you will Smile

I got the idea from viewing this image but need the little pointy thing to be pointing upwards since we don't use classic post view.

[Image: WCnRu.png]

As always any help is greatly appreciated Smile

Thanks!
Any link of the website from where this screenshot taken from ?
Go to: ACP > Templates > Postbit Templates > postbit_classic > and find;
{$post['message']}
and Change it into;
<div id="1" style="float:left; z-index: 1; position: Absolute;">
<br><img src="http://mimspace.com/mybb/images/chameleon/arrowleft.png">
</div>
<div id="2" style="z-index: 0; padding: 5px;">
<fieldset style="background: #ffffff;
border:2px solid #C3C3C3;
-moz-border-radius:8px;
-webkit-border-radius:8px;
position: relative;">{$post['message']}</fieldset>
</div>
</div></div>

Note: Credits goes to Mimspace not me.
Okay, but even though I don't use classic view this will work?
Yes, same procedure with postbit template. Search {$post['message']} and do the above edits Wink
Thanks! any idea how to get the little arrow image to point up and not to the left? since avatars are above the posts?