[css-d] Image captions with generated content

2010-12-08 Thread Gabriele Romanato
Hi! this works only in Opera: http://onwebdev.blogspot.com/2010/12/css-image-captions-with-generated.html :-( HTH http://www.css-zibaldone.com http://www.css-zibaldone.com/test/ (English) http://www.css-zibaldone.com/articles/ (English) http://onwebdev.blogspot.com/ (English)

[css-d] Mac OS X 10.4 Firefox/3.6.12

2010-12-08 Thread David Laakso
Greetings from Oaxaca, Mexico. re: http://chelseacreekstudio.com/fa/ When going back and forth from the index to an inside page note the h1 drop on all inside pages in Firefox/3.6.12. Current Safari, WebKit, Opera, SeaMonkey, Chrome, and IE/8 more or less get it right on this end What to

Re: [css-d] Mac OS X 10.4 Firefox/3.6.12

2010-12-08 Thread Chetan Crasta
Didn't notice any H1 drop in Firefox 3.6.12 Ubuntu. ~Chetan On Wed, Dec 8, 2010 at 6:34 PM, David Laakso da...@chelseacreekstudio.com wrote: Greetings from Oaxaca, Mexico. re: http://chelseacreekstudio.com/fa/ When going back and forth from the index to an inside page  note the h1 drop on

Re: [css-d] Mac OS X 10.4 Firefox/3.6.12

2010-12-08 Thread Philippe Wittenbergh
On Dec 8, 2010, at 10:04 PM, David Laakso wrote: re: http://chelseacreekstudio.com/fa/ When going back and forth from the index to an inside page note the h1 drop on all inside pages in Firefox/3.6.12. Current Safari, WebKit, Opera, SeaMonkey, Chrome, and IE/8 more or less get it right

Re: [css-d] Mac OS X 10.4 Firefox/3.6.12

2010-12-08 Thread Philippe Wittenbergh
On Dec 8, 2010, at 10:16 PM, Chetan Crasta wrote: Didn't notice any H1 drop in Firefox 3.6.12 Ubuntu. That doesn't surprise me – Liberation Sans has a different aspect ration than Helvetica Neue. I forgot to mention in my previous message that I see the same problem in Gecko and Webkit.

Re: [css-d] Mac OS X 10.4 Firefox/3.6.12

2010-12-08 Thread Felix Miata
On 2010/12/08 08:04 (GMT-0500) David Laakso composed: Greetings from Oaxaca, Mexico. I'll bet you're a lot warmer down there than the people up in New England. re:http://chelseacreekstudio.com/fa/ When going back and forth from the index to an inside page note the h1 drop on all inside

Re: [css-d] Mac OS X 10.4 Firefox/3.6.12

2010-12-08 Thread Chetan Crasta
That doesn't surprise me – Liberation Sans has a different aspect ration than Helvetica Neue. http://chelseacreekstudio.com/fa/css/sisu.css Actually, the font that is used is ProcionoRegular -- it is embedded using @font-face. One other possible reason for the difference in rendering across

[css-d] unable to hide div in IE7

2010-12-08 Thread Debbie Campbell
I'm using conditional comments to hide the #sliderbox and/or .movingboxes-slider div near the bottom of this page in IE7, but it isn't working: http://www.adventurecamper.com/#slider1=4 What am I missing? Help greatly appreciated. -- Debbie Campbell www.redkitecreative.com

Re: [css-d] IE7 display problem

2010-12-08 Thread Chetan Crasta
The ingallinks div contains a table. This is an incorrect use of tables. It also complicates matters. Use an unordered list with floated li elements instead. ~Chetan. On Wed, Dec 8, 2010 at 7:49 AM, Julie Holmes jhd...@gmail.com wrote: Hello, The following div class .ingallinks displays as I

Re: [css-d] unable to hide div in IE7

2010-12-08 Thread Chetan Crasta
The CSS seems to be ignored. Even !important didn't work. You can instead put the entire div within conditional comments like this: !--[if gte IE 8]!-- div id=sliderbox ... /div !--![endif]-- The sliderbox div will be visible to all browser except IE7 and below On Wed, Dec 8, 2010 at

Re: [css-d] unable to hide div in IE7

2010-12-08 Thread Debbie Campbell
I tried your suggestion; it's still ignoring the conditional comment. This is a WordPress site using Theme Hybrid, could it be something to do with that? I'll check on their forums as well. -- Debbie On 12/8/2010 11:09 AM, Chetan Crasta wrote: The CSS seems to be ignored. Even !important

Re: [css-d] IE7 display problem

2010-12-08 Thread Julie Holmes
Yes, thank you, Chetan. I tried floating li in unordered list before doing table solution. Floating li in ordered list had its own stack of browser compatibility issues separate from this one. Guess I'll be back on css-discuss list with those unless I get the links to miraculously line up

Re: [css-d] Mac OS X 10.4 Firefox/3.6.12

2010-12-08 Thread David Laakso
On 12/8/10 8:04 AM, David Laakso wrote: re: http://chelseacreekstudio.com/fa/ When going back and forth from the index to an inside page note the h1 drop on all inside pages in Firefox/3.6.12. Current Safari, WebKit, Opera, SeaMonkey, Chrome, and IE/8 more or less get it right on this end

Re: [css-d] IE7 display problem

2010-12-08 Thread David Laakso
On 12/7/10 9:19 PM, Julie Holmes wrote: Hello, The following div class .ingallinks displays as I designed in IE8, FF, Safari, Chrome but not in IE7. Please see fixit folder: http://www.thechildrensstoreinc.com/fixit/ Do I need to set up a separate stylesheet for IE7 or is there a fix that

Re: [css-d] IE7 display problem +1

2010-12-08 Thread David Laakso
On 12/8/10 7:42 PM, David Laakso wrote: On 12/7/10 9:19 PM, Julie Holmes wrote: The following div class .ingallinks displays as I designed in IE8, FF, Safari, Chrome but not in IE7. Please see fixit folder: http://www.thechildrensstoreinc.com/fixit/ Julie Quick- start checked in IE 7/8

Re: [css-d] unable to hide div in IE7

2010-12-08 Thread Philippe Wittenbergh
On Dec 9, 2010, at 2:23 AM, Debbie Campbell wrote: I'm using conditional comments to hide the #sliderbox and/or .movingboxes-slider div near the bottom of this page in IE7, but it isn't working: http://www.adventurecamper.com/#slider1=4 What am I missing? Help greatly appreciated. I