A little help getting the html code right would be greatly appreciated.
I have attached two images, one is "what I have", the other is "What I want. When I try to left align parts, others left align as well. Here is the code, please help me get it right. Also image is missing, thanks a bunch, you guys never let us down.
<?php
/**
* @package		EasyBlog
* @copyright	Copyright (C) 2010 - 2015 Stack Ideas Sdn Bhd. All rights reserved.
* @license		GNU/GPL, see LICENSE.php
* EasyBlog is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined('_JEXEC') or die('Unauthorized Access');
?>
<tr>
    <div style="font-family:Arial;font-size:32px;font-weight:normal;color:#333;display:block; margin: 4px 0;">
				<img src="/http://www.wefloat.net/images/WeFloat-Email-BannerLogo.jpg">
			</div>
</tr>
<tr>
    <td style="background: #fff; padding: 40px 100px; text-align: center">
        
        <div style="padding-top: 30px;">
            <a href="/<?php echo $blogLink;?>" style="text-decoration: none; font-weight: bold; color: #247acf; font-size: 24px; letter-spacing: -.5px;"><?php echo $blogTitle;?></a>
        </div>
    </td>
</tr>
<tr>
    <td style="background: #fff; padding: 0 40px 40px”>
        <div style="padding: 50px; background: #fafafa; text-align: center">
            <img src="/<?php echo $blogAuthorAvatar;?>" width="60" height="60" style="border-radius: 100%; display: inline-block;" />
            <div style="padding-top: 20px 0 40px;">
                <a href="/<?php echo $blogAuthorLink;?>" style="text-decoration: none; font-weight: bold; color: #247acf;"><?php echo $blogAuthor;?></a>
                <div style="font-size: 14px; font-weight: bold; color: #888; letter-spacing: -.5px;">
                    <?php echo JText::_('COM_EASYBLOG_EMAIL_POSTED_ON');?> <?php echo $blogDate;?>
                </div>
            </div>
            <div style="padding: 40px 30px; text-align: left”>
                <?php echo $blogIntro; ?>
            </div>
            <div>
                <a href="/<?php echo $blogLink;?>" style="
		    background: #3ab54a;
                    display: inline-block;
                    line-height: 50px;
                    text-decoration: none;
		    text-align: center;
                    font-weight: bold;
                    color: #fff;
                    width: 160px;
                    border-radius: 3px;
                    margin: 0 5px;
                "><?php echo JText::_('COM_EASYBLOG_NOTIFICATION_READ_MORE');?></a>
            </div>
        </div>
    </td>
</tr>