TechStudio
Chris is my hero.
-
Justify/Equally Spread List Items?
Using table and table-cell for the display property can get the job done fairly well. Support varies for it so I'd test it and plan some browser contingencies if you use it. http://codepen.io/ryanburnette/pen/HDItb
-
Resizing Multiple Images for Print HELP!!
http://www.makeuseof.com/tag/basics-properly-resizing-image-files-photoshop/
-
Load js only if class is present on page?
I like to do this by registering my scripts in my functions.php using wp_register_script(). Then when the element which requires that script asset is present use the wp_enqueue_script() function to make sure that it loads. http://codex.wordpress.org…
-
Beyond the limits of z-index. On top and under at the same time. Can it be done?
Ugh, I 'typoed' the title. I hate it when I do that.
-
Using background-size to make crisp images for high resolution displays.
I just saw that media query on the blog and I plan to start using it. I've also been using Modernizr as it adds the class .backgroundsize to the HTML element if the background-size property is indeed supported. This subject also reminds me ho…
-
Detecting font smoothing
It's been a long time ago, but I ended up putting some fantastically reliable PHP browser detection into all my themes. Now I make some assumptions about the OS from the browser. For example, if the browser is IE6 or IE7, I don't do much o…
-
404 on css-tricks.com
It's probably a WP plugin. Such as ... http://wordpress.org/extend/plugins/smart-404/
-
100% height?
Here's a cross-browser sticky footer that accomplishes a 100% height body without JS. http://ryanfait.com/sticky-footer/
-
IE9 Cufon?
I had to fix a bunch of sites in a hurry back when it happened. That's probably your issue if the cufon text isn't visible in IE9. Also, check out Typekit. http://typekit.com
-
IE9 Cufon?
A while back when IE9 came out, the version of Cufon that was current at the time had a major issue w/ IE9. They released a new version right after to fix the problem. In short, make sure you are using the most recent version of Cufon. http://cufon…
-
Styling reset template for use with Modernizr and old IE
Here's my PHP:
-
Styling reset template for use with Modernizr and old IE
Talking to myself again, but here's what I did. I used browser.php by this guy: http://chrisschuld.com/projects/browser-php-detecting-a-users-browser-from-php/ And I wrote an if statement in PHP so that if IE6 is the browser, it loads my uni…
-
Styling reset template for use with Modernizr and old IE
Let me rephrase. How can, in the event that IE6 loads, I NOT load my usual stylesheet? Hm I may need to rethink this from the beginning.
-
Styling reset template for use with Modernizr and old IE
That got me a step closer. What I'm going to have to do is NOT load my usual stylesheets in anything before IE7. Should do the trick. Any thoughts on best method or if it's a good idea or not?
-
Styling reset template for use with Modernizr and old IE
I followed the link to the reference URL and got this stylesheet: http://stuffandnonsense.co.uk/content/demo/2009/05/21/ie6.0.3.css I'm going to try it out. I'll post my results. I'm also going to use Modernizr to call the styles s…
-
Customizing WordPress email notifications
When certain events occur, WordPress sends out an email. When a new user is created, an email goes to that user. When a comment is made upon a thread that a user is author of, an email goes to the author. I wanted the ability to completely customize…
-
The Zen of SEO - Check out this article!
I got lost in you guys' site for a bit. I am really a fan of the way your content is delivered to my brain. The content of the article is great, but I'm curious as to who it's written for. I think it would be most useful to someone wh…
-
The Zen of SEO - Check out this article!
I love you guys!
-
Customizing WordPress email notifications
Follow up: We didn't find what we wanted in the plugins that were available. Right now we're using some custom PHP code that is messy, but allows us to do whatever we want to the emails WordPress sends out. One of these days we plan to cl…
-
SEO
A site need not drop when a new site is launched in its place. The only reason for a designer to tell their client that a loss is inevitable is if they are unable or unwilling to put the right steps into place. I've completely redesigned my SEO…
-
CSS Animation of a background
Here I am having a conversation with myself again. What I wanted to do just isn't going to work. To make the animation work you would have to ease an opacity value. You can't set the opacity of a background image as far as I know, especial…
-
CSS Animation of a background
I think so much more than I talk/type. In my head I still don't differentiate between transitions and animation. This would of course be an animation. I'm tinkering too. I think it's definitely going to take some jQuery to change the…
-
CSS Animation of a background
Supplement: What's really putting me in a jam here is that I want to cross-fade the middle of 3 backgrounds. The reason is because of the shadowing and layering of the element's parts. I don't want to use multiple elements stacked if…