MyBB Community Forums

Full Version: Curving text around avatar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
I am trying to figure out a way to curver the portal announcement text/content around the avatar. I drew what I am trying to do below:
[attachment=977]

I looked in portal_announcement template, but all I found was $avatar, and I do not know what to do with it. Thanks in advance!
Two changes needed. Admin CP > Template > Modify/Delete > *template set expand* > Portal Templates Expand > portal_announcement, change
<table border="0" cellpadding="$theme[tablespace]" width="100%"><tr>$avatar<td class="trow1">$message$attachments</td></tr>
to
<table border="0" cellpadding="$theme[tablespace]" width="100%"><tr><td class="trow1">$avatar$message$attachments</td></tr>
then open portal.php and change
$avatar = "<td class=\"trow\" class=\"trow1\" width=1 align=\"center\" valign=\"top\"><img src=\"$announcement[avatar]\"></td>";
to
		$avatar = "<img src=\"$announcement[avatar]\" align=\"left\">";

That should do it!
Thank you very much!