Alright, I
JUST figured it out.

So, for those that want to do this in any Curve or Core theme, listen up!

1) Copy the "Profile.template.php" file from the "\Themes\default" folder into your custom theme.
2) Open that newly copied "Profile.template.php" file in your editor (I recommend "Notepad ++").
3) Find the following code:
', $context['member']['avatar']['image'], '& then replace it with the following:
<div class="blurb">', $context['member']['avatar']['image'], $context['member']['blurb'], '</div>3a) If you don't want the "Personal Text" to show up a second time under the "Custom Title" line on your profile page, find the following code and delete it from your custom "Profile.template.php" file. If you do want it to, just ignore this step.
if (!empty($context['member']['blurb']))
echo '
<dt>', $txt['personal_text'], ': </dt>
<dd>', $context['member']['blurb'], '</dd>';
4) Now open up your "index.css" file in your custom theme's css folder.
5) Find the following code: (NOTE: the Margin numbers may be different depending if the theme was built off the "default Curve" theme or the "Core" theme.)
#basicinfo img.avatar
{
display: block;
margin: 10px 0 0 0;
}
Replace with:
#basicinfo img.avatar
{
display: block;
margin: 10px 0 10px 5px;
}
Then find:
#main_admsection #basicinfo img.avatar
{
float: right;
vertical-align: top;
}
and replace with:
#main_admsection #basicinfo .blurb
{
float: right;
text-align: center;
margin-right: 8px;
margin-top: 40px;
}
#main_admsection #basicinfo .blurb img.avatar
{
display: block;
margin-left: auto;
margin-right: auto;
margin-top: -44px;
margin-bottom: 5px;
}
That should allow you get the Avatar and the Personal Text together on the right side of the screen just like in the 1.1.x profiles.
If you have any questions, I'd be happy to answer them.
