The default for Cherry Zen (and/or Zen itself) is such that the title of each individual page within Information & More Information has a double heading that I find distracting. Example:
Home :: Gift Certificate FAQ
Gift Certificate FAQ
A while back, when I was working on my last site, I was able to find in the forums a cool piece of code that eliminates the second of the two. On this new site I've just gone through the process of using that code to individually remove each page heading that I didn't want. Because the process was a bit tedious, I thought I'd post the work here to possibly save someone a few minutes. Just place this at the bottom of your stylesheet.css:
#pageTwoHeading {
display: none;
}
#pageThreeHeading {
display: none;
}
#pageFourHeading {
display: none;
}
#ezPagesHeading {
display: none;
}
#shippingInfoHeading {
display: none;
}
#privacyDefaultHeading {
display: none;
}
#conditionsHeading {
display: none;
}
#siteMapHeading {
display: none;
}
#gvFaqDefaultHeading {
display: none;
}
#discountcouponInfoHeading {
display: none;
}
Add or subtract individual pages as need be. Please note that I've also included one for #ezPagesHeading.