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 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 these rulesets to the style sheet:
#header img {display: block; }
#menubar ul li strong { background: #CC; border-right: 2px solid
#FF; color: #FF; float: left; display: inline; padding: 4px; }
Ammend the markup:
li id=currentstrongHome/strong/li
  !--li id=currenta href=index.htmlHome/a/li--
Regards,
~dL

http://chelseacreekstudio.com/

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/



--
Kay C. Tien
Clarity Connect, Inc.
200 Pleasant Grove Road
Ithaca, NY 14850
Toll Free: 1-888-322-4900 | Main: 1-607-257-8268
Fax: 1-607-257-4431
www.clarityconnect.com


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


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

http://kaytest.clarityconnect.com/rightangle/index.html

TIA.
Kay





--
Kay C. Tien
Clarity Connect, Inc.
200 Pleasant Grove Road
Ithaca, NY 14850
Toll Free: 1-888-322-4900 | Main: 1-607-257-8268
Fax: 1-607-257-4431
www.clarityconnect.com


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


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
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


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

As for the gap - I don't see it in either IE6 *or* 7.  Is your cache cleared?

I have a negative margin on the menubar to compensate for the gap, 
but there's still a hairline of a space.

Kay



~Shelly




--
Kay C. Tien
Clarity Connect, Inc.
200 Pleasant Grove Road
Ithaca, NY 14850
Toll Free: 1-888-322-4900 | Main: 1-607-257-8268
Fax: 1-607-257-4431
www.clarityconnect.com


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


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 these rulesets to the style sheet:
#header img {display: block; }
#menubar ul li strong { background: #CC; border-right: 2px solid 
#FF; color: #FF; float: left; display: inline; padding: 4px; }
Ammend the markup:
li id=currentstrongHome/strong/li
 !--li id=currenta href=index.htmlHome/a/li--
Regards,
~dL

http://chelseacreekstudio.com/

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/