Re: [css-d] Two interesting problems

2006-08-26 Thread Kay C. Tien
The current selector was solved last night by using #navlist li#current a { color: #FF; background: #CC; } Thanks to all that responded! Kay At 08:53 PM 8/25/2006 Friday, ~davidLaakso wrote: Kay C. Tien wrote: 1) Win XP, IE 6, there's a white gap between the header

[css-d] Two interesting problems

2006-08-25 Thread Kay C. Tien
Hi All, I put this together in a hurry, but two things are bothering me: 1) Win XP, IE 6, there's a white gap between the header banner and the menubar. Doesn't show up in FF. 2) I put a id=current for the Home on the menubar, but it's not doing anything. It should be blue.

Re: [css-d] Two interesting problems

2006-08-25 Thread Shelly
This: #current a:link { color: #FF; background: #CC; } should be this: a#current:link { color: #FF; background: #CC; } As for the gap - I don't see it in either IE6 *or* 7. Is your cache cleared? ~Shelly

Re: [css-d] Two interesting problems

2006-08-25 Thread Kay C. Tien
At 08:30 PM 8/25/2006 Friday, you wrote: This: #current a:link { color: #FF; background: #CC; } should be this: a#current:link { color: #FF; background: #CC; } That didn't work either. I tried moving the id=current to the a tag. No change

Re: [css-d] Two interesting problems

2006-08-25 Thread ~davidLaakso
Kay C. Tien wrote: 1) Win XP, IE 6, there's a white gap between the header banner and the menubar. Doesn't show up in FF. 2) I put a id=current for the Home on the menubar, but it's not doing anything. It should be blue. http://kaytest.clarityconnect.com/rightangle/index.html Kay Add