Brilliant theme - thanks. It is very impressive.

But I can't work out how to increase the header height from 88px to 120px.

In footheme.css, I've added the following:

#header, #branding {
	max-height: 120px;
	}

#header .header-inner {
	max-height: 120px;
}

#header,
#branding {
  max-height: 120px;
}
#head-elements {
  min-height: 120px;
}
/* IE6 treats height like max height */
.ie6 #header,
.ie6 #branding,
.ie6 #head-elements {
  height: 120px;
}

I wanted a plain, unpatterned header so removed the header.png in colors.css as below:

#header  {
  background:  url("../images/header-tile.png") repeat-x left top;
}
#header .header-inner {
}

And then changed the size of header-tile.png in the themes/footheme/images folder i had copied over from the pixture_reloaded theme (and also theme/pixture_reloaded.images folder just in case) from 8x88px to 8x120px.

But even if I remove the footheme file from sites/default/files/color and resave the theme settings page, I still get a header-tile.png that is 88px high with the remaining 32px of the header div filled with the background color.

If I change color.inc on lines 479 from

    'images/header.png' => array(2,0,512,88),
    'images/header-tile.png' => array(792,0,8,88),

to

    'images/header.png' => array(2,0,512,120),
    'images/header-tile.png' => array(792,0,8,120),

firebug then tells me the image is 120px high but it still shows as 88px with the remaining 32px now in black.

I must be missing something but can't work out what it is - can you help?

Thanks very much.