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; } li.laun

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 ma

[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 though

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 (

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 " http-equiv="content-language" content="en" />" is declared in the . That

[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 "" is declared in the . The person reporting is using Safari (v. unknown) and I think on a Mac (not sure if this info is applicable). is an XHTML site and va

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 specs.

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 Gel

[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 us

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

2008-03-20 Thread Rochester oliveira
When i need it, i use the background attribute (argh!) 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 > gmail, hotma

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 element, not the element. To solve it, either change your CSS to: li.launch a:hover *or* change your HTML

RE: [WSG] a a:hover

2008-03-20 Thread Peter Goddard
Try: http://www.bittencourtlopes.com.br/"; target="_blank" title="Launch" class="launch">Launch 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 E: [EMAIL PR

RE: [WSG] a a:hover

2008-03-20 Thread Darren Lovelock
The class should be on the anchor not the li. The html should be like this: http://www.bittencourtlopes.com.br/"; target="_blank" title="Launch" class="launch">Launch Regards, Darren Lovelock Munky Online Web Design http://www.munkyonline.co.uk T: +44 (0)20-8

Re: [WSG] a a:hover

2008-03-20 Thread Laert Jansen
I found it. 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; > t

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

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 http://www.bittencourtlopes.com.br/"; target="_blank" title="Launch">Launch but is not working...Where´s my mistake? Thanks a lot! On Thu, Mar 20, 2008 at 12:17 PM, Martin Heiden <[

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 > > > Bittencourt Lopes > Role.Website design > Agency. href="http://www.2

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; > text-d

[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] 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 paramete

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

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

2008-03-20 Thread Martin Heiden
Naveen, on Thursday, March 20, 2008 at 06:53 wsg@webstandardsgroup.org wrote: > anybody can tell me.. how to use background images in html emails. > I have a div with background image and text above that... the background > image is not displaying :-( I didn't find anything about backgr

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 kn

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 Guidel