Re: [css-d] CSS and my Blog

2011-05-31 Thread David Laakso
On 5/30/11 9:46 PM, Brian M. Curran wrote: I just had a blog added to my site: http://www.draftingservices.com/blog/ . My question is this. is it realistic to parse through the code to correct CSS errors? Gracias, Brian =) Greetings from Trujillo Alto, Puerto Rico. You may want to

[css-d] blue nav

2011-05-31 Thread Greg Wilker
Can some one help me discover why the blue left nav is creeping up into the header? It is fine with IE 9 FF 4 - but earlier versions it is creeping. http://herbthomas.com Thank you, Greg __ css-discuss

Re: [css-d] blue nav

2011-05-31 Thread Ville Viklund
Removing margin-bottom from header fixes creeping in Chrome 13 and IE 8. Ville 2011/5/31 Greg Wilker jer...@well.com Can some one help me discover why the blue left nav is creeping up into the header? It is fine with IE 9 FF 4 - but earlier versions it is creeping. http://herbthomas.com

[css-d] background not showing in IE. Urgent!

2011-05-31 Thread Jody Levinson
I've just discovered that the background of a site I'm working on is not showing in IE and I can't figure out why. The site is here: http://aligncomm.com The CSS for the background image is body { background: #00 url(/images/bg.jpg) no-repeat top center; } I've tried entering:

Re: [css-d] background not showing in IE. Urgent!

2011-05-31 Thread Micky Hulse
Not looked too closely, but a few thoughts: 1. http://aligncomm.com/images/post-topbgx.png is missing when viewing net via firebug. Not sure if related. 2. /images/bg.jpg exists, but it redirects here: http://aligncomm.com/uploads/03/a4/03a4cefbe0ccf8856b4320ea01f7a3a6/bg.jpg Maybe IE does not

Re: [css-d] background not showing in IE. Urgent!

2011-05-31 Thread Jody Levinson
Thanks so much, Micky, Yes, I'm aware of the missing post-topbgx.png image. That is deliberate. As I indicated, I did try it with the redirect url. Thanks for the link. I'll look there right away. I'm still googling and not finding anything helpful. I've also tried putting the style inline.

Re: [css-d] background not showing in IE. Urgent!

2011-05-31 Thread David Laakso
On 5/31/11 1:21 PM, Jody Levinson wrote: I've just discovered that the background of a site I'm working on is not showing in IE and I can't figure out why. The site is here: http://aligncomm.com The background image appears in Mac OS X running Parallels XP IE/8; and in Mac OS X running

Re: [css-d] background not showing in IE. Urgent!

2011-05-31 Thread Micky Hulse
Ok, so I cracked open IE9 and turned on the IE developer tools. While inspecting your generated source HTML, I noticed this inline style attached to your body tag: body style=background-image: none; background-attachment: scroll; background-repeat: repeat; background-position-x: 0%;

Re: [css-d] background not showing in IE. Urgent!

2011-05-31 Thread Tim Duffy
I just tested on ie6 and the background did not show up. I changed the double quote to single quotes and it did show up: body onload=slidefader(); style=background: #00 url('http://aligncomm.com/uploads/03/a4/03a4cefbe0ccf8856b4320ea01f7a3a6/bg.jpg') no-repeat top center;