| bio | website | oddbird.net |
|---|---|---|
| location | Denver, CO | |
| age | 30 | |
| visits | member for | 4 years |
| seen | 9 hours ago | |
| stats | profile views | 1,044 |
A multimedia artist, developer, and UI designer. I specialize in cutting-edge, semantic HTML and CSS, using Sass and Compass. I'm a core developer on the Compass project, and I developed Susy, a responsive grid tool for designers. I also specialize in writing, performance, and collaborative process.
|
May 16 |
comment |
How can I align my Left and Right borders that susy calculates? It's not clear to me how Susy is involved in this, or how you are using it. Can you please provide more context? |
|
May 15 |
comment |
Compass compile error on Susy's at-breakpoint mixin All Sass plugins support both syntaxes. There's no way to support only one. |
|
May 13 |
comment |
Compass/Susy at-breakpoint specificity issues It's generally a good idea to keep your specificity as low as possible. The other thing that I do is keep breakpoints together within each module - rather than organizing by breakpoint. |
|
May 10 |
comment |
Susy parameters are producing an incorrect @container width What version of Susy, and what other settings do you have? I can't recreate this. I get 940px by default (which is right for box-sizing: content-box;), and 960px if I use border-box-sizing. I can't reproduce the failing-to-compile bug either. |
|
May 8 |
comment |
Mixin container takes 0 arguments but 2 were passed Looks like zinnia is built with Susy. Do you have the susy gem installed, required, and imported? If so, what version? I think Susy 0.9 had a container mixin without arguments, maybe you need to upgrade Susy? |
|
May 7 |
comment |
Compass/Susy Error When Using at-breakpoint You need to uninstall the "compass-susy-plugin" gem. As long as it is installed, it will be used instead of the newer "susy" gem. |
|
Apr 29 |
comment |
Trying to use compass THe import only gives you access to compass mixins - you still have to use them. The box-sizing mixin would look like this: @include box-sizing(border-box) - which will output all the different browser versions. |
|
Apr 29 |
comment |
Susy: fluid layout up to the second breakpoint That's more or less exactly what the default "magic" style is for. Do you need something different from that? |
|
Apr 25 |
comment |
Highcharts - Hidden charts don't get re-size properly It's really hard to know without seeing more code, but I would guess that something is setting "width" and "height" directly on the charts - probably highcharts JS. On option is for JS to change those values - but you should be able to override the width setting with max-width: 100% - as you might with images in a responsive grid. |
|
Apr 22 |
comment |
How to solve and compensate the sub-pixel rounding issue? @jhunlio This has all been added to the core of Susy, and is documented on the official site. Do you have any specific questions about implementation? |
|
Apr 17 |
comment |
How to make a header responsive? I'm sure you can hide an element ( display: none; would be one way). Is the question really about how to use media-queries with Susy to control when the item is hidden and when it's shown? Here's the documentation for Susy breakpoints. To keep the line-breaks out, you have to make sure the elements never add up to more than 100%. After hiding .tour, you have two items left, so you can give them each 50% width, or give each 2-of-4 columns using Susy. |
|
Apr 17 |
comment |
How to have dynamic left-margin with Susy? That works. There's a shortcut for columns + gutter, called space (e.g. space(2,12)). But there are even-shorter-cuts for handling margins - in this case you can use either @include pre(2,12) or @include push(2,12) (those are synonyms). |
|
Apr 17 |
comment |
How to make a header responsive? This is very easily possible, but any answer requires a lot of decisions about how you want it to look and move. There are too many different ways you could do it. Why don't you give it a try, and ask questions if you run into more specific problems? |
|
Apr 12 |
comment |
Rem/Em Confusion Longer text has nothing to do with relative sizing. That issue would be the same no matter what units you use. Browsers do zoom the site if you use the zoom feature, but browsers also allow you to set a font-size setting. I don't know how commonly it's used, but I like designing for flexibility. Your h2 example sounds like it could be solved with a technique from css-tricks, but really you aren't giving us a lot to go on with any of your questions. I normally specify all lengths everywhere in either ems, rems, or %. |
|
Apr 11 |
comment |
Changing from 4 to 3 columns with omega with Susy fails You are removing omega, but you aren't understanding the way context affects calculations. Your breakpoint is setting the context to 12 columns, but span-columns(1,3) overrides that with a context of 3. You need to make sure span-columns and remove-omega are getting the same context. Either span-columns(4) and remove-omega (both will assume the global context of 12), or span-columns(1,3) and remove-omega(3) (both use 3). Or you can change the breakpoint to set a context of 3 globally with at-breakpoint(59em 3). remove-omega adds a gutter, relative to context. |
|
Apr 9 |
comment |
Susy Compass omega is adding #margin-left: -1em; It changed from # to * in the latest release. See this commit. IE rounds up when it hits sub-pixel math, so layouts can break unless you give them extra room to breathe. -1em gives them that room, and since the omega element is floated right, most people don't even notice. You can turn off any hacks using the Compass browser support settings: $legacy-support-for-ie6, $legacy-support-for-ie7, or the more general $legacy-support-for-ie. |
|
Apr 8 |
comment |
Susy: Omega and Responsive Grids The first code sample here demonstrates what @Kaishin suggested above, with more specific media-queries. The second sample demonstrates the remove-nth-omega() option. Isolation would also work, but has similar caveats - you would still have to adjust to different grids. |
|
Apr 8 |
comment |
Susy: Omega and Responsive Gridsremove-nth-omega(3n) is the right tool for the job, if you don't mind a bit of override code. Otherwise @Kaishin is right, you can use more specific (min + max) media-queries to remove any need for the override. |
|
Apr 4 |
comment |
Susy Nested Grids Glad to hear it! |
|
Mar 29 |
comment |
susy grid background display This works fine for me, given a .contain element in the html. |