Changing Font Color in HTML Email for AOL Mail
up vote
3
down vote
favorite
EDIT: I should mention that the layout was done with tables. I've even tried styling the parent <td>
element to get the desired appearance. Still, no bananas.
How do you change the font color of text in an HTML email in AOL's client?
I've tried the following code:
<td>
<span style="color:#FFFFFF;">My Text</span>
</td>
After some suggestions from the community, I've also tried the following approach:
<td>
<font color="white">My Text</font>
</td>
Unfortunately, the text color doesn't change at all. In fact, when viewing the computed styles in Firebug, it doesn't show any color being applied to the element.
I'd expect this to work since all other inline styles work fine and the email is rendered beautifully in every other major client.
Thanks in advance for your help.
html css html-email aol
add a comment |
up vote
3
down vote
favorite
EDIT: I should mention that the layout was done with tables. I've even tried styling the parent <td>
element to get the desired appearance. Still, no bananas.
How do you change the font color of text in an HTML email in AOL's client?
I've tried the following code:
<td>
<span style="color:#FFFFFF;">My Text</span>
</td>
After some suggestions from the community, I've also tried the following approach:
<td>
<font color="white">My Text</font>
</td>
Unfortunately, the text color doesn't change at all. In fact, when viewing the computed styles in Firebug, it doesn't show any color being applied to the element.
I'd expect this to work since all other inline styles work fine and the email is rendered beautifully in every other major client.
Thanks in advance for your help.
html css html-email aol
aol still exists? people still need training wheels to get onto the internet?
– Marc B
Sep 7 '12 at 20:12
2
@MarcB: Grandma and Grandpa still need to use the internet sometimes.
– Wesley Murch
Sep 7 '12 at 20:13
You're telling me, man. I'm designing a mass email for my client at the moment, and I've got to make sure that it is going to render correctly across all of the major email clients. AOL qualifies as "major" apparently.
– elucid8
Sep 7 '12 at 20:33
1
You might find this link helpful if you have to support all "major" clients: msdn.microsoft.com/en-us/library/office/… Microsoft totally destroyed a 1 time descent rendering capabilities in Outlook by replacing it with the rendering capabilities of Word which means MSFT hates web developers and we need to code like it's 1999
– scrappedcola
Sep 7 '12 at 20:43
Yeah, using the MS Word engine to render HTML in Outlook was a horrible idea. I've been cursing Microsoft for quite some time for that little snafu.
– elucid8
Sep 7 '12 at 21:04
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
EDIT: I should mention that the layout was done with tables. I've even tried styling the parent <td>
element to get the desired appearance. Still, no bananas.
How do you change the font color of text in an HTML email in AOL's client?
I've tried the following code:
<td>
<span style="color:#FFFFFF;">My Text</span>
</td>
After some suggestions from the community, I've also tried the following approach:
<td>
<font color="white">My Text</font>
</td>
Unfortunately, the text color doesn't change at all. In fact, when viewing the computed styles in Firebug, it doesn't show any color being applied to the element.
I'd expect this to work since all other inline styles work fine and the email is rendered beautifully in every other major client.
Thanks in advance for your help.
html css html-email aol
EDIT: I should mention that the layout was done with tables. I've even tried styling the parent <td>
element to get the desired appearance. Still, no bananas.
How do you change the font color of text in an HTML email in AOL's client?
I've tried the following code:
<td>
<span style="color:#FFFFFF;">My Text</span>
</td>
After some suggestions from the community, I've also tried the following approach:
<td>
<font color="white">My Text</font>
</td>
Unfortunately, the text color doesn't change at all. In fact, when viewing the computed styles in Firebug, it doesn't show any color being applied to the element.
I'd expect this to work since all other inline styles work fine and the email is rendered beautifully in every other major client.
Thanks in advance for your help.
html css html-email aol
html css html-email aol
edited Sep 7 '12 at 21:07
asked Sep 7 '12 at 20:10
elucid8
78211234
78211234
aol still exists? people still need training wheels to get onto the internet?
– Marc B
Sep 7 '12 at 20:12
2
@MarcB: Grandma and Grandpa still need to use the internet sometimes.
– Wesley Murch
Sep 7 '12 at 20:13
You're telling me, man. I'm designing a mass email for my client at the moment, and I've got to make sure that it is going to render correctly across all of the major email clients. AOL qualifies as "major" apparently.
– elucid8
Sep 7 '12 at 20:33
1
You might find this link helpful if you have to support all "major" clients: msdn.microsoft.com/en-us/library/office/… Microsoft totally destroyed a 1 time descent rendering capabilities in Outlook by replacing it with the rendering capabilities of Word which means MSFT hates web developers and we need to code like it's 1999
– scrappedcola
Sep 7 '12 at 20:43
Yeah, using the MS Word engine to render HTML in Outlook was a horrible idea. I've been cursing Microsoft for quite some time for that little snafu.
– elucid8
Sep 7 '12 at 21:04
add a comment |
aol still exists? people still need training wheels to get onto the internet?
– Marc B
Sep 7 '12 at 20:12
2
@MarcB: Grandma and Grandpa still need to use the internet sometimes.
– Wesley Murch
Sep 7 '12 at 20:13
You're telling me, man. I'm designing a mass email for my client at the moment, and I've got to make sure that it is going to render correctly across all of the major email clients. AOL qualifies as "major" apparently.
– elucid8
Sep 7 '12 at 20:33
1
You might find this link helpful if you have to support all "major" clients: msdn.microsoft.com/en-us/library/office/… Microsoft totally destroyed a 1 time descent rendering capabilities in Outlook by replacing it with the rendering capabilities of Word which means MSFT hates web developers and we need to code like it's 1999
– scrappedcola
Sep 7 '12 at 20:43
Yeah, using the MS Word engine to render HTML in Outlook was a horrible idea. I've been cursing Microsoft for quite some time for that little snafu.
– elucid8
Sep 7 '12 at 21:04
aol still exists? people still need training wheels to get onto the internet?
– Marc B
Sep 7 '12 at 20:12
aol still exists? people still need training wheels to get onto the internet?
– Marc B
Sep 7 '12 at 20:12
2
2
@MarcB: Grandma and Grandpa still need to use the internet sometimes.
– Wesley Murch
Sep 7 '12 at 20:13
@MarcB: Grandma and Grandpa still need to use the internet sometimes.
– Wesley Murch
Sep 7 '12 at 20:13
You're telling me, man. I'm designing a mass email for my client at the moment, and I've got to make sure that it is going to render correctly across all of the major email clients. AOL qualifies as "major" apparently.
– elucid8
Sep 7 '12 at 20:33
You're telling me, man. I'm designing a mass email for my client at the moment, and I've got to make sure that it is going to render correctly across all of the major email clients. AOL qualifies as "major" apparently.
– elucid8
Sep 7 '12 at 20:33
1
1
You might find this link helpful if you have to support all "major" clients: msdn.microsoft.com/en-us/library/office/… Microsoft totally destroyed a 1 time descent rendering capabilities in Outlook by replacing it with the rendering capabilities of Word which means MSFT hates web developers and we need to code like it's 1999
– scrappedcola
Sep 7 '12 at 20:43
You might find this link helpful if you have to support all "major" clients: msdn.microsoft.com/en-us/library/office/… Microsoft totally destroyed a 1 time descent rendering capabilities in Outlook by replacing it with the rendering capabilities of Word which means MSFT hates web developers and we need to code like it's 1999
– scrappedcola
Sep 7 '12 at 20:43
Yeah, using the MS Word engine to render HTML in Outlook was a horrible idea. I've been cursing Microsoft for quite some time for that little snafu.
– elucid8
Sep 7 '12 at 21:04
Yeah, using the MS Word engine to render HTML in Outlook was a horrible idea. I've been cursing Microsoft for quite some time for that little snafu.
– elucid8
Sep 7 '12 at 21:04
add a comment |
5 Answers
5
active
oldest
votes
up vote
3
down vote
accepted
Try using the <font>
tag. This site doesn't list <span>
as a supported tag.
<font color='#FFFFFF'>My Text</font>
I was thinking something like this might be the trick, but forgot about the<font>
tag. Might as well go all out with old school HTML:<FONT COLOR=WHITE>
;)
– Wesley Murch
Sep 7 '12 at 20:16
Sorry guys, that doesn't seem to work. I've tried using the<font>
tag inside the<td>
element and the<span>
element. Any other suggestions?
– elucid8
Sep 7 '12 at 20:39
@elucid8 What do you mean you are using the font tag on the td and span? You should replace the span with the font tag representation. AOL probably is replacing any tags it doesn't like.
– scrappedcola
Sep 7 '12 at 20:41
@scrappedcola That's exactly what I mean, I replaced the<span>
element with<font>
to no avail. Essentially, I've tried this:<td><span><font color="#FFFFFF">My Text</font></span></td>
and<td><font color="#FFFFFF">My Text</font></td>
. Neither approach is achieving the desired results.
– elucid8
Sep 7 '12 at 20:42
1
I used emailonacid.com to render all of this up, and it turns out that my styles were being stripped because it didn't like the way I was setting some attributes. I resolved the warnings it showed and viola, using the<font>
tag worked liked a charm. Thank you gentlemen!
– elucid8
Sep 10 '12 at 14:49
|
show 7 more comments
up vote
1
down vote
font
tag is one option, but if possible in your layout, you might want to break out the text into a td
and call something like <td style="color:#FFFFFF;">My Text</td>
I've got all of the elements wrapped in<td>
, but I'm going to try the font tag. Thanks for the quick response.
– elucid8
Sep 7 '12 at 20:30
font will work off course, but keep in mind that font is a deprecated html tag.
– defau1t
Sep 7 '12 at 20:35
add a comment |
up vote
1
down vote
AOL provides a format icon. Click on that and use the eyedropper on the Format Banner to select color for your text.
add a comment |
up vote
0
down vote
try <td><span style="color:#990011;">Text</span></td>
(eg. uses some shade of red to stand out)
add a comment |
up vote
0
down vote
<a style="text-decoration: none;" href="{$shareWithFriendsLink}">
<span style="text-decoration: none; color: #ffffff;">
htt<span></span>{$shareWithFriendsLink|substr:3} </span></a>
Empty <span></span>
prevent mail client for recognizing string as link.
|substr:3 are in use for Smartys variables for cut off first 3 symbols (htt) added before manually.
add a comment |
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
Try using the <font>
tag. This site doesn't list <span>
as a supported tag.
<font color='#FFFFFF'>My Text</font>
I was thinking something like this might be the trick, but forgot about the<font>
tag. Might as well go all out with old school HTML:<FONT COLOR=WHITE>
;)
– Wesley Murch
Sep 7 '12 at 20:16
Sorry guys, that doesn't seem to work. I've tried using the<font>
tag inside the<td>
element and the<span>
element. Any other suggestions?
– elucid8
Sep 7 '12 at 20:39
@elucid8 What do you mean you are using the font tag on the td and span? You should replace the span with the font tag representation. AOL probably is replacing any tags it doesn't like.
– scrappedcola
Sep 7 '12 at 20:41
@scrappedcola That's exactly what I mean, I replaced the<span>
element with<font>
to no avail. Essentially, I've tried this:<td><span><font color="#FFFFFF">My Text</font></span></td>
and<td><font color="#FFFFFF">My Text</font></td>
. Neither approach is achieving the desired results.
– elucid8
Sep 7 '12 at 20:42
1
I used emailonacid.com to render all of this up, and it turns out that my styles were being stripped because it didn't like the way I was setting some attributes. I resolved the warnings it showed and viola, using the<font>
tag worked liked a charm. Thank you gentlemen!
– elucid8
Sep 10 '12 at 14:49
|
show 7 more comments
up vote
3
down vote
accepted
Try using the <font>
tag. This site doesn't list <span>
as a supported tag.
<font color='#FFFFFF'>My Text</font>
I was thinking something like this might be the trick, but forgot about the<font>
tag. Might as well go all out with old school HTML:<FONT COLOR=WHITE>
;)
– Wesley Murch
Sep 7 '12 at 20:16
Sorry guys, that doesn't seem to work. I've tried using the<font>
tag inside the<td>
element and the<span>
element. Any other suggestions?
– elucid8
Sep 7 '12 at 20:39
@elucid8 What do you mean you are using the font tag on the td and span? You should replace the span with the font tag representation. AOL probably is replacing any tags it doesn't like.
– scrappedcola
Sep 7 '12 at 20:41
@scrappedcola That's exactly what I mean, I replaced the<span>
element with<font>
to no avail. Essentially, I've tried this:<td><span><font color="#FFFFFF">My Text</font></span></td>
and<td><font color="#FFFFFF">My Text</font></td>
. Neither approach is achieving the desired results.
– elucid8
Sep 7 '12 at 20:42
1
I used emailonacid.com to render all of this up, and it turns out that my styles were being stripped because it didn't like the way I was setting some attributes. I resolved the warnings it showed and viola, using the<font>
tag worked liked a charm. Thank you gentlemen!
– elucid8
Sep 10 '12 at 14:49
|
show 7 more comments
up vote
3
down vote
accepted
up vote
3
down vote
accepted
Try using the <font>
tag. This site doesn't list <span>
as a supported tag.
<font color='#FFFFFF'>My Text</font>
Try using the <font>
tag. This site doesn't list <span>
as a supported tag.
<font color='#FFFFFF'>My Text</font>
answered Sep 7 '12 at 20:15
scrappedcola
9,33912239
9,33912239
I was thinking something like this might be the trick, but forgot about the<font>
tag. Might as well go all out with old school HTML:<FONT COLOR=WHITE>
;)
– Wesley Murch
Sep 7 '12 at 20:16
Sorry guys, that doesn't seem to work. I've tried using the<font>
tag inside the<td>
element and the<span>
element. Any other suggestions?
– elucid8
Sep 7 '12 at 20:39
@elucid8 What do you mean you are using the font tag on the td and span? You should replace the span with the font tag representation. AOL probably is replacing any tags it doesn't like.
– scrappedcola
Sep 7 '12 at 20:41
@scrappedcola That's exactly what I mean, I replaced the<span>
element with<font>
to no avail. Essentially, I've tried this:<td><span><font color="#FFFFFF">My Text</font></span></td>
and<td><font color="#FFFFFF">My Text</font></td>
. Neither approach is achieving the desired results.
– elucid8
Sep 7 '12 at 20:42
1
I used emailonacid.com to render all of this up, and it turns out that my styles were being stripped because it didn't like the way I was setting some attributes. I resolved the warnings it showed and viola, using the<font>
tag worked liked a charm. Thank you gentlemen!
– elucid8
Sep 10 '12 at 14:49
|
show 7 more comments
I was thinking something like this might be the trick, but forgot about the<font>
tag. Might as well go all out with old school HTML:<FONT COLOR=WHITE>
;)
– Wesley Murch
Sep 7 '12 at 20:16
Sorry guys, that doesn't seem to work. I've tried using the<font>
tag inside the<td>
element and the<span>
element. Any other suggestions?
– elucid8
Sep 7 '12 at 20:39
@elucid8 What do you mean you are using the font tag on the td and span? You should replace the span with the font tag representation. AOL probably is replacing any tags it doesn't like.
– scrappedcola
Sep 7 '12 at 20:41
@scrappedcola That's exactly what I mean, I replaced the<span>
element with<font>
to no avail. Essentially, I've tried this:<td><span><font color="#FFFFFF">My Text</font></span></td>
and<td><font color="#FFFFFF">My Text</font></td>
. Neither approach is achieving the desired results.
– elucid8
Sep 7 '12 at 20:42
1
I used emailonacid.com to render all of this up, and it turns out that my styles were being stripped because it didn't like the way I was setting some attributes. I resolved the warnings it showed and viola, using the<font>
tag worked liked a charm. Thank you gentlemen!
– elucid8
Sep 10 '12 at 14:49
I was thinking something like this might be the trick, but forgot about the
<font>
tag. Might as well go all out with old school HTML: <FONT COLOR=WHITE>
;)– Wesley Murch
Sep 7 '12 at 20:16
I was thinking something like this might be the trick, but forgot about the
<font>
tag. Might as well go all out with old school HTML: <FONT COLOR=WHITE>
;)– Wesley Murch
Sep 7 '12 at 20:16
Sorry guys, that doesn't seem to work. I've tried using the
<font>
tag inside the <td>
element and the <span>
element. Any other suggestions?– elucid8
Sep 7 '12 at 20:39
Sorry guys, that doesn't seem to work. I've tried using the
<font>
tag inside the <td>
element and the <span>
element. Any other suggestions?– elucid8
Sep 7 '12 at 20:39
@elucid8 What do you mean you are using the font tag on the td and span? You should replace the span with the font tag representation. AOL probably is replacing any tags it doesn't like.
– scrappedcola
Sep 7 '12 at 20:41
@elucid8 What do you mean you are using the font tag on the td and span? You should replace the span with the font tag representation. AOL probably is replacing any tags it doesn't like.
– scrappedcola
Sep 7 '12 at 20:41
@scrappedcola That's exactly what I mean, I replaced the
<span>
element with <font>
to no avail. Essentially, I've tried this: <td><span><font color="#FFFFFF">My Text</font></span></td>
and <td><font color="#FFFFFF">My Text</font></td>
. Neither approach is achieving the desired results.– elucid8
Sep 7 '12 at 20:42
@scrappedcola That's exactly what I mean, I replaced the
<span>
element with <font>
to no avail. Essentially, I've tried this: <td><span><font color="#FFFFFF">My Text</font></span></td>
and <td><font color="#FFFFFF">My Text</font></td>
. Neither approach is achieving the desired results.– elucid8
Sep 7 '12 at 20:42
1
1
I used emailonacid.com to render all of this up, and it turns out that my styles were being stripped because it didn't like the way I was setting some attributes. I resolved the warnings it showed and viola, using the
<font>
tag worked liked a charm. Thank you gentlemen!– elucid8
Sep 10 '12 at 14:49
I used emailonacid.com to render all of this up, and it turns out that my styles were being stripped because it didn't like the way I was setting some attributes. I resolved the warnings it showed and viola, using the
<font>
tag worked liked a charm. Thank you gentlemen!– elucid8
Sep 10 '12 at 14:49
|
show 7 more comments
up vote
1
down vote
font
tag is one option, but if possible in your layout, you might want to break out the text into a td
and call something like <td style="color:#FFFFFF;">My Text</td>
I've got all of the elements wrapped in<td>
, but I'm going to try the font tag. Thanks for the quick response.
– elucid8
Sep 7 '12 at 20:30
font will work off course, but keep in mind that font is a deprecated html tag.
– defau1t
Sep 7 '12 at 20:35
add a comment |
up vote
1
down vote
font
tag is one option, but if possible in your layout, you might want to break out the text into a td
and call something like <td style="color:#FFFFFF;">My Text</td>
I've got all of the elements wrapped in<td>
, but I'm going to try the font tag. Thanks for the quick response.
– elucid8
Sep 7 '12 at 20:30
font will work off course, but keep in mind that font is a deprecated html tag.
– defau1t
Sep 7 '12 at 20:35
add a comment |
up vote
1
down vote
up vote
1
down vote
font
tag is one option, but if possible in your layout, you might want to break out the text into a td
and call something like <td style="color:#FFFFFF;">My Text</td>
font
tag is one option, but if possible in your layout, you might want to break out the text into a td
and call something like <td style="color:#FFFFFF;">My Text</td>
answered Sep 7 '12 at 20:18
defau1t
9,83922944
9,83922944
I've got all of the elements wrapped in<td>
, but I'm going to try the font tag. Thanks for the quick response.
– elucid8
Sep 7 '12 at 20:30
font will work off course, but keep in mind that font is a deprecated html tag.
– defau1t
Sep 7 '12 at 20:35
add a comment |
I've got all of the elements wrapped in<td>
, but I'm going to try the font tag. Thanks for the quick response.
– elucid8
Sep 7 '12 at 20:30
font will work off course, but keep in mind that font is a deprecated html tag.
– defau1t
Sep 7 '12 at 20:35
I've got all of the elements wrapped in
<td>
, but I'm going to try the font tag. Thanks for the quick response.– elucid8
Sep 7 '12 at 20:30
I've got all of the elements wrapped in
<td>
, but I'm going to try the font tag. Thanks for the quick response.– elucid8
Sep 7 '12 at 20:30
font will work off course, but keep in mind that font is a deprecated html tag.
– defau1t
Sep 7 '12 at 20:35
font will work off course, but keep in mind that font is a deprecated html tag.
– defau1t
Sep 7 '12 at 20:35
add a comment |
up vote
1
down vote
AOL provides a format icon. Click on that and use the eyedropper on the Format Banner to select color for your text.
add a comment |
up vote
1
down vote
AOL provides a format icon. Click on that and use the eyedropper on the Format Banner to select color for your text.
add a comment |
up vote
1
down vote
up vote
1
down vote
AOL provides a format icon. Click on that and use the eyedropper on the Format Banner to select color for your text.
AOL provides a format icon. Click on that and use the eyedropper on the Format Banner to select color for your text.
answered Nov 12 at 3:39
Michael Fargo
111
111
add a comment |
add a comment |
up vote
0
down vote
try <td><span style="color:#990011;">Text</span></td>
(eg. uses some shade of red to stand out)
add a comment |
up vote
0
down vote
try <td><span style="color:#990011;">Text</span></td>
(eg. uses some shade of red to stand out)
add a comment |
up vote
0
down vote
up vote
0
down vote
try <td><span style="color:#990011;">Text</span></td>
(eg. uses some shade of red to stand out)
try <td><span style="color:#990011;">Text</span></td>
(eg. uses some shade of red to stand out)
edited Mar 22 '16 at 21:04
josh1978
419416
419416
answered Sep 14 '12 at 14:04
Teena Thomas
5,0071817
5,0071817
add a comment |
add a comment |
up vote
0
down vote
<a style="text-decoration: none;" href="{$shareWithFriendsLink}">
<span style="text-decoration: none; color: #ffffff;">
htt<span></span>{$shareWithFriendsLink|substr:3} </span></a>
Empty <span></span>
prevent mail client for recognizing string as link.
|substr:3 are in use for Smartys variables for cut off first 3 symbols (htt) added before manually.
add a comment |
up vote
0
down vote
<a style="text-decoration: none;" href="{$shareWithFriendsLink}">
<span style="text-decoration: none; color: #ffffff;">
htt<span></span>{$shareWithFriendsLink|substr:3} </span></a>
Empty <span></span>
prevent mail client for recognizing string as link.
|substr:3 are in use for Smartys variables for cut off first 3 symbols (htt) added before manually.
add a comment |
up vote
0
down vote
up vote
0
down vote
<a style="text-decoration: none;" href="{$shareWithFriendsLink}">
<span style="text-decoration: none; color: #ffffff;">
htt<span></span>{$shareWithFriendsLink|substr:3} </span></a>
Empty <span></span>
prevent mail client for recognizing string as link.
|substr:3 are in use for Smartys variables for cut off first 3 symbols (htt) added before manually.
<a style="text-decoration: none;" href="{$shareWithFriendsLink}">
<span style="text-decoration: none; color: #ffffff;">
htt<span></span>{$shareWithFriendsLink|substr:3} </span></a>
Empty <span></span>
prevent mail client for recognizing string as link.
|substr:3 are in use for Smartys variables for cut off first 3 symbols (htt) added before manually.
answered Oct 19 '16 at 7:51
Allen
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f12324734%2fchanging-font-color-in-html-email-for-aol-mail%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
aol still exists? people still need training wheels to get onto the internet?
– Marc B
Sep 7 '12 at 20:12
2
@MarcB: Grandma and Grandpa still need to use the internet sometimes.
– Wesley Murch
Sep 7 '12 at 20:13
You're telling me, man. I'm designing a mass email for my client at the moment, and I've got to make sure that it is going to render correctly across all of the major email clients. AOL qualifies as "major" apparently.
– elucid8
Sep 7 '12 at 20:33
1
You might find this link helpful if you have to support all "major" clients: msdn.microsoft.com/en-us/library/office/… Microsoft totally destroyed a 1 time descent rendering capabilities in Outlook by replacing it with the rendering capabilities of Word which means MSFT hates web developers and we need to code like it's 1999
– scrappedcola
Sep 7 '12 at 20:43
Yeah, using the MS Word engine to render HTML in Outlook was a horrible idea. I've been cursing Microsoft for quite some time for that little snafu.
– elucid8
Sep 7 '12 at 21:04