Web page scrolling of screen

sirgeorge

New Member
Hi,
I have hit a blank with this site http://cbttechnology.com/
the page will scroll completely of the screen leaving nothing but the background.

I have tried a variety of CSS controls but I can't fix this - any assistance would be gratefully received.

Kind regards
 

CaldwellYSR

Member
your sidebar is 30,000px tall... What the crap is this:

Code:
/*DO NOT EDIT*/
.p7desktop .sidebar {
	padding-bottom: 32767px;
	margin-bottom: -32767px;
}
 
Last edited:

sirgeorge

New Member
Mathew,
Thank you and I have no idea. I guess I couldn't see the woods for the trees after a while. I have corrected it and it works great.

Thank you very much for taking the time to assist.
George.
 

CaldwellYSR

Member
A great tool for figuring out weird things like that is Firebug. With firebug you can see all the code, make changes, and see the changes live on your screen. Also you can use the "inspect" tool to highlight areas on the page and it will show you where in the code that area is. Google Chrome has this inspect element aspect built in too.

To figure out your problem all I had to do was right click at the bottom where it was scrolling too far and click inspect element and it immediately showed me what the problem was :)
 
Top