Bundling plugins with WordPress themes.

First off, many people will disagree with including Plugins with your themes. Yes and generally rightly so: Automatic Updates: If the plugin is freely available from WordPress.org already, then so are automatic updates to the plugin. The original author can add features, fix bugs, and deploy them quickly. Your clients and customers then benefit from on-going development. […]

Vertically aligning elements

For a long time I’ve always been using the following method of vertically aligning elements on a web page: .parent{ display: table; width: 100%; } .child{ display: table-cell; text-align: center; vertical-align: middle; } This method works good across all browsers and includes solid IE support down to IE7. The downfall of this particular method is […]