Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

HTML Email Signature Issue

Hi,

I've tried to create a simple, clean html email signature but when I add the signature to my iphone (after shaking the phone to undo attribute changes) it seems to lose the styling.

Can anyone let me know where I am going wrong, is there some sort of code to keep the styling in all devices and email programs?

I will paste the code here;

<table>

    <td width="800" style="font-family: Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px;">


                <span style="color: #29b5ff; font-size: 12px; line-height: 20px; font-weight: bold;">Alex Tranah</span>

                <span style="color: #29b5ff; font-size: 12px; font-weight: bold;"> | </span>

                <span style="color: #959595; font-size: 12px; font-weight: bold;"> Director</span>




                <br />

                    <span style="color: #959595; font-size: 12px; line-height: 20px; font-weight: bold;">5 Clifton Close | Benfleet | Essex | SS7 1DJ</span>





                <br />

                    <span style="color: #29b5ff; font-weight: bold;"> T </span>
                    <a style="color: #959595; font-size: 12px; line-height: 20px; font-weight: normal; text-decoration:none;" href="tel:01702872622">01702 872 622</a>

                    <span style="color: #29b5ff; font-weight: bold;"> M </span>
                    <a style="color: #959595; font-size: 12px; line-height: 20px; font-weight: normal; text-decoration:none;" href="tel:07557901338">0755 790 1338</a>                      

                    <span style="color: #29b5ff; font-weight: bold;"> E </span>
                    <a style="color: #959595; font-size: 12px; line-height: 20px; font-weight: normal; text-decoration:none;" href="mailto:alex@highlineelectrical.com">Alex@HighlineElectrical.com</a>





                <br />

                    <a href="http://www.highlineelectrical.com"><img src="http://i.imgur.com/oiPvfCm.jpg" alt="Highline Electrical" width="265" height="95  " border="0"></a>





                <br />
                    <span style="color: #959595; font-size: 10px; line-height: 14px; font-weight: normal;">This email (and any attachments) is intended solely for the individual(s) to whom addressed. It may contain confidential and/or legally privileged information. Any statement or opinions therein are not necessarily those of Highline Electrical unless specifically stated. Any unauthorised use, disclosure or copying is prohibited. If you have received this email in error, please notify the sender and delete it from your system. Security and reliability of the e-mail and attachments are not guaranteed. You must take full responsibility for virus checking. Nothing in this email shall constitute an order of supply or payment on behalf of Highline Electrical unless accompanied by an official order form forwarded to you by fax or post and clearly showing the authorising signature of a Director of Highline Electrical. Only Directors of Highline Electrical are authorised to pledge funds and place orders on behalf of the company. If you have any queries, please contact the Director.</span>
    </td>



</table>

Thanks,

Alex