Firefox 3.5 was released to the public today, after many months of development. I’m not switching to it, but it is a very nice browser, which now has almost complete CSS3 support.
Θ
You know how jquery’s slide effects can be a little jerky/jumpy sometimes? Well after much searching, I’ve found the solution. Usually, you would put something like this in the html and css:
<div id="search"> Content here! </div>
#search { width: 100%; padding: 30px 0; }
The padding and/or margin on the collapsing div cause the jumping effect. However, we can circumvent this simply by revising our code slightly:
<div id="search"> <p>Content here.</p> </div>
#search { width: 100%; } #search p { padding: 30px 0; }
This seems to fix the problem, with a minimal amount of extra code.
Oh and yes, I am working on completing the site, including the comments section. Just be patient.∞
Billy Mays was found dead in his home. He was 50. It’s a little weird, that several famous 50 year-olds died in this one week. Michael Jackson I won’t miss at all, but Billy Mays is a tragic loss to me.