Hi Al,
I think I have it figured out.
1. Open your style.css file, find the CSS below (should be lines 645-649) and then delete it.
.center-leftmargin, .center-rightmargin, .center-rightandleftmargins, .center-nomargins {
background-image: url('translucent_white.png');
background-repeat: repeat;
overflow: auto;
}
2. Find the CSS below (should be lines 161-164) and delete it.
.center-nomargins, .center-rightandleftmargins, .center-rightmargin, .center-leftmargin {
margin-bottom: -100000px!important;
padding: 0 10px 100000px!important;
}
3. Paste the CSS below in the spot where you deleted the CSS from step 2.
.center-nomargins, .center-rightandleftmargins, .center-rightmargin, .center-leftmargin {
margin-bottom: -10000px!important;
padding: 0 10px 10000px!important;
background: transparent url('translucent_white.png') repeat scroll 0 0;
overflow: auto;
}
4. Open and Save your web.config file.
This should fix the cut off content issue and the slow loading issue.
HTH,
Joe D.