Supposing you have CSS like this:
body {
font-family: 'Segoe UI', Verdana, sans-serif;
}
Cobra will silently ignore 'Segoe UI' for some reason, and use Verdana.
A workaround is to leave out the quotes:
body {
font-family: Segoe UI, Verdana, sans-serif;
}
But this feels like bad style so I would rather keep them if possible.
Nobody/Anonymous
None
None
Public
Copyright © 2009 Geeknet, Inc. All rights reserved. Terms of Use