[css-d] styling a hr / in IE

2006-09-05 Thread Eystein Alnaes
I've been looking around for this without finding a working solution, is there any way to style a horisontal ruler in IE? More specifically I'm looking for the equalent of a 1px dashed border, but I want to avoid using a div for semantic reasons. For standard browsers I've used hr.ruler {

Re: [css-d] styling a hr / in IE

2006-09-05 Thread Bradley Wright
The archive contains the only two links I was going to send through for this anyway: http://archivist.incutio.com/viewlist/css-discuss/26332 PS: looks like it's not really do-able in IE. Like most things, really. __ css-discuss

Re: [css-d] styling a hr / in IE

2006-09-05 Thread Ian Young
Subject: [css-d] styling a hr / in IE I've been looking around for this without finding a working solution, is there any way to style a horisontal ruler in IE? More specifically I'm looking for the equalent of a 1px dashed border, but I want to avoid using a div for semantic reasons

Re: [css-d] styling a hr / in IE

2006-09-05 Thread [EMAIL PROTECTED]
Eystein Alnaes wrote: I've been looking around for this without finding a working solution, is there any way to style a horisontal ruler in IE? More specifically I'm looking for the equalent of a 1px dashed border, but I want to avoid using a div for semantic reasons. For standard browsers

Re: [css-d] styling a hr / in IE

2006-09-05 Thread Eystein Alnaes
On 9/5/06, Eystein Alnaes wrote: .hr { border:1px dotted #00; } Ian Nice, but IE seems to add a margin or padding which I can't zero. Eystein On 9/5/06, Ian Young wrote: Where exactly? Ian Above and below. Which is only a concern in at the top of the left column, where the

Re: [css-d] styling a hr / in IE

2006-09-05 Thread Eystein Alnaes
I don't remember where I stole this: hr {border: none 0;border-top: 1px dashed #000;width: 50%;height: 1px;} Maybe it will work for you. Maybe not. ~dL The replyes are coming in faster then I can test them. Thanx! Sadly I'm still not getting around the magic margin/padding. Ey

Re: [css-d] styling a hr / in IE

2006-09-05 Thread [EMAIL PROTECTED]
Eystein Alnaes wrote: hr {border: none 0;border-top: 1px dashed #000;width: 50%;height: 1px;} Maybe it will work for you. Maybe not. ~dL The replyes are coming in faster then I can test them. Thanx! Sadly I'm still not getting around the magic margin/padding. Ey Put the page on a

Re: [css-d] styling a hr / in IE

2006-09-05 Thread Ian Young
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Eystein Alnaes Sent: 05 September 2006 13:57 To: css-d@lists.css-discuss.org Subject: Re: [css-d] styling a hr / in IE The replyes are coming in faster then I can test them. Thanx! Sadly I'm still

Re: [css-d] styling a hr / in IE

2006-09-05 Thread Eystein Alnaes
Is the issue not with the archivnav div. There is a padding of 10px 0 10px 7px? This will account for the spacing/padding at the top of the second menu in IE. Ian No, I wouldn't think so (also tested), since the hr / is closed before the archiveNav div opens. Eys

Re: [css-d] styling a hr / in IE

2006-09-05 Thread Eystein Alnaes
Put the page on a public server and give a clickable link to it. ~dL http://files.nho.no/rayon/site/index.phtml __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub --

Re: [css-d] styling a hr / in IE

2006-09-05 Thread francky
Eystein Alnaes wrote: I've been looking around for this without finding a working solution, is there any way to style a horisontal ruler in IE? More specifically I'm looking for the equalent of a 1px dashed border, but I want to avoid using a div for semantic reasons. For standard browsers I've

Re: [css-d] styling a hr / in IE

2006-09-05 Thread Designer
[EMAIL PROTECTED] wrote: I don't remember where I stole this: hr {border: none 0;border-top: 1px dashed #000;width: 50%;height: 1px;} Maybe it will work for you. Maybe not. ~dL Same idea really, but I use: .hr{ height : 1px; margin : Xpx 0px; border-top : 1px solid #000; }