Re: [css-d] My unordered list is failing in FireFox and Opera

2008-01-07 Thread Ibrahim Y
sorry, which page ? On Jan 7, 2008 9:25 AM, Farid Jameossanaye [EMAIL PROTECTED] wrote: Any idea why this page does not look right (the footer is showing up before the actual content) in FireFox and Opera? It looks ok on IE 7. Any help is appreciated. Thanks

Re: [css-d] My unordered list is failing in FireFox and Opera

2008-01-07 Thread Rekhesh Mohan
On Monday 07 January 2008 12:55:39 Farid Jameossanaye wrote: Any idea why this page does not look right (the footer is showing up before the actual content) in FireFox and Opera? It looks ok on IE 7. Any help is appreciated. Did you forget to provide a link to your page? :) Anywayz, if you

[css-d] Float-less layouts

2008-01-07 Thread Thierry Koblentz
My apologies for cross-posting. I'd appreciate any comment that would help me improve this article: http://tjkdesign.com/articles/float-less_css_layouts.asp Demo: http://tjkdesign.com/articles/css-layout/no_div_no_float_no_clear_no_hack_no _joke.asp -- Regards, Thierry |

Re: [css-d] My unordered list is failing in FireFox and Opera

2008-01-07 Thread Farid Jamea
Sorry everybody, the link is http://atlantagoldenrugs.com/viewgallery.php?cid=1 On Jan 7, 2008 2:40 AM, Rekhesh Mohan [EMAIL PROTECTED] wrote: On Monday 07 January 2008 12:55:39 Farid Jameossanaye wrote: Any idea why this page does not look right (the footer is showing up before the actual

Re: [css-d] My unordered list is failing in FireFox and Opera

2008-01-07 Thread David Laakso
Farid Jamea wrote: http://atlantagoldenrugs.com/viewgallery.php?cid=1 Any idea why this page does not look right (the footer is showing up before the actual content) in FireFox and Opera? It looks ok on IE 7. Any help is appreciated. #footer_wrapper{ clear : both; --- add to

Re: [css-d] My unordered list is failing in FireFox and Opera

2008-01-07 Thread [EMAIL PROTECTED]
http://atlantagoldenrugs.com/viewgallery.php?cid=1 Any idea why this page does not look right (the footer is showing up before the actual content) in FireFox and Opera? It looks ok on IE 7. Any help is appreciated. You're not clearing your floats. Add clear:both to your #footer in your

[css-d] Suckerfish Menu Over Flash

2008-01-07 Thread Matt
Is there an easy way to show menu elements over expanding flash ad? thanks __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies --

[css-d] Suckerfish Menu Over Flash

2008-01-07 Thread Matt
How can I make Suckerfish menu to appear over expanding flash ad? In general if the flash movie ad is static (does not expand)it works fine. When the flash ad is expanding the menu is hidden underneath it. Matt __ css-discuss

Re: [css-d] Suckerfish Menu Over Flash

2008-01-07 Thread Luis Speciale
Matt a écrit : How can I make Suckerfish menu to appear over expanding flash ad? In general if the flash movie ad is static (does not expand)it works fine. When the flash ad is expanding the menu is hidden underneath it. http://www.communitymx.com/content/article.cfm?cid=E5141 Hope it

Re: [css-d] Suckerfish Menu Over Flash

2008-01-07 Thread Mike Johnson
From: [EMAIL PROTECTED] How can I make Suckerfish menu to appear over expanding flash ad? In general if the flash movie ad is static (does not expand)it works fine. When the flash ad is expanding the menu is hidden underneath it. Have you tried setting the z-index property of the menu

[css-d] borders and padding oh my

2008-01-07 Thread Alex McPherson
Hi there, I have a simple page which will not display properly in IE7. I tested it and tweaked it on FF2.0 and it looks the way it's intended, but then when I showed it to the boss, she was on IE7 and it looks pretty shabby. the address for it is http://www.neep.org/HPSE/css/index.html

[css-d] IE Scroll Problem

2008-01-07 Thread Ray Schamp
Hi I'm delurking! (I think) I'm having an issue with the overflow-x property used with floats in IE7. In every browser I've tested except IE, this code shows a little block with a horizontal scroll-bar, allowing you to scroll the inner content horizontally. In IE, though, I'm getting really

Re: [css-d] borders and padding oh my

2008-01-07 Thread Highpowered
Alex McPherson wrote: Hi there, I have a simple page which will not display properly in IE7. I tested it and tweaked it on FF2.0 and it looks the way it's intended, but then when I showed it to the boss, she was on IE7 and it looks pretty shabby. the address for it is

[css-d] (no subject)

2008-01-07 Thread David Terrell
Hello List, Could someone please let me know why and how to fix the aberrant spacing in the top level of my nav? I don't understand where it is coming from. Could someone also help me fix the margin problem that I'm having between #left-image and #main-text? I've included a link to a

Re: [css-d] (no subject)

2008-01-07 Thread Highpowered
David Terrell wrote: Hello List, Could someone please let me know why and how to fix the aberrant spacing in the top level of my nav? I don't understand where it is coming from. Could someone also help me fix the margin problem that I'm having between #left-image and #main-text? I've

Re: [css-d] IE Scroll Problem

2008-01-07 Thread Philippe Wittenbergh
On Jan 8, 2008, at 5:59 AM, Ray Schamp wrote: Hi I'm delurking! Welcome (I think) I'm having an issue with the overflow-x property used with floats in IE7. In every browser I've tested except IE, this code shows a little block with a horizontal scroll-bar, allowing you to scroll the

Re: [css-d] (no subject)

2008-01-07 Thread Rob Emenecker
From what I can see it appears to be the 6em width in your #nav li selector... #nav li {styles.css (line 119) float:left; padding:0.25em; width:6em; } Change that width value to auto, or remove it entirely, and you may get the results you want! ...Rob