Jeff Chasin wrote: > Alan, > > Thanks again for your help, I appreciate it. > > The overflow:hidden; did affect IE7 somewhat. I keep thinking that my > #blog-title a and #blog-title elements are causing a problem in IE, but > can't seem to find exactly what's causing the header background image to > be pushed down like that? > > Thanks again for your help! > > -- > Jeff > > > http://www.businessinsightgroup.net/
This is IE7 being a very magical here. I have never seen this behavior before. Here a demo of the problem you have Jeff. http://css-class.com/x/big/ One solution is to giver the header element a background color. div#header { background: blue url(http://www.businessinsightgroup.net/wp-content/themes/b-i-g/img/big-header3.png) left top no-repeat; } http://css-class.com/x/big/index2.htm The other solution is to give the header element hasLayout [1]. div#header { min-height:1%; } http://css-class.com/x/big/index2.htm I would say IE7 is showing some escaping background bug. Would anyone else like to help explain this, I just guessing. Jeff, my advice is to use either of the above methods and just wonder how magical IE7 is. :-) -- Alan http://css-class.com/ Nearly all men can stand adversity, but if you want to test a man's character, give him power - Abraham Lincoln ______________________________________________________________________ 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/
