abupapa

Hello,

I am currently developing a ASP.NET 2.0 application and everything was fine until I upgraded my browser to IE 7 from IE 6. I realised that my div background is not working anymore. The background is not repeating itself anymore. I googled but could not find an answer. Below is my code. Perhaps some experts can shed some light on how I can solve the problem Thanks!

.rightblock

{

border: 1px solid #fea632;

padding: 15px;

margin-bottom: 10px;

background:url(images/background_columnright.gif) repeat;

position: relative;

width:446px;

}



Re: Internet Explorer Web Development CSS background repeat not working in IE 7

abupapa

help!!!!! can anyone help



Re: Internet Explorer Web Development CSS background repeat not working in IE 7

abupapa

Month after month. I still have not received any help on this post. Would some kind soul please help me on this issue I am getting desperate already. Thanks.



Re: Internet Explorer Web Development CSS background repeat not working in IE 7

Mangal Singh - MSFT

What is the path to the image relative to in your case Is the image not showing up at all or is it not repeating I've not been able to repro this. Can you provide some more info

Mangal






Re: Internet Explorer Web Development CSS background repeat not working in IE 7

abupapa

Mangal,

Thank you so much for bothering to reply to my mail. What do you mean by my image is relative The image is showing up but it is no longer repeating itself in IE7 like it did in IE6.

please email me abichap@hotmail.com thanks.





Re: Internet Explorer Web Development CSS background repeat not working in IE 7

Mangal Singh - MSFT

In your style declaration I see that the background url is a relative path (images/background_columnright.gif). Is the images folder in the same folder as the css file is in Here's what I did to try and reproduce the error.

somefolder/

test.htm

stylesheets/

my.css

images/

bg.gif

test.htm links to my.css and my.css contains style declarations like you mentioned above with some arbitrary image. When viewed in IE7 I see the image repeating. Is your scenario different