[css-d] Horizontal list menu - removing space between li

2009-06-29 Thread MEM
Hello, In this list[1] menu there is a space between li items that don't allow me to proper center the right border among them. How can we remove that space? Thanks a lot, Márcio [1] http://www.cantinho.org/pt/cantinho-site/layout3.html

Re: [css-d] Horizontal list menu - removing space between li

2009-06-29 Thread David Laakso
MEM wrote: Hello, In this list[1] menu there is a space between li items that don't allow me to proper center the right border among them. Center them? I can't see them inorder to center them :-) . How can we remove that space? #navcontainer ul li { display: inline; float:left;

Re: [css-d] CSS color declaration not working!

2009-06-29 Thread Philippe Wittenbergh
On Jun 29, 2009, at 1:46 PM, David Hucklesby wrote: The page can be seen at: http://www.melvillekidsdentistry.com/beta2/index.html (note that this is up as a sample and linked pages are not present). It is a question of specificity. these are the 2 selectors that apply: #header ul#navlist

Re: [css-d] Horizontal list menu - removing space between li

2009-06-29 Thread MEM
Center them? I can't see them inorder to center them :-) . Lol. Yes, I'm on a 1680x1050 resolution screen, and I also found difficult to see then. But I'm thinking that on a 1024x768 scenario, we can see them properly. If I raise up the text-size, it will get to huge on smaller resolutions. I

Re: [css-d] Conditional comments for Mac?

2009-06-29 Thread nancy
I'm on a committee that has access to the code for this online catalog: https://i-share.carli.illinois.edu/uc/vwebv/searchBasic?sk=en_US We are trying to move the search button over, see: https://i-share-test.carli.illinois.edu/uc/vwebv/searchBasic?sk=en_US by removing the text-align:right

[css-d] Menu shift IE8/FFox3

2009-06-29 Thread Tony Lush
In IE8 and Firefox 3 I have a twelve pixel shift downwards on the horizontal menu at http://dev.fastertechnology.com/index.php that does not appear at http://dev.fastertechnology.com/store.html (that's when additional stylesheets for an ecommerce integration come into play). I have not been

Re: [css-d] Menu shift IE8/FFox3

2009-06-29 Thread David Laakso
Tony Lush wrote: In IE8 and Firefox 3 I have a twelve pixel shift downwards on the horizontal menu at http://dev.fastertechnology.com/index.php that does not appear at http://dev.fastertechnology.com/store.html (that's when additional stylesheets for an ecommerce integration come into

Re: [css-d] Menu shift IE8/FFox3

2009-06-29 Thread Tony Lush
Tony Lush wrote: In IE8 and Firefox 3 I have a twelve pixel shift downwards on the horizontal menu at http://dev.fastertechnology.com/index.php that does not appear at http://dev.fastertechnology.com/store.html (that's when additional stylesheets for an ecommerce integration come

Re: [css-d] Weird Jumping Links

2009-06-29 Thread Chris Akins
Glad it worked, as to the 'list of links' I would try removing your comment before the Doctype, I think it's throwing the IE 6 into the quirks mode which is causing the jump. I removed the comment from before the doctype, and the IE jumping links in the list now behave, though they have a

Re: [css-d] Horizontal list menu - removing space between li

2009-06-29 Thread David Laakso
MEM wrote: Center them? I can't see them inorder to center them :-) . Lol. Yes, I'm on a 1680x1050 resolution screen, and I also found difficult to see then. But I'm thinking that on a 1024x768 scenario, we can see them properly. If I raise up the text-size, it will get to huge on

Re: [css-d] UL nav to emulate image rollover effect

2009-06-29 Thread Greg Wilker
-Original Message- From: David Laakso [mailto:da...@chelseacreekstudio.com] Subject: Re: [css-d] UL nav to emulate image rollover effect Welcome to the list! Please see if this might help for your need... http://sperling.com/examples/new-menuh/ Hello David, Thank you for the

Re: [css-d] Alignment issue

2009-06-29 Thread Bob Rosenberg
At 09:59 -0800 on 11/22/2006, Russ Peters wrote about [css-d] Alignment issue: http://www.redcanoecu.com/index1.asp This gets a error message. The text is: There was error while processing your request. Please try again. Contact Red Canoe Credit Union at 800-562-5611 or email

Re: [css-d] Horizontal list menu - removing space between li

2009-06-29 Thread Mark Henderson
David Laakso wrote: /My opinion requires a shovel./ Take the shovel to the woods. Dig a very deep hole. Bury Verdana in it. Forever. And reset to: #navcontainer ul li a { /*font-family:Verdana; /* font-size:0.6em;*/ font: 0.9em Helvetica Neue, Arial, sans-serif; } Heh, best not

Re: [css-d] Horizontal list menu - removing space between li

2009-06-29 Thread MEM
@David Care to point some reasons (even as external links) why is Verdana a bad font on this scenario? I would remove the following: .destaque { clear:left; } And add overflow: hidden to #navcontainer ul. Thanks. It works and don't mess with padding. It stills feels weird

[css-d] Floats without width?

2009-06-29 Thread MEM
Hello again, sorry, I'm starting to be addict to the list. :s On the validation of this page http://www.cantinho.org/pt/cantinho-site/layout4_ups.html , here: http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.cantinho.o

Re: [css-d] Floats without width?

2009-06-29 Thread Philippe Wittenbergh
On Jun 30, 2009, at 10:34 AM, MEM wrote: On the validation of this page http://www.cantinho.org/pt/cantinho-site/layout4_ups.html , here: http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.cantinho.o rg%2Fpt%2Fcantinho-site %2Flayout4_ups.htmlprofile=css21usermedium=allwarn

Re: [css-d] Horizontal list menu - removing space between li

2009-06-29 Thread Mark Henderson
MEM wrote: Thanks. It works and don't mess with padding. It stills feels weird that something like overflow:hidden; (to hide scroll bars), serves as float solver. No? Well, yes. http://www.quirksmode.org/css/clearing.html That might help explain things a little better. HTH Mark