Author Archives: Brian
Using basic HTTP authentication is a simple way to password protect your website. However, using that type of authentication can cause errors while trying to upload images from the WordPress admin. If you’re seeing this error while trying to upload … Continue reading
Here’s an ongoing list of CSS3 resources: CSS3 Generators: CSS3 Please rule generator (Paul Irish) - http://css3please.com/ CSS3 generator - http://www.css3generator.com/ CSS3 gradient generator - http://gradients.glrzad.com/ CSS3 transform generator (other property generators on this site as well) - http://westciv.com/tools/transforms/index.html CSS Shapes Shapes with CSS … Continue reading
To watch the tour live check out steephill.tv
This is mostly for personal reference, but here is an ongoing list of HTML5 resources, tutorials, samples, tools, validators and resources. Please let me know if you would like anything added to this list. Enjoy! HTML5 Documentation: Differences between HTML4 … Continue reading
I found some useful CSS hacks to target Firefox/Gecko browsers over at Perishable Press. The most useful of which are are few hacks to target all versions of Firefox: /* Target all versions of Firefox */ #selector[id=selector] { color: red; … Continue reading
So, IE7 doesn’t support focus on input or textarea fields. Hooray. Here is a little jQuery script to add that support back in if javascript is enabled in the user’s browser. <script type=”text/javascript”> $(document).ready(function() { if (jQuery.browser.msie === true) { … Continue reading
This plugin provides fallback support for using the new placeholder attribute in HTML 5 on input and textarea elements. Continue reading