views:

40

answers:

2

i have this image in the background:

http://yoursdproperty.com/templates/pjo_joomlaforall/images/bgr.png

of this page:

http://yoursdproperty.com/index.php?option=com_jumi&fileid=8&Itemid=34

how do i remove it?

i understand that if i remove it the page will just be white in the background correct? if not, what do i need to do to get rid of the gray and white and just make it white?

+2  A: 

If you change the following style you should get what you want:

#background_right {
/*background:transparent url(../images/bgr.png) no-repeat fixed center top;*/
background-color:white;
margin:0;
padding:0;
}
anthonyv
nope it doesnt work, try it yourself, you will see that there is still a gray background
I__
Are you still having the problem? or is it fixed now?
anthonyv
Also if you mean that you have just made the change on the site link you passed through, I have just checked and it shows that you have not made the change. If you think that you have made it, it could be that a proxy is caching the CSS somewhere.
anthonyv
perhaps you can also answer this http://stackoverflow.com/questions/2173547/css-increasing-size-of-holder-or-what-ever-its-called
I__
+2  A: 

Just remove or outcomment the particular CSS line responsible for this. Or am I thinking too simple about this problem? If so, then please elaborate more about the context of the problem. If it is for instance an autogenerated stylesheet which you don't have control over, then best what you can do is to grab JavaScript (jQuery?) to remove/override the background image in the particular style class.

Edit: if you rather want a white background, then you'll need to get rid of the .body_background class as well.

BalusC
perhaps you can also answer this http://stackoverflow.com/questions/2173547/css-increasing-size-of-holder-or-what-ever-its-called
I__
I edited my answer after seeing your complaint "it has still gray background".
BalusC