Re: [css-d] IE6 Problem: Logo won't show

Karl, try something like this:

XHTML:
<h1 id="logo"><a href="#">Time Logo</a></h1>


CSS:
h1#logo {
position: absolute;
top: 51px;
right: 196px;
margin: 0;
padding: 0;
}

h1#logo a{
background: #CCE181 url(../images/time-logo.gif) left top;
text-indent:-9999px;
display:block;
width:142px;
height:25px;
margin: 2px 5px 0 0;
}

-Tim

On Nov 22, 2007 3:56 PM, <[EMAIL PROTECTED]> wrote:

> Send css-d mailing list submissions to
>        css-d@lists.css-discuss.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://lists.css-discuss.org/mailman/listinfo/css-d
> or, via email, send a message with subject or body 'help' to
>        [EMAIL PROTECTED]
>
> You can reach the person managing the list at
>        [EMAIL PROTECTED]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of css-d digest..."
>
>
> Today's Topics:
>
>   1. Re: Is there any way to filter a css for Safari or Firefox
>      (Gunlaug S?rtun)
>   2. Breadcrumbs wrapping and background image IE6 (Rees, Mark)
>   3. Breaking out of a centered fixed width container...
>      (Timothy Kelty)
>   4. Re: Breadcrumbs wrapping and background image IE6 (Bruno Fassino)
>   5. Re: validation question (tedd)
>   6. Re: validation question (Jens Brueckmann)
>   7. Re: Breadcrumbs wrapping and background image IE6 (Jim Davis)
>   8. Re: Div Problems *whoops* (Hakan K)
>   9. background problem in IE6 using class selectors
>      ([EMAIL PROTECTED])
>  10. Re: background problem in IE6 using class selectors (Ingo Chao)
>  11.  Happy Thanksgiving! (Elias Abunassar)
>  12. Re: Is there any way to filter a css for Safari or Firefox
>      (Philippe Wittenbergh)
>  13. Re: How to make a relative positionned DIV invisible to flow
>      ? (Ingo Chao)
>  14. Re: background problem in IE6 using class selectors
>      ([EMAIL PROTECTED])
>  15. Re: background problem in IE6 using class selectors (Ingo Chao)
>  16. Re: validation question (tedd)
>  17. Re: background problem in IE6 using class selectors
>      (Gunlaug S?rtun)
>  18. Re: validation question ([EMAIL PROTECTED])
>  19. Re: validation question (Gunlaug S?rtun)
>  20. php sthe switcher for multiple style sheets (DAVOUD TOHIDY)
>  21. Re: background problem in IE6 using class selectors
>      (Bruno Fassino)
>  22. Re: background problem in IE6 using class selectors (Ingo Chao)
>  23. [ADMIN - OFFTOPIC] Re: php sthe switcher for multiple style
>      sheets (Alex Robinson)
>  24. Re: Div Problems *whoops* (David Laakso)
>  25. IE6 Problem: Logo won't show (Karl Bedingfield)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 21 Nov 2007 16:19:22 +0100
> From: Gunlaug S?rtun <[EMAIL PROTECTED]>
> Subject: Re: [css-d] Is there any way to filter a css for Safari or
>        Firefox
> To: chiara chiari <[EMAIL PROTECTED]>
> Cc: css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> chiara chiari wrote:
> > Hi guys, I need to filter a style rule for Safari and I was wondering
> > if there is any way to filter a dedicated css or if there is any
> > other way I can filter a stylesheet for FireFox and then use the main
> > one to give my rules to Safari (I am using separate css for IE7 and 6
> > already)
>
> Don't know if this Safari bug is present in latest releases...
>
> <
> http://www.christopherschmitt.com/2007/11/02/css-attribute-selector-bug-in-safari/
> >
>
> ...but if it is then it might work in reversed order - filter for Safari
> instead of other browsers.
>
> However, I'd like to see the case where such filtering is really
> necessary. All such filters tend to fail after a while, so they
> shouldn't be used for anything serious.
>
> regards
>        Georg
> --
> http://www.gunlaug.no
>
>
> ------------------------------
>
> Message: 2
> Date: Wed, 21 Nov 2007 11:03:45 -0000
> From: "Rees, Mark" <[EMAIL PROTECTED]>
> Subject: [css-d] Breadcrumbs wrapping and background image IE6
> To: <css-d@lists.css-discuss.org>
> Message-ID:
>        <
> [EMAIL PROTECTED]>
>
> Content-Type: text/plain;       charset="iso-8859-1"
>
> Hello
>
> I have a breadcrumb which wraps over two lines. I'd like to have an arrow
> appear to the left of each link in the breadcrumb, and I'd like preferably
> to split links over two lines where necessary, or alternatively to have
> breadcrumbs appear whole on the new line where they would otherwise be
> split. I cannot make either option work in Internet Explorer 6.
>
> The current output in IE6 looks like this (arrows before links 3 and 5 are
> missing)
>
> -> link number one  -> link number two  link
> number three -> link number four link
> number five
>
> This is what I am aiming for (all arrows are present)
>
> -> link number one  -> link number two  -> link
> number three -> link number four -> link
> number five
>
> I have tried including the image in the HTML but then there's nothing to
> stop the image appearing on one line and the start of the link text on the
> next line, which is not desirable.
>
>
> Here is some test code which shows the problem. This works fine in Firefox
> but in IE, the arrow does not appear before links which are split over two
> lines.
>
> Thanks in advance for any help you can offer
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
> http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
> <html>
> <head>
> <style type="text/css">
> ul{
>        width:500px;
> }
>
> li{
>        display:inline;
> }
>
> a{
>        background-repeat:no-repeat;
>        background-image:url(
> http://www.cmswire.com/images/arrow_small-black.gif);
>        background-position:1px 5px;
>        padding-left:30px;
> }
>
> </style>
> </head>
> <body>
> <ul>
> <li><a href="#">One two three five</a></li>
> <li><a href="#">One two three four five</a></li>
> <li><a href="#">One  four five</a></li>
> <li><a href="#">One two three four five</a></li>
> <li><a href="#">One </a></li>
> <li><a href="#">One two three four five</a></li>
> <li><a href="#">One two three four five</a></li>
> <li><a href="#">One two three four five</a></li>
> <li><a href="#">One two three four five</a></li>
> </ul>
> </body>
> </html>
>
> Mark Rees
>
>
> ------------------------------
>
> Message: 3
> Date: Wed, 21 Nov 2007 11:54:44 -0500
> From: Timothy Kelty <[EMAIL PROTECTED]>
> Subject: [css-d] Breaking out of a centered fixed width container...
> To: css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
>
> Lately this has come up:
>
> I have a fixed width centered container that contains my entire site,
> like so:
> #container{ margin: 0 auto; width:960px}
>
> My question is if there is a way for a block element within the
> container to break out of the container and span the width of the
> browser, behaving like a normal block that was a child of the body
> tag.  I've tried toying with positioning and negative margins but
> haven't found the formula.  Anyone?
>
> My current workaround is just closing the container before the
> element, then opening the another container after it.
>
>
> ------------------------------
>
> Message: 4
> Date: Wed, 21 Nov 2007 18:51:17 +0100
> From: "Bruno Fassino" <[EMAIL PROTECTED]>
> Subject: Re: [css-d] Breadcrumbs wrapping and background image IE6
> To: "Rees, Mark" <[EMAIL PROTECTED]>
> Cc: css-d@lists.css-discuss.org
> Message-ID:
>        <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On Nov 21, 2007 12:03 PM, Rees, Mark wrote:
> >
> > I have a breadcrumb which wraps over two lines. I'd like to have an
> arrow appear to the left of each link in the breadcrumb, and I'd like
> preferably to split links over two lines where necessary, or alternatively
> to have breadcrumbs appear whole on the new line where they would otherwise
> be split. I cannot make either option work in Internet Explorer 6.
> >
> > The current output in IE6 looks like this (arrows before links 3 and 5
> are missing)
> >
> > -> link number one  -> link number two  link
> > number three -> link number four link
> > number five
>
> This is indeed a problem with background images on inline elements in
> IE. You can read more here [1]. Unfortunately there is no simple
> solution. If you don't mind having the element to wrap as a whole
> (just in IE) then you can give hasLayout to it, as suggested at the
> end of that article.
>
> I never tried them, but if you can/want to alter (contaminate) the
> HTML there are other (weird) workarounds like wrapping the first
> letter in a span, then apply the background image to that span instead
> of the whole link.
>
> Regards,
> Bruno
>
> [1] http://www.satzansatz.de/cssd/wrappinglinkbg.html
>
> --
> Bruno Fassino http://www.brunildo.org/test
>
>
> ------------------------------
>
> Message: 5
> Date: Wed, 21 Nov 2007 14:03:59 -0500
> From: tedd <[EMAIL PROTECTED]>
> Subject: Re: [css-d] validation question
> To: jaklitsch maya <[EMAIL PROTECTED]>, css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="us-ascii" ; format="flowed"
>
> At 7:45 PM -0800 11/18/07, jaklitsch maya wrote:
> >What am I doing wrong?
>
> "thin" is not an attribute for border -- check this out:
>
> http://www.tizag.com/cssT/border.php
>
>
> Cheers,
>
> tedd
> --
> -------
> http://sperling.com  http://ancientstones.com  http://earthstones.com
>
>
> ------------------------------
>
> Message: 6
> Date: Wed, 21 Nov 2007 20:14:13 +0100
> From: "Jens Brueckmann" <[EMAIL PROTECTED]>
> Subject: Re: [css-d] validation question
> To: CSS-Discuss <css-d@lists.css-discuss.org>
> Message-ID:
>        <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> > "thin" is not an attribute for border
>
> Quite right, is is an allowed value for the border-width property, see:
>
> http://www.w3.org/TR/CSS2/box.html#value-def-border-width
>
> Cheers,
>
> jens
> --
> Jens Brueckmann
> http://www.yalf.de
>
>
> ------------------------------
>
> Message: 7
> Date: Wed, 21 Nov 2007 12:02:21 -0800
> From: "Jim Davis" <[EMAIL PROTECTED]>
> Subject: Re: [css-d] Breadcrumbs wrapping and background image IE6
> To: css-d@lists.css-discuss.org
> Message-ID:
>        <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> I don't want to ignite the old debate about using a definition list for a
> list of links, but perhaps this is one of those cases where using <dl> and
> <dt> could be employed. Note the following demo:
>
> http://www.jimdavis.org/test/bcTest.html
>
> The dt can be styled with a background image and floated left. Set margins
> to suit your taste.
>
> Jim
>
> On Nov 21, 2007 3:03 AM, Rees, Mark <[EMAIL PROTECTED]> wrote:
>
> > Hello
> >
> > I have a breadcrumb which wraps over two lines. I'd like to have an
> arrow
> > appear to the left of each link in the breadcrumb, and I'd like
> preferably
> > to split links over two lines where necessary, or alternatively to have
> > breadcrumbs appear whole on the new line where they would otherwise be
> > split. I cannot make either option work in Internet Explorer 6.
>
>
> ------------------------------
>
> Message: 8
> Date: Wed, 21 Nov 2007 20:56:05 -0500
> From: "Hakan K" <[EMAIL PROTECTED]>
> Subject: Re: [css-d] Div Problems *whoops*
> To: "David Laakso" <[EMAIL PROTECTED]>
> Cc: [EMAIL PROTECTED], css-d@lists.css-discuss.org
> Message-ID:
>        <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> I am not able to see any header, and menu css function on IE 6
>
> #header {
>  background:#fff url(images/valtour_top.png) no-repeat;
>  height:250px;
>
>
>
>
>
> Hakan
> http://primoris.com
>
>
> On 11/20/07, David Laakso <[EMAIL PROTECTED]> wrote:
> >
> > David Laakso wrote:
> > > Alan_Akhlah wrote:
> > >> I am having problems with a new page that I am designing.
> > >> http://www.valdostatourism.com/newsitetest.html
> > >>
> > >>
> > >> Al Dunbar
> > >>
> > >
> > >
> > > #menu   {
> > > border: 1px solid fuchsia; float: left; <!--- :: add ::
> > > margin:/*50px*/0 0 100px 15px; <--- :: amend ::
> > > }
> > >
> > >
> > > #footer {
> > > /*left:0; <--- :: delete these three rules ::
> > > bottom:0;
> > > position: absolute;*/
> > > }
> > >
> > > Validate the CSS.
> > >
> > > Best,
> > > ~dL
> > >
> >
> > *Whoops, for got this:*
> >
> > #main { clear: both; } <--- :: add ::
> > ~d
> >
> >
> >
> > --
> > http://chelseacreekstudio.com/
> >
> > ______________________________________________________________________
> > css-discuss [EMAIL PROTECTED]
> > http://www.css-discuss.org/mailman/listinfo/css-d
> > List wiki/FAQ -- http://css-discuss.incutio.com/
> > List policies -- http://css-discuss.org/policies.html
> > Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
> >
>
>
> ------------------------------
>
> Message: 9
> Date: Thu, 22 Nov 2007 14:09:16 +0200
> From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
> Subject: [css-d] background problem in IE6 using class selectors
> To: css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hi,
>
> This is weird, I've googled long time and I cannot find solution.
> It happens only on IE6.
>
> Sorry, but I cannot put online case right now, here is just the code.
>
>
> Scenario 1:
> You should see text on blue background of div #wrapper
>
> = FILE BEGIN ==
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
>
> <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
> <head>
>    <title></title>
> <style type="text/css">
> #wrapper.blue {background:blue}
> #wrapper.red {background:red}
> </style>
> </head>
>
> <body>
> <div id="wrapper" class="blue">
> this background should be blue
> </div>
> </body>
> </html>
> = FILE END =
>
>
> Scenario 2:
> After swapping lines
> #wrapper.blue {background:blue}
> #wrapper.red {background:red}
> the background is no longer blue.
> = FILE BEGIN ==
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
>
> <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
> <head>
>    <title></title>
> <style type="text/css">
> #wrapper.red {background:red}
> #wrapper.blue {background:blue}
> </style>
> </head>
>
> <body>
> <div id="wrapper" class="blue">
> this background should be blue
> </div>
> </body>
> </html>
> = FILE END =
>
>
> What's happening???
>
>
>
>
> ------------------------------
>
> Message: 10
> Date: Thu, 22 Nov 2007 14:03:15 +0100
> From: Ingo Chao <[EMAIL PROTECTED]>
> Subject: Re: [css-d] background problem in IE6 using class selectors
> To: css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> [EMAIL PROTECTED] wrote:
> > Hi,
> >
> > This is weird, I've googled long time and I cannot find solution.
> > It happens only on IE6.
> >
> > Sorry, but I cannot put online case right now, here is just the code.
> >
> >
> > Scenario 1:
> > You should see text on blue background of div #wrapper
> >
> > ...
> > <style type="text/css">
> > #wrapper.blue {background:blue}
> > #wrapper.red {background:red}
> > </style>
> > ...
>
> See
> http://css-discuss.incutio.com/?page=InternetExplorerWinBugs
> -> The multiple #id.class bug
>
> Lately someone noted a fix with placing those rules in two separate
> <style>-blocks. If you could veryfy this fix, I'd appreciate it.
>
> Ingo
>
> --
> http://www.satzansatz.de/css.html
>
>
> ------------------------------
>
> Message: 11
> Date: Thu, 22 Nov 2007 09:01:16 -0500
> From: Elias Abunassar <[EMAIL PROTECTED]>
> Subject: [css-d]  Happy Thanksgiving!
> To: Ingo Chao <[EMAIL PROTECTED]>,
>        "css-d@lists.css-discuss.org" <css-d@lists.css-discuss.org>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain;       charset="US-ASCII"
>
> Dear CSS-Discuss Members,
>
> Wanted to wish everyone a Happy Thanksgiving and express my sincerest
> thanks
> for your hard work, mentoring, patience and guidance.
>
> Sincerely,
>
> Elias Abunassar
>
> ______________________________________________________________________
> css-discuss [EMAIL PROTECTED]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> List policies -- http://css-discuss.org/policies.html
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
>
>
>
>
> ------------------------------
>
> Message: 12
> Date: Thu, 22 Nov 2007 23:13:10 +0900
> From: Philippe Wittenbergh <[EMAIL PROTECTED]>
> Subject: Re: [css-d] Is there any way to filter a css for Safari or
>        Firefox
> To: CSS-D <css-d@lists.css-discuss.org>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed
>
>
> On Nov 22, 2007, at 12:19 AM, Gunlaug S?rtun wrote:
>
> > chiara chiari wrote:
> >> Hi guys, I need to filter a style rule for Safari and I was wondering
> >> if there is any way to filter a dedicated css or if there is any
> >> other way I can filter a stylesheet for FireFox and then use the main
> >> one to give my rules to Safari (I am using separate css for IE7 and 6
> >> already)
> >
> > Don't know if this Safari bug is present in latest releases...
> >
> > <http://www.christopherschmitt.com/2007/11/02/css-attribute-
> > selector-bug-in-safari/>
> >
> > ...but if it is then it might work in reversed order - filter for
> > Safari
> > instead of other browsers.
> >
> > However, I'd like to see the case where such filtering is really
> > necessary. All such filters tend to fail after a while, so they
> > shouldn't be used for anything serious.
>
> Another way to target Safari (and KHTML) is the following construction:
> body:not(:root:root) selector { property:value }
> Nobody else seems to support this (not Gecko, not Opera).
>
> Documented here:
> <http://thomas.tanreisoftware.com/?p=11#safari>
>
> As Georg says, use with care and in the knowledge that those hackery
> filters will break in the future, possibly sooner than later.
>
>
> Philippe
> ---
> Philippe Wittenbergh
> <http://emps.l-c-n.com>
>
>
>
>
>
>
> ------------------------------
>
> Message: 13
> Date: Thu, 22 Nov 2007 15:13:52 +0100
> From: Ingo Chao <[EMAIL PROTECTED]>
> Subject: Re: [css-d] How to make a relative positionned DIV invisible
>        to flow ?
> To: S?bastien FICHOT <[EMAIL PROTECTED]>
> Cc: css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> S?bastien FICHOT wrote:
> > Hello !
> >
> > I would like that DIV #Reactions-Blog is displayed on the right, and
> > that his height not added in top of article title (IE). It is a
> > reltive positionned DIV, with extra Top and Left positions.
> > With FF, I have a more important problem, since the whole DIV seems
> > moved all in bottom.
> > I don't know what to modify, I take the code of a colleague and I do
> > not control CSS well.
> >
> > Can someone give me a little hand check ?
> >
> >
> http://celtipharmcom.aricie.info/Accueil/Detail/tabid/104/itemid/2626/language/en-US/Default.aspx
>
> I fear a little hand wouldn't be enough to shovel through a 14-level
> deep nesting.
>
> Look for
> #dnn_ctr427_ModuleWrapper_ModuleContent
> this is followed by a div with clear:both inline style
> This clear clears the right column, therefore Firefox correctly moves
> the box all the way down.
>
> You'll have to check if this clear is really needed, and if so, you'll
> have to establish a block formatting context on one of its parent
> elements, probably by just making it 'float'.
>
> For the misplaced satellite box to the right that is actually positioned
> absolutely, you'll have to make an element within the center column be
> the containing block (position:relative) for it, so the left/top offsets
> can work with respect to this containing block.
>
> Ingo
>
> --
> http://www.satzansatz.de/css.html
>
>
> ------------------------------
>
> Message: 14
> Date: Thu, 22 Nov 2007 15:47:49 +0200
> From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
> Subject: Re: [css-d] background problem in IE6 using class selectors
> To: Ingo Chao <[EMAIL PROTECTED]>
> Cc: css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> [quote]
>
> http://css-discuss.incutio.com/?page=InternetExplorerWinBugs
> -> The multiple #id.class bug
>
> [/quote]
>
> Yes, I've found it in the meantime.
>
> The separate style blocks is not an option for me, plus this was just a
> test case, I'm not using inline CSS.
>
> In my real case the troubling element was deep inside of DOM tree so
> I've just moved the style selector to the first logical element up.
>
>
> Cheers :)
>
> Ingo Chao wrote:
> > [EMAIL PROTECTED] wrote:
> >
> >> Hi,
> >>
> >> This is weird, I've googled long time and I cannot find solution.
> >> It happens only on IE6.
> >>
> >> Sorry, but I cannot put online case right now, here is just the code.
> >>
> >>
> >> Scenario 1:
> >> You should see text on blue background of div #wrapper
> >>
> >> ...
> >> <style type="text/css">
> >> #wrapper.blue {background:blue}
> >> #wrapper.red {background:red}
> >> </style>
> >> ...
> >>
> >
> > See
> > http://css-discuss.incutio.com/?page=InternetExplorerWinBugs
> > -> The multiple #id.class bug
> >
> > Lately someone noted a fix with placing those rules in two separate
> > <style>-blocks. If you could veryfy this fix, I'd appreciate it.
> >
> > Ingo
> >
> >
>
>
>
> ------------------------------
>
> Message: 15
> Date: Thu, 22 Nov 2007 15:32:35 +0100
> From: Ingo Chao <[EMAIL PROTECTED]>
> Subject: Re: [css-d] background problem in IE6 using class selectors
> To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
> Cc: css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> [EMAIL PROTECTED] wrote:
> > [quote]
> >
> > http://css-discuss.incutio.com/?page=InternetExplorerWinBugs
> > -> The multiple #id.class bug
> >
> > [/quote]
> >
> > Yes, I've found it in the meantime.
> >
> > The separate style blocks is not an option for me, plus this was just a
> > test case, I'm not using inline CSS.
> >
> > In my real case the troubling element was deep inside of DOM tree so
> > I've just moved the style selector to the first logical element up.
> >
> >
> > Cheers :)
> >
> > Ingo Chao wrote:
> >> [EMAIL PROTECTED] wrote:
> >>
> >>> Hi,
> >>>
> >>> This is weird, I've googled long time and I cannot find solution.
> >>> It happens only on IE6.
> >>>
> >>> Sorry, but I cannot put online case right now, here is just the code.
> >>>
> >>>
> >>> Scenario 1:
> >>> You should see text on blue background of div #wrapper
> >>>
> >>> ...
> >>> <style type="text/css">
> >>> #wrapper.blue {background:blue}
> >>> #wrapper.red {background:red}
> >>> </style>
> >>> ...
> >>>
> >>
> >> See
> >> http://css-discuss.incutio.com/?page=InternetExplorerWinBugs
> >> -> The multiple #id.class bug
> >>
> >> Lately someone noted a fix with placing those rules in two separate
> >> <style>-blocks. If you could veryfy this fix, I'd appreciate it.
> >>
> >> Ingo
> >>
> >>
> >
> >
>
> Good. In case someone else could veryfy this fix, I'd appreciate it.
> @importing two stylesheets should be similar to having two style-blocks,
> or shouldn't it?
>
> Ingo
>
> --
> http://www.satzansatz.de/css.html
>
>
> ------------------------------
>
> Message: 16
> Date: Thu, 22 Nov 2007 10:01:09 -0500
> From: tedd <[EMAIL PROTECTED]>
> Subject: Re: [css-d] validation question
> To: "Jens Brueckmann" <[EMAIL PROTECTED]>,      CSS-Discuss
>        <css-d@lists.css-discuss.org>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="us-ascii" ; format="flowed"
>
> At 8:14 PM +0100 11/21/07, Jens Brueckmann wrote:
> >  > "thin" is not an attribute for border
> >
> >Quite right, is is an allowed value for the border-width property, see:
> >
> >http://www.w3.org/TR/CSS2/box.html#value-def-border-width
> >
> >Cheers,
> >
> >jens
>
> jens:
>
> I didn't realize that -- thanks.
>
> I've learned something new every day of my life, and I'm getting
> damned tried of it. :-)
>
> Cheers,
>
> tedd
> --
> -------
> http://sperling.com  http://ancientstones.com  http://earthstones.com
>
>
> ------------------------------
>
> Message: 17
> Date: Thu, 22 Nov 2007 15:59:47 +0100
> From: Gunlaug S?rtun <[EMAIL PROTECTED]>
> Subject: Re: [css-d] background problem in IE6 using class selectors
> To: Ingo Chao <[EMAIL PROTECTED]>
> Cc: css-d@lists.css-discuss.org,        "[EMAIL PROTECTED]"
>        <[EMAIL PROTECTED]>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Ingo Chao wrote:
>
> > Good. In case someone else could veryfy this fix, I'd appreciate it.
> >  @importing two stylesheets should be similar to having two
> > style-blocks, or shouldn't it?
>
> Dunno. To busy to test ATM, and the buggy logic of such hacks must be
> tested quite thoroughly since the "logic" part usually is a bit
> suppressed by the "buggy" part.
>
> However, if using two @imports works, then using two (or more) @media in
> same stylesheets might also work..?
>
> regards
>        Georg
> --
> http://www.gunlaug.no
>
>
> ------------------------------
>
> Message: 18
> Date: Thu, 22 Nov 2007 16:14:57 +0100
> From: [EMAIL PROTECTED]
> Subject: Re: [css-d] validation question
> To: css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=iso-8859-15
>
> tedd" <[EMAIL PROTECTED]>
>
> > I've learned something new every day of my life, and I'm getting damned
> tried of it. :-)
> >
> > Cheers,
> >
> > tedd
> > --
>
> You shouldn't be. When you stop learning, you're dead, whether you realize
> it or not!
>
> Bruce
>
>
>
> ------------------------------
>
> Message: 19
> Date: Thu, 22 Nov 2007 16:10:08 +0100
> From: Gunlaug S?rtun <[EMAIL PROTECTED]>
> Subject: Re: [css-d] validation question
> To: tedd <[EMAIL PROTECTED]>
> Cc: CSS-Discuss <css-d@lists.css-discuss.org>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> tedd wrote:
>
> > I've learned something new every day of my life, and I'm getting
> > damned tried [ err ... tired ] of it. :-)
>
> Living, or learning..? ;-)
>
> CSS provides sooooooooo much fun!
>
> I want more...
> <http://www.w3.org/Style/CSS/Planet/>
>
> regards
>        Georg
> --
> http://www.gunlaug.no
>
>
> ------------------------------
>
> Message: 20
> Date: Thu, 22 Nov 2007 08:40:14 -0500
> From: DAVOUD TOHIDY <[EMAIL PROTECTED]>
> Subject: [css-d] php sthe switcher for multiple style sheets
> To: mailinlistofcss-discuss <css-d@lists.css-discuss.org>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="iso-8859-1"
>
>
> Greetings,
>
> I am looking for a php multiple style switcher which can handle
> switching more than two style sheets for my portfolio
> located at http://cssfreelancer.awardspace.com .
>
> Would appreciate your comments.
>
> Best
> davoud
> _________________________________________________________________
> Have fun while connecting on Messenger! Click here to learn more.
> http://entertainment.sympatico.msn.ca/WindowsLiveMessenger
>
> ------------------------------
>
> Message: 21
> Date: Thu, 22 Nov 2007 17:31:15 +0100
> From: "Bruno Fassino" <[EMAIL PROTECTED]>
> Subject: Re: [css-d] background problem in IE6 using class selectors
> To: " Gunlaug S?rtun " <[EMAIL PROTECTED]>
> Cc: Ingo Chao <[EMAIL PROTECTED]>, css-d@lists.css-discuss.org
> Message-ID:
>        <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On Nov 22, 2007 Ingo Chao wrote:
> >
> > > Good. In case someone else could veryfy this fix, I'd appreciate it.
> > >  @importing two stylesheets should be similar to having two
> > > style-blocks, or shouldn't it?
>
> This is what I see after some quick tests (as Georg said, these things
> should be tested more thoroughly)
>
> 1. Separate <style> OK
> 2. Separate css files  <link>ed OK
> 3. Separate css files  @import-ed OK
> 4. Separate @media in the same <style> block, or in the same css file:
>  NOT OK.
>
> Bruno
>
> --
> Bruno Fassino http://www.brunildo.org/test
>
>
> ------------------------------
>
> Message: 22
> Date: Thu, 22 Nov 2007 17:46:59 +0100
> From: Ingo Chao <[EMAIL PROTECTED]>
> Subject: Re: [css-d] background problem in IE6 using class selectors
> To: Bruno Fassino <[EMAIL PROTECTED]>
> Cc: Gunlaug S?rtun <[EMAIL PROTECTED]>,  css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> Bruno Fassino wrote:
> > On Nov 22, 2007 Ingo Chao wrote:
> >>> Good. In case someone else could veryfy this fix, I'd appreciate it.
> >>>  @importing two stylesheets should be similar to having two
> >>> style-blocks, or shouldn't it?
> >
> > This is what I see after some quick tests (as Georg said, these things
> > should be tested more thoroughly)
> >
> > 1. Separate <style> OK
> > 2. Separate css files  <link>ed OK
> > 3. Separate css files  @import-ed OK
> > 4. Separate @media in the same <style> block, or in the same css file:
>  NOT OK.
> >
> > Bruno
> >
>
> Great, thank you very much, Bruno. Next time the bug shows up, maybe we
> can continue the tests. I think this workaround could be pretty useful
> if the situation becomes indistinct in some convoluted stylesheets.
>
> Thanks again,
>
> Ingo
>
> --
> http://www.satzansatz.de/css.html
>
>
> ------------------------------
>
> Message: 23
> Date: Thu, 22 Nov 2007 17:16:21 +0000
> From: Alex Robinson <[EMAIL PROTECTED]>
> Subject: [css-d] [ADMIN - OFFTOPIC] Re: php sthe switcher for multiple
>        style sheets
> To: DAVOUD TOHIDY <[EMAIL PROTECTED]>,        mailinlistofcss-discuss
>        <css-d@lists.css-discuss.org>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="us-ascii" ; format="flowed"
>
> At 08:40 -0500 22/11/07, DAVOUD TOHIDY wrote:
> >Greetings,
> >
> >I am looking for a php multiple style switcher which can handle
> >switching more than two style sheets for my portfolio
> >located at http://cssfreelancer.awardspace.com .
> >
> >Would appreciate your comments.
>
>
> Comments about style switching in general will be fine (as long as
> they do not focus on javascript or any other non-css realted aspect).
>
> Stuff about php (or any specific server-side language) is not acceptable.
>
> Okay?
>
>
>
> Normally as moderator I wouldn't resort to just replying with a
> google link (and yes, other search engine companies do exist), but
> the following query should get you started...
>
> http://www.google.com/search?q=css+style+switch+php
>
>
>
> Alex Robinson
> css-d moderator
>
>
> ------------------------------
>
> Message: 24
> Date: Thu, 22 Nov 2007 13:54:28 -0500
> From: David Laakso <[EMAIL PROTECTED]>
> Subject: Re: [css-d] Div Problems *whoops*
> To: Hakan K <[EMAIL PROTECTED]>
> Cc: [EMAIL PROTECTED], css-d@lists.css-discuss.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hakan K wrote:
> > I am not able to see any header, and menu css function on IE 6
> >
> > #header {
> >  background:#fff url(images/valtour_top.png) no-repeat;
> >  height:250px;
>
>
> RE: <http://www.valdostatourism.com/newsitetest.html>
>
> Good points.
> The image is not on the server. Scripting is needed to make the
> drop-down work in IE6. And clear: left; /or/ clear: both; needs to be
> added to #main to clear the menu in compliant browsers.
> Best,
> ~dL
>
>
>
>
> ------------------------------
>
> Message: 25
> Date: Thu, 22 Nov 2007 18:37:53 +0000
> From: "Karl Bedingfield" <[EMAIL PROTECTED]>
> Subject: [css-d] IE6 Problem: Logo won't show
> To: css-d@lists.css-discuss.org
> Message-ID:
>        <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi all,
>
> This is my first post :)
>
> I have a problem with my logo.gif not showing in ie6. I am using this
> code in my page:
>
> <p id="logo"><img src="/images/time-logo.gif" width="142" height="25"
> alt="" /></p>
>
> These are my logo styles:
>
> #logo {
> position: absolute;
> top: 5px;
> right: 15px;
> margin: 0;
> padding: 0;
> }
>
> #logo a img {
> background: #CCE181;
> margin: 2px 5px 0 0;
> }
>
> #logo a:hover img {
> background: #fff;
> }
>
> Is ther anything obvious here that I should be changing for IE6?
>
> Thanks
> Karl
>
>
> ------------------------------
>
> ______________________________________________________________________
> css-discuss [EMAIL PROTECTED]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> List policies -- http://css-discuss.org/policies.html
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
>
> End of css-d Digest, Vol 60, Issue 16
> *************************************
>



-- 
Tim Wright
Mobile: (919) 538-2676
Web: csskarma.com & fatfold.com
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to