Hello,

please excuse my stupid question, but I can not find any settings in the template zoundation can you help me. maybe I missed something would appreciate help.

kind regards
drew

Comments

RowboTony’s picture

It's my understanding that there are no additional Zurb Foundation user interface settings for this theme, only the most basic Drupal theme settings are available at yoursite.com/admin/appearance/settings/zoundation when this theme is enabled and set as default. All of the Foundation settings are stored in a text file - sites/all/themes/zoundation/sass/_settings.scss, though it's recommend you create a subtheme with the STARTERKIT folder see the sites/all/themes/zoundation/STARTERKIT/README.txt for more info.

abelb’s picture

Assigned: Unassigned » abelb
Status: Active » Closed (works as designed)

Yes, that is the case. what I do is reference this settings.scss file:
https://github.com/zurb/foundation/blob/master/scss/foundation/_settings...

Also reference the docs: http://foundation.zurb.com/docs/sass-settings.php

and then we use the default settings.scss in STARTERKIT/scss/_settings.scss

We then create our own zoundation_settings.scss file to use so that your settings aren't overwritten when we update foundation.

The explanation can be seen here from the Foundation docs under the "Working with Existing projects" header
http://foundation.zurb.com/docs/compass.php

We also recommend creating a foundation-overrides.scss file that you can use for your own specific styles. This will ensure that your styles don't get obliterated upon updating. We do not recommend directly editing the Foundation files if you plan to upgrade.

I will update the README with this info.

Thanks!