When compiling the Ohm theme .scss files, sass complains about the following:

...
    error sass/ohm.no-query.scss (Line 13 of sass/components/menus/_breadcrumb.scss: Invalid US-ASCII character "\xC2")
...
    error sass/ohm.styles.scss (Line 13 of sass/components/menus/_breadcrumb.scss: Invalid US-ASCII character "\xC2")

This is the offending line in _breadcrumb.scss:

  &:after {
      content: "»";   // <--- this is the problem
      padding-left: 0.4em;

One workaround is to add this as the first line of _breadcrumb.scss:

@charset "UTF-8";

Perhaps there's a better fix -- I'm just getting started with Omega, so I can't say for sure.

Comments

Chris Charlton’s picture

Another method is to edit your Sass 'config.rb' file and add the following: Encoding.default_external = "utf-8"

jphustman’s picture

Uncomment en_US.ISO-8859 in /etc/locale.gen. Then run "# locale-gen".