[css-d] IE7: Conditional Statement needed?

2007-04-01 Thread Karl Bedingfield
Hi there, I have just 4 styles that need some attention for ie7, these are: *:first-child+html .mainWrapper { right: -1px; } *:first-child+html #copyright p { padding: 10px 10px 20px; } *:first-child+html #c-front-page #l-col, *:first-child+html #c-front-page #c-col { overflow: hidden; } I hav

[css-d] Embedded Fonts

2007-04-01 Thread Dino CSS
Hi All, Can I embedded ttf font inside my website through css so that any browser can open and view the font ? Regards, Feris __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information --

Re: [css-d] Embedded Fonts

2007-04-01 Thread Fora
You need Open Type fonts for that. True Type or Postscript fonts aren't supported. HTH A. __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?p

Re: [css-d] How To Position Banner Amidst Floated Layout

2007-04-01 Thread Elli Vizcaino
Thanks for the clarification! Elli V --- Gunlaug Sørtun <[EMAIL PROTECTED]> wrote: > Elli Vizcaino wrote: > > I was just wondering if this syntax is correct: > > > > #content {position: relative; > > float: left; > > width: 954px; > > border-top: 1px solid #162581;} > > That's a

[css-d] Absolute positioned img, z-index problem safari

2007-04-01 Thread Ellen O'Neill
Hi, I can't figure this out. My portfolio site: http://ellenoneill.nl/ uses absolute positioned images with z-indexes. No problems in IE6, IE7 and Firefox, only Safari 2.0.4 ignores my z-indexes. I tried reordering the images in de HTML, but that doesn't seem to matter either. I hope there's a sol

Re: [css-d] Embedded Fonts

2007-04-01 Thread Conyers, Dwayne
Dino CSS ink wired: > Can I embedded ttf font inside my website through css so that any > browser can open and view the font ? There is a Microsoft API for that... it isn't CSS and it isn't very reliable either... -- I made magic once. Now, the sofa is gone. http://dwacon.blogspot.com

Re: [css-d] Absolute positioned img, z-index problem safari

2007-04-01 Thread Philippe Wittenbergh
On Apr 2, 2007, at 2:35 AM, Ellen O'Neill wrote: > Hi, > > I can't figure this out. My portfolio site: http://ellenoneill.nl/ > uses > absolute positioned images with z-indexes. No problems in IE6, IE7 and > Firefox, only Safari 2.0.4 ignores my z-indexes. I tried reordering > the > images in

[css-d] h1 border bottom

2007-04-01 Thread Joanne
I have the following code in my stylesheet and the border bottom for the h1 is showing in everything except IE6. Is this just something I have to live with or is there a work around? h1 {font-size: 180%; color: #052760; font-family: "Times New Roman", serif; margin-top: 0px; text-align: center; le

Re: [css-d] h1 border bottom

2007-04-01 Thread ~davidLaakso
Joanne wrote: > I have the following code in my stylesheet and the border bottom for the h1 > is showing in everything except IE6. Is this just something I have to live > with or is there a work around? > > h1 {font-size: 180%; > color: #052760; > font-family: "Times New Roman", serif; > margin-top

[css-d] ie/5.01 float drop

2007-04-01 Thread ~davidLaakso
On this rough layout , the sidebar float drops in ie/5.01 /only/. There is no logical reason for this. Its got to be a human bug.. Just can't find it for the life of me. Anyone? Thanks. Best, ~dL -- http://chelseacreekstudio.com/

Re: [css-d] styling a ul

2007-04-01 Thread David Sharp
> Question: if I style the ul element the way I want it to appear for the > sub-navigation, won't that make it unusable for other ul instances > where I want > other styling? How can I style this one instance of a ul and still be able to > use the ul element for other purposes with other styling?

Re: [css-d] ie/5.01 float drop

2007-04-01 Thread Gunlaug Sørtun
~davidLaakso wrote: > , the sidebar > float drops in ie/5.01 /only/. Have no idea what IE5.01 does or why it does it, but the following addition shouldn't hurt... * html div#sidebar { margin-right: -10px; overflow-x: hidden;} I'd add the followi