Zen Cart Logo
Forums / General Questions / Zen Cart Main Screen Size

Zen Cart Main Screen Size

Locked

Views: 627

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
18 Mar 2010, 4:40 PM
#1
bill2531 avatar

bill2531

New Zenner

Join Date:
Mar 2010
Posts:
2
Plugin Contributions:
0

Zen Cart Main Screen Size

Hello Support,

I am a new user to ZenCart. I have it installed an working in my test mode. I would like to change the shop screen size.

It currently uses about 60% of the screen. I would like to expand the whole shop screens to use upto 80% to 90% of the screen size.

I can not find any options that allow me to do that. I looked in the admin / config options and also the stylesheet css file.

My question: is it possible to expand the shop screens?
if so can you give me a quick explantion on how?

Thank you in advance.
Bill

18 Mar 2010, 5:00 PM
#2
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: Zen Cart Main Screen Size

This is a stylesheet setting under #mainWrapper...

/wrappers - page or section containers/
#mainWrapper {
background-color: transparent;
text-align: left;
width: 100%;
... etc

However... beware of setting it as a high % value...

Many screens are widescreen today and too wide a site makes navigation a real bind. Also, sites can look "bleak" and stretched out on wide screens

I find a fixed PIXEL width more appropriate:

/wrappers - page or section containers/
#mainWrapper {
background-color: transparent;
text-align: left;
width: 1000px;

18 Mar 2010, 5:03 PM
#3
twaddle avatar

twaddle

Banned

Join Date:
Jul 2009
Location:
Prague, Czech Republic
Posts:
478
Plugin Contributions:
0

Re: Zen Cart Main Screen Size

In the CSS what you're looking for is something like this...

/*wrappers - page or section containers*/
#mainWrapper {
    background-color: #ffffff;
    text-align: left;
    width: 750px;
    vertical-align: top;
    border: 1px solid #9a9a9a;
    }

Ah, Schoolboy beat me to it

19 Mar 2010, 12:15 AM
#4
bill2531 avatar

bill2531

New Zenner

Join Date:
Mar 2010
Posts:
2
Plugin Contributions:
0

Re: Zen Cart Main Screen Size

That worked fine. Took care of problem.

Thanks ALL for the help.

You guys are GREAT.