Re: [css-d] sprites and dropdowns

2010-03-25 Thread MB
Ido dekkers asked: >one more - is there a way to make the dropdowns (regular ones) accessible >without JS? Only with mouseover ie adding the pseudoclass ":hover". Clicks means JS. __ css-discuss [cs...@lists.css-discuss.org] http

[css-d] Fwd: Send a new message to the list (was: Die focus, die!)

2010-03-25 Thread Charles Miller
That's the other thing I need to wrap my brain around. Reply going to OP. Begin forwarded message: > On Mar 25, 2010, at 6:11 PM, Brian Funk wrote: > >> So, what happens when you click on the list's email address which is the >> first item in every list signature at the bottom of each email? >

Re: [css-d] Send a new message to the list (was: Die focus, die!)

2010-03-25 Thread Brian Funk
On 2010-03-25 10:10 AM, Charles Miller wrote: > ...lately my new threads have been grafted at the top of old threads. So, what happens when you click on the list's email address which is the first item in every list signature at the bottom of each email? > __

Re: [css-d] a:hover

2010-03-25 Thread Climis, Tim
> I'd like to make a:hover maroon and underlined, I tried it in the way I wrote > it below but it doesn't work, I'd appreciate it if you have any tips... > > a:hover > {color:Maroon;} > > > a:hover > {text-decoration: underline;} That should do it. Or for efficiency:

Re: [css-d] ADMIN: quotation patterns (was: Die focus, die!)

2010-03-25 Thread Eric A. Meyer
At 10:10 AM -0500 3/25/10, Charles Miller wrote: >1. Is it considered "proper" to put the reply after the quote? I consider it sensible to do so, as you can tell from this message, but this is not something that's enforced or even really patrolled. What IS considered deeply improper is to

[css-d] a:hover

2010-03-25 Thread NICK KAY
Hi There, I'd like to make a:hover maroon and underlined, I tried it in the way I wrote it below (as a part of the other css code which is correct and in a separate style sheet, not within the mark-up of a visual studio master page) but it doesn't work, I'd appreciate it if you have any tips.

[css-d] a:hover

2010-03-25 Thread NICK KAY
_ Hotmail: Microsoft’un güçlü İSTENMEYEN POSTA koruması ile güvenilir e-posta. https://signup.live.com/signup.aspx?id=60969 ___

Re: [css-d] fix border on some list items?

2010-03-25 Thread David Hucklesby
On 3/25/10 6:42 AM, Rory Bernstein wrote: > Hello, > > http://dev.bossyfrog.com/ > > I have a blue, horizontal nav bar on my site, the URL is above. You > will see that there are white borders that separate the items on the > nav bar. They are coded as an unordered list. The rule for the border > i

Re: [css-d] sprites and dropdowns

2010-03-25 Thread David Hucklesby
On 3/25/10 3:35 AM, Ido dekkers wrote: > Hi > > is there a way to use both sprites and drop down menus? > > I've tried this : > http://test3.dekkers.net/test.htm > > and i can't seem to get this to work: > the drop down gets the sprites background also no matter if i set > background:none; to each

Re: [css-d] Die focus, die!

2010-03-25 Thread Chris Blake
Hi, There's an address for admin questions like that and I think it is: cs...@css-discuss.org Reply under the quote, if you remember, I often forget like in this instance. As for your mac mail question I would stop over-thinking it. I click 'new' type 'css' the address appears, tab down,

Re: [css-d] Die focus, die!

2010-03-25 Thread Climis, Tim
> 1. Is it considered "proper" to put the reply after the quote? I personally > much prefer the reply first. If I'm reading a thread, I have the quote > already in mind, and like it when I don't have to manually scroll down to see > the reply. But if manners suggest quote first, I can do that.

Re: [css-d] Die focus, die!

2010-03-25 Thread Charles Miller
I have two questions about protocol, or whatever it might be called. 1. Is it considered "proper" to put the reply after the quote? I personally much prefer the reply first. If I'm reading a thread, I have the quote already in mind, and like it when I don't have to manually scroll down to see

Re: [css-d] fix border on some list items?

2010-03-25 Thread Bill Braun
Rory Bernstein wrote: > Thanks so much, Kata. I will try this! > > I am getting 2 of each emails from the list. Is this happening to others as > well? > > Rory > If people Reply-All the list and the OP receive a response. Bill B

Re: [css-d] fix border on some list items?

2010-03-25 Thread Troy Harshman
" and li don't need display: inline, because display default value for is inline. " His code is correct because he is turning a list into a horizontal navigation. Without setting display:inline or using floats, the items will list vertically. __

Re: [css-d] fix border on some list items?

2010-03-25 Thread Krupa Anna Katalin
Yes, this is true, sorry :) Kata Climis, Tim wrote: >> and li don't need display: inline, >> because display default value for is inline. >> > > No it isn't! The default display for is list-item. Which is closer to > block than it is to inline. If it were inline, your lists would look

Re: [css-d] fix border on some list items?

2010-03-25 Thread Climis, Tim
> and li don't need display: inline, > because display default value for is inline. No it isn't! The default display for is list-item. Which is closer to block than it is to inline. If it were inline, your lists would look like: 1. Thing one 2. Thing two 3. Thing three Instead of: 1. thin

Re: [css-d] fix border on some list items?

2010-03-25 Thread Rory Bernstein
Thanks so much, Kata. I will try this! I am getting 2 of each emails from the list. Is this happening to others as well? Rory -- Rory Bernstein : Web Developer r...@rorybernstein.com http://www.rorybernstein.com On Mar 25, 2010, at 10:36 AM, Krupa Anna Katalin wrote

Re: [css-d] fix border on some list items?

2010-03-25 Thread Krupa Anna Katalin
Hi, give border for , not for li a { display: block; border-right: 1px solid #fff; } because of display: block for , will get width: 100% automatically; and you can give height for or padding, to style that, if you need. and li don't need display: inline, because display default value f

Re: [css-d] fix border on some list items?

2010-03-25 Thread Rory Bernstein
hi Bill, Yes, I saw those validation errors for the mouseovers. I don't know how to correct those... any suggestions? I like your suggestion about using the pipe character instead of border. I will play with that. Thanks! Rory -- Rory Bernstein : Web Developer r...@ro

Re: [css-d] fix border on some list items?

2010-03-25 Thread Bill Braun
Rory Bernstein wrote: > hi Bill, > > Yes, I saw those validation errors for the mouseovers. I don't know > how to correct those... any suggestions? > > I like your suggestion about using the pipe character instead of > border. I will play with that. Thanks! > This might help. http://www.webdeve

Re: [css-d] fix border on some list items?

2010-03-25 Thread Bill Braun
Rory Bernstein wrote: > Hello, > > http://dev.bossyfrog.com/ > > I have a blue, horizontal nav bar on my site, the URL is above. You will see > that there are white borders that separate the items on the nav bar. They are > coded as an unordered list. The rule for the border is included in this

[css-d] fix border on some list items?

2010-03-25 Thread Rory Bernstein
Hello, http://dev.bossyfrog.com/ I have a blue, horizontal nav bar on my site, the URL is above. You will see that there are white borders that separate the items on the nav bar. They are coded as an unordered list. The rule for the border is included in this style info below: .nav li { borde

[css-d] sprites and dropdowns

2010-03-25 Thread Ido dekkers
Hi is there a way to use both sprites and drop down menus? I've tried this : http://test3.dekkers.net/test.htm and i can't seem to get this to work: the drop down gets the sprites background also no matter if i set background:none; to each element inside the parent LI's and when the dropdown is