Oct 13, 2009
WordPress
Minimizing the number of HTTP requests is one of the easiest ways to make your website load significantly faster. WP Minify is a WordPress plugin by Thaya Kareeson that combines all Javascript and CSS files into one respective file.
WP Minfy uses the old trick of modifying the output buffer before it is sent to the user. And until all plugins and themes start using wp_enqueue_script and wp_enqueue_style, this will remain the most reliable method of doing it.
I approve this plugin.
#
May 2, 2009
Web Design
For illustrating anchor links in some cases you might want to use bottom-border instead of a default text-decoration:underline. In order to achieve that, one would use the following CSS rule:
a { text-decoration:none; border-bottom:2px solid; }
which also adds border to the bottom of all linked images. In order to remove it, you would think that setting
a img { border:none; }
would be enough. Read more »
#
Jul 23, 2008
WordPress
Following the release of the Tabbed Widgets plugin many people left comments saying that it doesn’t work with the theme they are using. And only then I realized how many themes do not take full advantage of widget functionality that WordPress provides by default. In this article I am going to show you how to fix them. Read more »
#