Hello there,
I love this theme, thanks a lot.
I want to know how to change the width of Zero point to a small value, like 850px, not 1024px(i guess) as it is now?
Could you help me out?
Thank you very much!

Comments

florian’s picture

It is a bit complicated because the theme has an adaptive width, using The Jello Mold Piefecta Layout (http://www.positioniseverything.net/articles/jello.html).

You have two options:
1) change the default behavior using Jello Layout Tool (http://www.positioniseverything.net/articles/sidepages/pie-calc.php)
2) transform the theme into a fixed width-centered theme doing as below ...

You have to modify the following files:
- from layout-fixed.css and layout-variable.css erase .page, .sizer and .expander lines and place this code:

.sizer {
	margin: 0 auto;
	width: 950px;
}

- from ie6.css erase .sizer

Webster619’s picture

I tried this and it worked great in FF. Exploded in ie6

pursuehappiness83’s picture

Florian,
Thank you so much for your help.
I tried the second solution, it works for me.

florian’s picture

Status: Active » Closed (fixed)

In the next release, I will add a switch from Jello adaptive width to a custom fixed width.

florian’s picture

Status: Closed (fixed) » Active

Download ver. 1.7 and read the comments in _custom/_custom-style.css file. the idea is to keep all additional customization in this file. So, the code is simple:

.sizer {
	width: 1024px !important;
	max-width: none;
}
.page {
	padding: 0;
}
.expander0 {
	margin: 0;
	min-width: none;
}
florian’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

coryms’s picture

Took care of my need for a fixed width. Thanks!

Eugene Fidelin’s picture

Version: 6.x-1.2 » 6.x-1.7
Priority: Normal » Critical

I want to have fixed layout without horizontal scrollbar on 1024x768 monitors

I uncomment style http://drupal.org/node/487588#comment-1769898
And change 1024px to 1003px (and even to 900px) in .sizer { width

but nevetheless i have horizontal scrollbar on 1024x768 monitor

I even try rhis fiz - but it didn't help http://drupal.org/node/510840#comment-1824596

What else i have to change in style? here is a site - http://fireshow.kharkov.info/photo

florian’s picture

Status: Closed (fixed) » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.