Re: [css-d] IE Clearing Bug

2008-09-19 Thread Thierry Koblentz
> discuss.org] On Behalf Of Gunlaug Sørtun > Sent: Friday, September 19, 2008 6:11 PM > To: Bill Brown > Cc: James Alvies; css-d@lists.css-discuss.org > Subject: Re: [css-d] IE Clearing Bug > > Bill Brown wrote: > > >> http://techsoup-global.org/node/1132 > > > You need a hasLayout fix on your #

Re: [css-d] fixed in IE

2008-09-19 Thread Leandro Coutinho
I use IE6, and I'm not using any doctype definition. what I have to do to work in IE7? thks > Date: Fri, 19 Sep 2008 15:20:03 +0200 > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > CC: css-d@lists.css-discuss.org > Subject: Re: [css-d] fixed in IE > > Leandro Coutinho wrote: > > > the foll

Re: [css-d] CSS stylesheet broken with IE6, 7 and 8 but not Firefox

2008-09-19 Thread David Laakso
Andy Borka wrote: > "The styles are embedded in the head of the document. Bring the page > up in in Firefox/3.0.1. Right > click on the page>View Page Source>The styles are in the head of the > document" > > Is the stylesheet used for this layout fully com

Re: [css-d] CSS stylesheet broken with IE6, 7 and 8 but not Firefox

2008-09-19 Thread David Laakso
Andy Borka wrote: >> re: >> That being the case maybe this layout by Georg Sortun is more in line >> with your need? >> > > > I would be interested in seeing the code for that design. > The styles a

Re: [css-d] Flash object has extra bottom margin in FF3, but not in IE

2008-09-19 Thread Gunlaug Sørtun
Tim Dawson wrote: > No cure for old age, I'm afraid. Pity. Not much hope for me then - with or without CSS. Georg;-) -- http://www.gunlaug.no __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/l

Re: [css-d] IE Clearing Bug

2008-09-19 Thread Gunlaug Sørtun
Bill Brown wrote: >> http://techsoup-global.org/node/1132 > You need a hasLayout fix on your #container element. #container > {zoom:1} should do the trick. > > You can test this by visiting your page and entering this into the > URL: > javascript:(document.getElementById('container').style.cs

[css-d] avoid using "clear: both" in empty div? and better use it when it is one of the styles of a class or ID?

2008-09-19 Thread liketo findoutwhy
I think we see a lot of examples of which is to clear the floats above, but since it actually introduces HTML mark up that does presentation stuff, is it actually a lot more cleaner to have no such lines in the HTML code, but instead, use ID and classes, and then in the stylesheets, use #slideN

Re: [css-d] css for header, main, footer

