RE: [WSG] background images in HTML emails..

2008-03-20 Thread Anat Katz
and don't use background image, some email browsers won't render it. Kind Regards, Anat Katz Analyst Programmer Web Solutions Team | Coles Group IT P: 963 50853 E: [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jermayn Parker Sent:

Re: [WSG] background images in HTML emails..

2008-03-20 Thread Naveen Bhaskar
Structure is fine... but I am worried about the background images since the text is localized I cant use an image with text . I have to use background image and text about that... any solution? regards navii On Thu, Mar 20, 2008 at 11:32 AM, Jermayn Parker [EMAIL PROTECTED] wrote: in

[WSG] my apologies

2008-03-20 Thread dwain
i apologize to the group for the telecommunications post. i thought that i saw my congressional senator's address in the to: space. humbly apologetic, dwain -- dwain alford The artist may use any form which his expression demands; for his inner impulse must find suitable expression. Kandinsky

Re: [WSG] background images in HTML emails..

2008-03-20 Thread Denis Arkhipov
Sorry, but i think you must google it by yourself. Your question is not in subject of that subscribe. btw lurk for files cid in e-mail attachment. Hi... anybody can tell me.. how to use background images  in html emails. I have a div with background image and text above that... the

Re: [WSG] my apologies

2008-03-20 Thread Mark Harris
dwain wrote: i apologize to the group for the telecommunications post. i thought that i saw my congressional senator's address in the to: space. humbly apologetic, dwain Understood Good letter, though ;-) mark *** List

RE: [WSG] background images in HTML emails..

2008-03-20 Thread Tim MacKay
Hi Naveen, Unfortunately, HTML emails offer very little support for background images. Outlook 2007 doesn’t render them at all, I think some of the major webmail clients do, but gmail and Windows Live mail do not. It is very frustrating but the more you do it and realize what is possible you

Re: [WSG] background images in HTML emails..

2008-03-20 Thread Elankeeran / இளங்கீரன் V
Your image path should be absolute path i.e, http://www.urwebsitename.com/images/background.gif it will work in the email template -Elankeeran V On 3/20/08, Naveen Bhaskar [EMAIL PROTECTED] wrote: Hi... anybody can tell me.. how to use background images in html emails. I have a div

Re: [WSG] background images in HTML emails..

2008-03-20 Thread Chris Wharton
Hi Navii, I hate to say it but you will get inconsistencies using background images in HTML email. They will more than likely work in Outlook but gmail, hotmail and google will do stange things. Where possible use background colours and not images, you can still be creative within these

[WSG] a a:hover

2008-03-20 Thread Laert Jansen
Hello everyone! Well, I looking for some help. I don´t know how to create more than one a a:hover I have my css here a { color: #FFF; text-decoration:none; } a:hover { color:#FFF; text-decoration:underline; } and the html where the word launch should have another a a:hover

Re: [WSG] a a:hover

2008-03-20 Thread Max A. Shpack
Hi Laert This works: a.someclass:hover {} and then apply class to the link. Max. 2008/3/20, Laert Jansen [EMAIL PROTECTED]: Hello everyone! Well, I looking for some help. I don´t know how to create more than one a a:hover I have my css here a { color: #FFF;

Re: [WSG] a a:hover

2008-03-20 Thread Martin Heiden
Olá! on Thursday, March 20, 2008 at 15:38 wsg@webstandardsgroup.org wrote: and the html where the word launch should have another a a:hover div class=menu ul liBittencourt Lopes/li lispanRole./spanWebsite design/li

Re: [WSG] a a:hover

2008-03-20 Thread Laert Jansen
Olá! :) I´m trying this: a.launch:hover { color:#FF7400; text-decoration:underline; } and html li class=launcha href=http://www.bittencourtlopes.com.br/; target=_blank title=LaunchemLaunch/em/a/li but is not working...Where´s my mistake? Thanks a lot! On Thu, Mar 20, 2008 at

Re: [WSG] a a:hover

2008-03-20 Thread Gregorio Espadas
The class must be applied to the anchor a, not li. Gregorio Espadas gespadas [at] gmail [dot] com On Thu, Mar 20, 2008 at 9:34 AM, Laert Jansen [EMAIL PROTECTED] wrote: Olá! :) I´m trying this: a.launch:hover { color:#FF7400; text-decoration:underline; } and html li

Re: [WSG] a a:hover

2008-03-20 Thread Laert Jansen
I found it. lia href=http://www.bittencourtlopes.com.br/; target=_blank title=Launch *class=launch* Thanks a lot Max and Martin for the help! On Thu, Mar 20, 2008 at 12:34 PM, Laert Jansen [EMAIL PROTECTED] wrote: Olá! :) I´m trying this: a.launch:hover { color:#FF7400;

RE: [WSG] a a:hover

2008-03-20 Thread Peter Goddard
Try: lia href=http://www.bittencourtlopes.com.br/; target=_blank title=Launch class=launchemLaunch/em/a/li or in stylesheet li.launch a:hover HTH Peter Goddard Developer/Programmer PSI Global Ltd, Bowburn, Durham DH6 5AD, UK T: +44 (0) 191 3774742 F: +44 (0) 191 3770769

RE: [WSG] a a:hover

2008-03-20 Thread Kepler Gelotte
Hi, When appending the class name to the element as you did in: a.launch:hover the class *must* be in the element tag that you specified. You put the class=launch in the li element, not the a element. To solve it, either change your CSS to: li.launch a:hover *or* change your

Re: [WSG] background images in HTML emails..

2008-03-20 Thread Rochester oliveira
When i need it, i use the background attribute (argh!) table background=http://address; []'s 2008/3/20, Chris Wharton [EMAIL PROTECTED]: Hi Navii, I hate to say it but you will get inconsistencies using background images in HTML email. They will more than likely work in Outlook but

[WSG] Out of Office AutoReply: WSG Digest

2008-03-20 Thread Brownell, Melody
I will be out of the office March 20-21. For TeamSite questions/issues -- please call the TeamSite support phone at 515.778.2239. For other questions, please contact Jane Keairns at 515.248.8089 or [EMAIL PROTECTED] -Message Disclaimer- This e-mail message is intended only for the

Re: [WSG] a a:hover

2008-03-20 Thread Laert Jansen
I don´t know why is it happening but the hover is ok, working with all the links but the link is working only in one link. Here´s the style li.launch a:link{ color:#CDEB8B; } li.launch a:hover{ color:#CDEB8B; text-decoration:underline; } On Thu, Mar 20, 2008 at 1:09 PM, Kepler

Re: [WSG] Safari 3.1 and webkit-border-radius

2008-03-20 Thread Keryx Web
tee skrev: I thought fieldset (with legend) are used only for form elements, I am curious why you would used it in your right column's content. A. It is valid. You may use it according to the DTD. B. It is being used for grouping of content. C. I am not a minimalist in interpreting

[WSG] META content-lang. declared but showing up different (for one person reporting)

2008-03-20 Thread Kristine Cummins
I launched a new site a few days ago and received a report that the site is showing in another language and/or foreign characters even though meta http-equiv=content-language content=en / is declared in the HEAD. The person reporting is using Safari (v. unknown) and I think on a Mac (not sure if

Re: [WSG] META content-lang. declared but showing up different (for one person reporting)

2008-03-20 Thread Nikita The Spider The Spider
On Thu, Mar 20, 2008 at 3:17 PM, Kristine Cummins [EMAIL PROTECTED] wrote: I launched a new site a few days ago and received a report that the site is showing in another language and/or foreign characters even though meta http-equiv=content-language content=en / is declared in the HEAD. That

Re: [WSG] META content-lang. declared but showing up different (for one person reporting)

2008-03-20 Thread Andrew Maben
On Mar 20, 2008, at 3:17 PM, Kristine Cummins wrote: showing in another language and/or foreign characters... I don't know if this is applicable, but I was opening/closing fonts on my Mac the other day to work on a project in Illustrator - to my dismay, I found sections of various sites

[WSG] Hanging indents

2008-03-20 Thread Elizabeth Spiegel
Hi all I'm developing a site for a non-profit organisation and one page is their constitution. I'm trying to get the clauses to appear with a hanging indent as they currently do in the word version: http://www.dra.org.au/files/QTI5QDJCKU/DRA-Constitution-Amended-10Feb07%20(6 7%20KB).doc. I

Re: [WSG] Hanging indents

2008-03-20 Thread Mike at Green-Beast.com
Hi Elizabeth, I'm trying to get the clauses to appear with a hanging indent Try adding a div to the body of content you want this treatment in (saving on a lot of p.classes and extraneous markup), then put this in the CSS. div.clauses p { margin-left : 50px; text-indent : -40px; } The

RE: [WSG] a a:hover

2008-03-20 Thread Kepler Gelotte
* I don´t know why is it happening but the hover is ok, working with all the links but the link is working only in one link. Here´s the style Make sure you are also setting “:visited” as well: li.launch a:link{ color:#CDEB8B; } li.launch a:visited{ color:#CDEB8B; }