[css-d] Float problem in Firefox

2009-03-28 Thread Gaurav Sharma
Hi, I have a small problem with float in Mozilla. http://gauravsharma.uuuq.com The site above is a totally stripped down version with only the problem code displayed. The class box is assigned a float: left property. It works fine in IE 6, but in firefox 3, the background image does not render

Re: [css-d] Float problem in Firefox

2009-03-28 Thread Bobby Jack
--- On Sat, 3/28/09, Gaurav Sharma sharmal...@gmail.com wrote: I have a small problem with float in Mozilla. http://gauravsharma.uuuq.com the background image does not render right. Hi Gaurav, With only a cursory glance, I have a feeling that the structure is slightly more complicated

[css-d] ie/7 image issue

2009-03-28 Thread David Laakso
Mac os x 10.4.11 parallels xp ie/7 (only). When clicking the numerals beneath images, the images load wider than intended, causing an annoying horizontal movement and flash while they adjust to their correct width. http://www.chelseacreekstudio.com/yl/index.html What to do?

[css-d] Fwd: Re: Middle align?

2009-03-28 Thread Kim Brooks Wei
Oi-va-voili . . . here it is http://blackboxarts.com Kim Brooks Wei wrote: I can't align the logo at the top of the page to the pagenav sitting to its right. Tried a bunch of things but none of them worked. Is there a link we can use to view the troublesome page? ! Bill Brown

Re: [css-d] Fwd: Re: Middle align?

2009-03-28 Thread David Laakso
Kim Brooks Wei wrote: http://blackboxarts.com I can't align the logo at the top of the page to the pagenav sitting to its right. Tried a bunch of things but none of them worked. ul#pagenav {padding-top:7px;} ???

[css-d] Page Check

2009-03-28 Thread JWN
Morning all I'd appreciate it if some of you with IE 8 would have a look at www.nannery.net and let me know if there are any problems. This is a conversions from tables Works as I expect in IE 6- 7, FF 3.0.7 and Opera 9.00 on Win XP Pro SP3. Thanks in advance. Jim Nannery blog -

Re: [css-d] ie/7 image issue

2009-03-28 Thread Gunlaug Sørtun
David Laakso wrote: Mac os x 10.4.11 parallels xp ie/7 (only). Confirmed in IE7(XP) *and* IE8(Vista). Think it's a flaw in how Trident apply 'max-width' - as 'width' before checking if 'max-width' should take effect or not. http://www.chelseacreekstudio.com/yl/index.html What to do? I

Re: [css-d] Page Check

2009-03-28 Thread David Laakso
JWN wrote: Morning all I'd appreciate it if some of you with IE 8 would have a look at www.nannery.net and let me know if there are any problems. This is a conversions from tables Works as I expect in IE 6- 7, FF 3.0.7 and Opera 9.00 on Win XP Pro SP3. Thanks in advance. Jim

Re: [css-d] Page Check

2009-03-28 Thread Gunlaug Sørtun
JWN wrote: I'd appreciate it if some of you with IE 8 would have a look at www.nannery.net and let me know if there are any problems. Looks a bit strange on narrow windows, but the same in all browsers - including IE8. regards Georg -- http://www.gunlaug.no

Re: [css-d] ie/7 image issue

2009-03-28 Thread David Laakso
Gunlaug Sørtun wrote: Confirmed in IE7(XP) *and* IE8(Vista). Think it's a flaw in how Trident apply 'max-width' - as 'width' before checking if 'max-width' should take effect or not. http://www.chelseacreekstudio.com/yl/index.html What to do? regards Georg Got it. All of it. I

[css-d] Is this possible with CSS?

2009-03-28 Thread Geoffrey Hoffman
I'm trying to replicate the effect done (with tables, images and Javascript) in the left column of this page... http://holdenluntz.com/artist.htm ... with CSS only. Specifically, I want the li bullet to turn a color when I hover on the a inside it. (Ignore the images that show up on hover in

Re: [css-d] Is this possible with CSS?

2009-03-28 Thread Bobby Jack
Hi Geoffrey, Have you tried something like the following? ul { list-style-type: none; color: #fff; } li:hover { list-style-type: disc; color: #f7c30e; } li:hover a { color: #f7c30e; } a { text-decoration: none; color: #fff } (The li:hover a and a { color: ... }

Re: [css-d] Is this possible with CSS?

2009-03-28 Thread Geoffrey Hoffman
Geoffrey D. Hoffman President, Global Interactive Minds, LLC 398 S. Mill Ave. #303 Tempe, AZ 85281 Office: 480-921-3171 Fax: 480-921-3139 Mobile: 480-231-8323 G | M | M Global Media Minds --- On Sun, 3/29/09, Geoffrey Hoffman geo...@globalmediaminds.com wrote: From: Geoffrey Hoffman

Re: [css-d] Is this possible with CSS?

2009-03-28 Thread Bobby Jack
--- On Sun, 3/29/09, Geoffrey Hoffman geo...@globalmediaminds.com wrote: I just can't make the bullet change on hover. I think it's due to how selectors work. The CSS I supplied should do just that - turns off the bullets on the whole list by default, turns them back on for each li, much as

Re: [css-d] Is this possible with CSS?

2009-03-28 Thread Gunlaug Sørtun
Geoffrey Hoffman wrote: Specifically, I want the li bullet to turn a color when I hover on the a inside it. With CSS only, yes, but browser support is a bit weak. As an example: we can play with generated content... http://www.gunlaug.no/tos/moa_43.html ...and get the effect you want - in

Re: [css-d] Is this possible with CSS?

2009-03-28 Thread Philippe Wittenbergh
On Mar 29, 2009, at 1:12 PM, Gunlaug Sørtun wrote: As an example: we can play with generated content... http://www.gunlaug.no/tos/moa_43.html ...and get the effect you want - in supporting browsers. Works as well in Fx 3. You could improve it: set the generated content to