views:

37

answers:

1

i have this site:

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

i need to increase the width of the "holder" where the content is. i need to make it so that the iframe fits and i need everything to remain centered as it is now.

  1. how do i increase the width of the content? when i say content i mean everything that is below the header
  2. how do i make sure everything remains in the center as it is currently
+1  A: 

Ya I don't think you are going to have much luck here...

The white sace you see on the left isn't from your website its from the mlsfinder website. Hence if you don't have control over that website, getting ride of that space is not going to possible.

Also, because of this, if you don't want to make your site any wider, you are not going to fit the iframe in.

Unless you control mlsfinder, the only options is to make your website smaller or pop open a new window or present the iframe in a javascript popup box like fancybox...

Sorry to bring bad news.

EDIT:

You could get rid of a little bit of the white space on the right by changing the iframe width from 1000px to 700px like so:

<iframe scrolling="no" frameborder="0" style="width: 700px; height: 650px;" src="http://www.mlsfinder.com/ca_sandicor/raphaelshapiro/index.cfm"&gt;
    ....
</iframe>

EDIT 2:

To make your site wide so that it fits this iframe you will need to do the following (in each case note the width difference) also this assumes that you are getting rid of the background image...

<iframe scrolling="no" frameborder="0" style="width: 850px; height: 650px;" src="http://www.mlsfinder.com/ca_sandicor/raphaelshapiro/index.cfm"&gt;

</iframe>

div#main_full {
float:left;
margin:0 0 6px;
width:850px;
}

#content {
margin:0 auto;
overflow:hidden;
padding:10px 0 0;
width:1050px;
}

div#wrapper {
margin:0 auto;
padding:10px 0 0;
width:1050px;
}
anthonyv
ok how do i make my site wider?
I__
thank you so much that was SUPER helpful thank you, but i would also like to make my site wider how do i do that?
I__
wow thank you!!!!!!!!!! you are a life saver, i have one more question for you, can you please look at the site once more, you see how the white on the sides has a break, can you tell me how i can fix this?
I__
this question http://stackoverflow.com/questions/2173667/css-why-is-the-white-image-unevenly-distributed
I__