hi funkart,
your store is now fixed.
here's what happened. we had two competing bugs that masked the real underlying issue. now that the bugs are fixed, layouts are messy. if this is happening to you, there are a couple ways to fix it.
1) If you do not have advanced skinning turned on, please click the “update your store with the new navigation” link on
http://www.zazzle.com/my/gallery/content . This will reset the settings you have made on this page already, so you should be prepared to change them again after upgrading.
2) If you have advanced skinning turned on, then go to the Advanced tab on
http://www.zazzle.com/my/gallery/content , and look for the xml for the homepage:
<z: page id="home" title="Home" navigable="true" visible="true" template="maintemplate">
<z:content placeholder="contentpane">
<z:module name="homecontent" visible="true" />
<z:module name="toppicks" visible="false" />
<z:module name="categoriesgrid" visible="true" />
<z:module name="homeproducts" visible="true" />
<z:module name="commentwall" visible="true" />
</z:content>
…
</z: page>
… and add target=”products” on the categoriesgrid module:
<z: page id="home" title="Home" navigable="true" visible="true" template="maintemplate">
<z:content placeholder="contentpane">
<z:module name="homecontent" visible="true" />
<z:module name="toppicks" visible="false" />
<z:module name="categoriesgrid" visible="true" target="products" />
<z:module name="homeproducts" visible="true" />
<z:module name="commentwall" visible="true" />
</z:content>
…
</z: page>