Re: [css-d] IE9: No (vertical) scroll bar

2012-12-23 Thread Markus Ernst
Am 22.12.2012 10:48 schrieb Tim Dawson: My page at the link below shows a vertical scrollbar in Fx17, Safari and Chrome, but not in IE9 (I've tried it on three computers in case there were a faulty installation). You could try to wrap the scrollbox table into a div, and apply overflow=scroll

Re: [css-d] IE9: No (vertical) scroll bar

2012-12-23 Thread Tim Dawson
On 23/12/2012 11:17, Markus Ernst wrote: Am 22.12.2012 10:48 schrieb Tim Dawson: My page at the link below shows a vertical scrollbar in Fx17, Safari and Chrome, but not in IE9 (I've tried it on three computers in case there were a faulty installation). You could try to wrap the scrollbox

[css-d] IE8 stylesheet

2012-12-23 Thread Steve Caramia
Hi everybody, I want to fix the IE8 problems with an ie8-specific stylesheet. So I put this in the head (just before /head): !--[if IE8] link rel=stylesheet type=text/css href=ie8.css / ![endif]-- That file is on the same level as the index. I put this spec to test in ie8.css: body {

Re: [css-d] IE8 stylesheet

2012-12-23 Thread David Hucklesby
On 12/23/12 1:05 PM, Steve Caramia wrote: Hi everybody, I want to fix the IE8 problems with an ie8-specific stylesheet. So I put this in the head (just before /head): !--[if IE8] link rel=stylesheet type=text/css href=ie8.css / ![endif]-- [...] http://www.caramiadesign.com/fredio_last/

[css-d] IE8 stylesheet doesn't work even in the head tag

2012-12-23 Thread Steve Caramia
I've got this in my head tag. !--[if IE8] #topnav {margin : 17px 0 0 500px;} #topnav a:link{ font-size:20px; padding: 11px 65px 15px 25px; background : url('images/buttonoff.png') no-repeat; width: 295px; height:42px; display:block } #topnav

Re: [css-d] IE8 stylesheet doesn't work even in the head tag

2012-12-23 Thread Barney Carroll
The CSS needs to be contained in a style element. -- Regards, Barney Carroll barney.carr...@gmail.com +44 7429 177278 barneycarroll.com __ css-discuss [css-d@lists.css-discuss.org]

Re: [css-d] IE8 stylesheet doesn't work even in the head tag

2012-12-23 Thread Steve Caramia
Yes! Thank you! On Dec 23, 2012, at 3:16 PM, Gail Issen wrote: Change !--[if IE8] to !--[if IE 8] And see whether this helps. (Note the space between IE and 8) Gail Gail W. Issen http://www.xpertwebs.com http://www.xpertmarks.com Tel: 713-721-6868 Cell: 713-501-2302 Fax :

Re: [css-d] IE8 stylesheet doesn't work even in the head tag

2012-12-23 Thread Steve Caramia
Yes! Thank you, too! Now we're getting somewhere... On Dec 23, 2012, at 3:28 PM, Barney Carroll wrote: The CSS needs to be contained in a style element. -- Regards, Barney Carroll barney.carr...@gmail.com +44 7429 177278 barneycarroll.com

Re: [css-d] IE8 stylesheet doesn't work even in the head tag

2012-12-23 Thread Steve Caramia
OK, as I said, we're getting somewhere: it's recognizing some of the styles, but the big orange button is still invisible. So I'm ready to make the link text only, but that's not working either. http://www.caramiadesign.com/fredio_last/index.html !--[if IE 8] style type=text/css media=screen

Re: [css-d] IE8 stylesheet doesn't work even in the head tag

2012-12-23 Thread Rod Castello
On 12/23/12, Steve Caramia st...@caramiadesign.com wrote: OK, as I said, we're getting somewhere: it's recognizing some of the styles, but the big orange button is still invisible. So I'm ready to make the link text only, but that's not working either.