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
E: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Laert Jansen Sent: 20 March 2008 15:35 To: wsg@webstandardsgroup.org Subject: Re: [WSG] a a:hover Olá! :) I´m trying this: a.launch:hover

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] 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] 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; }