Remove Default Textarea Scrollbars in Internet Explorer

Have you ever noticed that Internet Explorer, with its great wisdom and intelligence, likes to add a useless scrollbar to the side of every HTML textarea? Most browsers add one when it is needed, but IE adds it in right away.

There’s an easy CSS fix though:

textarea {
   overflow: auto;
}

BlogBuzz July 24, 2010

How to Display a FeedBurner Average

Tired of ever-fluctuating FeedBurner counts being displayed on your blog? Why don’t you just display a weekly average? Cats Who Blog has a tutorial that shows you how you can retrieve the numbers via the FeedBurner API, average them, and display a rounded figure.…

.CO: A Domaining Disaster

The .CO Top Level Domain is the geographic domain for Colombia. It has recently been made available for general registration, and the registrars are busy hyping it as “the new .COM.” Unfortunately, there is one major downside: you have to pay $30/year for a…

Creating a Virtual Post in WordPress

One thing that plugin developers want to do sooner or later is create a “fake” post. (Maybe you have a statistics plugin that you want to display a public graph when someone visits example.org/traffic.) You need to create the equivalent of a Page on…

WordPress Administration Over SSL

Do you frequently log-in to your WordPress install over public WiFi networks? While it may seem like paranoia to some people, it’s really not a good idea to log into important sites over an unencrypted connection. There’s always a possibility that someone could be…

BlogBuzz July 16, 2010

Calculating Relative Time Stamps With PHP and WordPress

If you go to a social networking site like Twitter, you’ll note that status updates don’t have conventional timestamps on them. Instead of something overly informative (in most cases) like “Posted 2010/07/06 7:50 PM” they tend to show the much more human-friendly “Posted 2…

Firefox 4 Beta 1 Released

The first beta of Firefox 4 is now available (and can be downloaded here). It features plenty of new functionality and web standards support, including hardware-accelerated video and additional support for the evolving CSS3 and HTML5 standards. I’m already impressed by the speed improvements.…

BlogBuzz July 10, 2010