2008-09-19 Thread David Laakso
Luther Baker wrote: > Looking for some suggestions to be more css-zen-like. > > > > Can anyone share brief rules of thumb or anecdotal type patterns to follow > to avoid the type of positioning divs I am leveraging? > > Seems to me what you have (primary and secondary content preceding the foo

Re: [css-d] CSS stylesheet broken with IE6, 7 and 8 but not Firefox

2008-09-19 Thread David Laakso
Andy Borka wrote: > > The way the layout is supposed to work is to keep the nav links and a > mailing list form in the left (blue box), the copyright in the bottom (green > box) and have the main content in the red box. Of course, the backgrounds to > all of these boxes will be reverted to white wh

[css-d] css for header, main, footer

2008-09-19 Thread Luther Baker
Looking for some suggestions to be more css-zen-like. I normally use the following idiom. Please ignore the noise ... this example is mostly about breaking up the page with divs for HEADER, MAIN and FOOTER. menu app title subtopic blah column 1 content ...

[css-d] A Snippet for Testing IE Float Clearing

2008-09-19 Thread Bill Brown
Hi All, James Alvies wrote the list with a question about float clearing on a layout with fairly complex source. I run XP and Vista on VirtualBox inside my Ubuntu OS and hadn't installed any of the development tools for IE. Wondering whether it would be possible to use the javascript protocol

Re: [css-d] IE Clearing Bug

2008-09-19 Thread Bill Brown
James Alvies wrote: > Is there any chance I could get some assistance with this bugger? > http://techsoup-global.org/node/1132 Hi James, You need a hasLayout fix on your #container element. #container {zoom:1} should do the trick. You can test this by visiting your page and entering this into th

Re: [css-d] IE Clearing Bug

2008-09-19 Thread Gunlaug Sørtun
James Alvies wrote: > http://techsoup-global.org/node/1132 Looks like a tough one, and a bit too much style to comb through. If nothing else works out, IE still has respect for the old clearing-method... HTML: CSS: br.clear {clear: both;} regards Georg -- http://www.gunlaug.

Re: [css-d] clearing a CSS float

2008-09-19 Thread Luther Baker
Wow! Krystian - h1 doesn't seem to clear for me by default (XHTML strict, firefox) - but when I explicitly include it - it DOES work. I mistyped it earlier but thanks to you, I revisited it and noticed ':' instead of ';' Bill - wow! Now that's what I was looking for. Only the LIs are floating so

Re: [css-d] Flash object has extra bottom margin in FF3, but not in IE

2008-09-19 Thread Tim Dawson
Gunlaug Sørtun wrote: > Tim Dawson wrote: > >> http://www.holidaymullandiona.co.uk/pages/accn/bb-sw-mulle.php >> (Adobe) > >> It's unusual for something to work 'better' in IE than FF. Anyone >> able to help, please ? > > Add... > div#banner object {display: block;} > ...and Firefox should beha

[css-d] IE Clearing Bug

2008-09-19 Thread James Alvies
Hi Folks, I've been working on an IE clearing bug for the past 3 days and have exhausted all my patience and knowledge of CSS. I've tried the following fixes along with my own experimentation: http://www.sitepoint.com/blogs/2005/02/26/simple-clearing-of-floats/ http://www.positioniseverything.ne

Re: [css-d] Flash object has extra bottom margin in FF3, but not in IE

2008-09-19 Thread Gunlaug Sørtun
Tim Dawson wrote: > http://www.holidaymullandiona.co.uk/pages/accn/bb-sw-mulle.php > (Adobe) > It's unusual for something to work 'better' in IE than FF. Anyone > able to help, please ? Add... div#banner object {display: block;} ...and Firefox should behave as intended. regards Georg -

Re: [css-d] clearing a CSS float

2008-09-19 Thread Bill Brown
Luther Baker wrote: > >Link A >Link B > > Fancy Title > Blah blah blah ... > Current CSS: > ul, > ul li > { > list-style: none; > float: left; > margin: 0; > padding: 0; > } > ul li > { > display: block; > float: left; > padding-right: 10px; > } Hi Luther, T

Re: [css-d] text-transform both lowercase AND capitalize?

2008-09-19 Thread tedd
At 10:11 AM +1000 9/19/08, Chang Huang wrote: >Thanks all. It would be nice to have the option 'text- >transform:lowercase capitalize;' though. Of course, you always have that option -- just about anything can be done, if you can describe it. The only problem here is that this list normally does

[css-d] clearing a CSS float

2008-09-19 Thread Luther Baker
I often run into something like this: Link A Link B Fancy Title Blah blah blah ... Where I am using floats in the ul menu above. This happens when I am using columns as well. The problem is that h1 shows up just to the right of the menu. To try and correct that - I've added h1 { clear

[css-d] Flash object has extra bottom margin in FF3, but not in IE

2008-09-19 Thread Tim Dawson
I'm experimenting with a Flash banner on a page, just a set of changing images. Works perfectly, but in FF3 there's one or two pixels of extra transparent bottom space (margin ?) that I can't get rid of. No problem in IE7 or IE6. It happens with the default Adobe mark-up, and with SWFObject2, so

Re: [css-d] text-transform both lowercase AND capitalize?

2008-09-19 Thread tedd
At 12:08 AM -0500 9/19/08, Holly Bergevin wrote: >From: Chang Huang <[EMAIL PROTECTED]> > >>Thanks all. It would be nice to have the option 'text- >>transform:lowercase capitalize;' though. > >I guess I'm missing the point here, but when I type, I >"automatically" type words with capital letters a

Re: [css-d] Aaargh! Img borders persist

2008-09-19 Thread Vincent Pollard
img { border: 0; } Always seems to work for me! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Laakso Sent: Friday, September 19, 2008 1:17 PM To: Kim Brooks Wei Cc: CSS Discuss Subject: Re: [css-d] Aaargh! Img borders persist Kim Brooks Wei wrote

Re: [css-d] Aaargh! Img borders persist

2008-09-19 Thread David Laakso
Kim Brooks Wei wrote: > http://blackboxnyc.com/soulsearching/index.html#nymf > > Ok, I give up. Please somebody, tell me how to get rid of the border > under my imgs on hover. > > Thank you for Much Appreciated Help, as always . . . > Kimi > > Nothing to do with your question but it may be in

Re: [css-d] CSS stylesheet broken with IE6, 7 and 8 but not Firefox

2008-09-19 Thread David Laakso
Andy Borka wrote: I am trying to create a 3 panel layout with css. RE:www.test.eternityrecords.org/index2.aspx This is one way to sort of do it [1]. Fwiw, sites that do not restrict content and allow the software to just do its little thing unhampered tend to be more functional, useful, and

Re: [css-d] Aaargh! Img borders persist

2008-09-19 Thread Jack Timmons
On Fri, Sep 19, 2008 at 3:05 AM, Kim Brooks Wei <[EMAIL PROTECTED]>wrote: > http://blackboxnyc.com/soulsearching/index.html#nymf > > Ok, I give up. Please somebody, tell me how to get rid of the border > under my imgs on hover. > > Thank you for Much Appreciated Help, as always . . . > Kimi > > --

[css-d] Aaargh! Img borders persist

2008-09-19 Thread Kim Brooks Wei
http://blackboxnyc.com/soulsearching/index.html#nymf Ok, I give up. Please somebody, tell me how to get rid of the border under my imgs on hover. Thank you for Much Appreciated Help, as always . . . Kimi -- This email sent by Kimi Wei http://thewei.com 201-475-1854

Re: [css-d] CSS stylesheet broken with IE6, 7 and 8 but not Firefox

2008-09-19 Thread Gunlaug Sørtun
Andy Borka wrote: > Would anybody have any ideas on how to make all browsers show this > layout like firefox does? You mean something like this...? Not very useful for anything, but I think it looks the same around the board. regards

Re: [css-d] fixed in IE

2008-09-19 Thread Gunlaug Sørtun
Leandro Coutinho wrote: > the following code works in FF and Chrome, but not in IE: > > #copy { > position:fixed; > bottom:0px; > margin-bottom:5px; > margin-right:5px; > margin-left:5px; > text-align:center; > width:98%; > background-color:#F0F0F0; > color:#D2

Re: [css-d] workaround to inherited opacity

2008-09-19 Thread Rob Emenecker
Hi Bill (and Al), > Whenever you expose IE7 to a filter you kill > font-smoothing. This is a great approach, but the font-smoothing will be an issue. ...Rob Rob Emenecker @ Hairy Dog Digital www.hairydogdigital.com Please note: Return e-mail messages ar

[css-d] fixed in IE

2008-09-19 Thread Leandro Coutinho
Hello folks, the following code works in FF and Chrome, but not in IE: #copy { position:fixed; bottom:0px; margin-bottom:5px; margin-right:5px; margin-left:5px; text-align:center; width:98%; background-color:#F0F0F0; color:#D2B48C; } Copyright© 2008 th

Re: [css-d] workaround to inherited opacity

2008-09-19 Thread Rob Emenecker
Hi all, Thank you for your insightful comments. At the moment I'm leaning towards using small background PNG32s in the DIVs for the transparency effect, with a conditional style sheet for IE6 that uses alternate background images. Best, Rob Rob Emenecker @

[css-d] CSS stylesheet broken with IE6, 7 and 8 but not Firefox

2008-09-19 Thread Andy Borka
Hi. I am trying to create a 3 panel layout with css. It has a left pane for nav links, a bottom panel for a copyright notice and a right scrollable panel for the sites main content. When it is viewed in Firefox 2 or later, the layout/design works like a dream (you have the blue panel on the left,

Re: [css-d] padding or margin differences between Firefox3 for the Mac and Firefox3 for the pc

2008-09-19 Thread Philippe Wittenbergh
On Sep 19, 2008, at 1:16 AM, Nancy Johnson wrote: > I was having the same problem before with safari and someone > suggested body: first of type. > > I am concerned that it breaks in Firefox 3.1. 1. Since you'll be using a doctype that triggers strict mode, if I understood correctly,, the diff

Re: [css-d] text-transform both lowercase AND capitalize?

2008-09-19 Thread Jack Timmons
On Fri, Sep 19, 2008 at 12:08 AM, Holly Bergevin <[EMAIL PROTECTED]>wrote: > From: Chang Huang <[EMAIL PROTECTED]> > > >Thanks all. It would be nice to have the option 'text- > >transform:lowercase capitalize;' though. > > I guess I'm missing the point here, but when I type, I "automatically" type