Why are most government websites so terrible?

The recent debacle with the Affordable Care Act has made headlines but those of us in the development world are just seeing more of the same old thing. Government websites stink! Why is that? I can assure you that their cost structure is very similar to the outrageous cost of healthcare.gov. We have seen bids for local government sites in the hundreds of thousands of dollars. While they are complex, they aren’t that complex. Once major challenge is hooking up to all the old legacy systems local (aw heck, all) governments rely on. This presents challenges but the bids are still overblown – it’s kind of just “the thing to do” with government, huh?

But then, why do they still stink? If they cost so much, so be it, but at least be good, right?

They almost unanimously seem to lumber along, contain sparse information, disconnect and are chock full of broken links. Other websites are just as complex, take Amazon or Ebay for example and you’ll rarely see the kind of issues you find throughout government web projects. Maybe those are extreme examples but you would think that government web developers would at least be working with the latest in industry standards. There is nothing preventing a government site from being responsive or at least mobile friendly. Why do I see so many <font> tags? Is this 1998?

For all the trouble and money you would think the product would be just cutting edge. Nope. We relive  and suffer through the same old clunkers and just kind of shrug… it’s just the way it is.

More Web Design Blog Content

What’s New For 2015

Really, we’re not all that sure. We’ll go where the winds blow us but we do have some exciting projects to start out the year right. January will be a big month for us here at Livewire and we hope it only goes up from there. We’re glad

Livewire SEO

The most common question we receive following a website launch is, “How can I increase traffic to my website without spending a fortune or buying ads?” Every website we develop for a customer includes what we refer to as “Basic SEO”; this simply means that we will fill

Getting Accurate Shipping Rates

If you own an ecommerce store and provide real time shipping rates you have likely encountered a long list of issues with returning accurate rates. If you have not, Bravo good sir or madam! You are the exception. Having real-time shipping rates on your online store is a

Code School: Woo Shipping Per Product Count Script

Here’s a little snippet that has been useful for woocommerce development. This regulates shipping charges from a simple fee based system to a fee per quantity output. We modified this to allow for a couple of different shipping charge options based on quantity – first by three’s and

Review: PHP Live Chat ★★★★

4 Stars for this chat system from GNTStudio. It’s quite useful and very easy to install. We’re actually planning to use it on our own website we like it so much. They lose one star because we had to modify a bit too much to get things to

Preloading Images with Jquery

There are times when preloading images is an important step in keeping your site/page/program running smoothly. This is especially true in the era of mobile. Here’s a cute little snippet that does just that. function preload(yourarrayOfImages) { $(yourarrayOfImages).each(function(){ $(‘<img/>’)[0].src = this; }); } preload([ ‘img/image1.jpg’, ‘img/image2.jpg’, ‘img/image3.jpg’ ]);