Zen Cart Logo
Forums / General Questions / Scroll bar scrolls halfway

Scroll bar scrolls halfway

Views: 799

Results 1 to 8 of 8
2 Dec 2012, 11:35 PM
#1
geostomp avatar

geostomp

New Zenner

Join Date:
Dec 2012
Posts:
6
Plugin Contributions:
0

Scroll bar scrolls halfway

My site is BaseXrc.com

The problem I am having is when I view the site on a mobile phone or a browser window that has been "restored down" (the button next to minimize), the scroll bar still leaves much of the site on the left and right side unreachable. I would appreciate any help as to how I can fix this.

3 Dec 2012, 12:59 AM
#2
geostomp avatar

geostomp

New Zenner

Join Date:
Dec 2012
Posts:
6
Plugin Contributions:
0

Re: Scroll bar scrolls halfway

Ok as of now 1and1 hosting locked my site, I'll let you know when it is unlocked so you can view it and hopefully help my out.

3 Dec 2012, 6:06 PM
#3
geostomp avatar

geostomp

New Zenner

Join Date:
Dec 2012
Posts:
6
Plugin Contributions:
0

Re: Scroll bar scrolls halfway

geostomp:

Ok as of now 1and1 hosting locked my site, I'll let you know when it is unlocked so you can view it and hopefully help my out.

Ok site back up. Please help

3 Dec 2012, 6:36 PM
#4
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Scroll bar scrolls halfway

I'm not sure what you are trying to accomplish with this rule, but it is imposing a bunch of constraints that limit the page's flexibility:

stylesheet.css, line 1127```
/**Layout/
#mainWrapper {
left:50%;
text-align: left;
float:left;
width: 960px;
margin-left:-480px;
background:#FFF;
-moz-box-shadow: 0 0 1em #EEE;
-webkit-box-shadow: 0 0 1em #EEE;
box-shadow: 0 0 1em #EEE;
position:relative;

}
3 Dec 2012, 6:54 PM
#5
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,096
Plugin Contributions:
56

Re: Scroll bar scrolls halfway

I'm guessing that you're trying to center your mainWrapper. If so try these changing this:

/*******************************Layout*****************************/
#mainWrapper {
	left:50%;
	text-align: left;
	float:left;
	width: 960px;
	margin-left:-480px;
	background:#FFF;
	-moz-box-shadow: 0 0 1em #EEE;
	-webkit-box-shadow: 0 0 1em #EEE;
    box-shadow: 0 0 1em #EEE;
	position:relative;
	
	}

to this:

/*******************************Layout*****************************/
#mainWrapper {
	text-align: left;
	width: 960px;
	margin: 0 auto;
	background:#FFF;
	-moz-box-shadow: 0 0 1em #EEE;
	-webkit-box-shadow: 0 0 1em #EEE;
    box-shadow: 0 0 1em #EEE;
	
	}
3 Dec 2012, 7:23 PM
#6
geostomp avatar

geostomp

New Zenner

Join Date:
Dec 2012
Posts:
6
Plugin Contributions:
0

Re: Scroll bar scrolls halfway

Ok I'll try that. The stock Estore Now template demo has the same problem and that is the template I'm using.

3 Dec 2012, 7:35 PM
#7
geostomp avatar

geostomp

New Zenner

Join Date:
Dec 2012
Posts:
6
Plugin Contributions:
0

Re: Scroll bar scrolls halfway

Ok I made tat change and the problem persists. I am beginning to think this is a shoty template.

3 Dec 2012, 9:13 PM
#8
geostomp avatar

geostomp

New Zenner

Join Date:
Dec 2012
Posts:
6
Plugin Contributions:
0

Re: Scroll bar scrolls halfway

Bought a premo template, fixed the problem, thanks for your reply!!!