Theo Has A New Website

Theo s Lawn MaintenanceTheo’s Lawn Maintenance worked out a sweet deal with Livewire and we’ve been helping them do some of the SEO and web work Their old design was working fine but needed just a little pizazz and a contact form upgrade. We gladly complied and set them up in this little gem.

Understanding what our clients need is what we do. Theo is happy and now that he’s climbing onto page 1 (because of our SEO work) he’s enjoying first rate online exposure at an affordable rate. He’s able to compete with businesses many times his size and pull in clients from loads of new search engine traffic. As SEO experts, we know exactly what it takes to put your website onto page 1 in the most efficient manner possible.

More Web Design Blog Content

Offline linking

This is a profound point. A lot of linking takes place offline. Sounds weird but many great links sprout from the personal relationships you make as a business. Noteworthy links can be found at your local chamber of commerce just like any Hotfrog or elocal directory site. “This

Add YARPP to Custom Post Types: WordPress

A great little plugin for adding related posts to your blog has been around for a while: YARPP, Yet Another Related Posts Plugin. It’s fairly robust, for being free, but it does not natively support custom post types – a bummer. A quick way around this is to

web design north carolina

PHP Is Still King

Hypertext Preprocessor (PHP) is a popular server-side scripting language for building websites. Around 70% of all websites online today use PHP, a computer language that was created in 1994 by Rasmus Lerdorf. Since it is available for everyone to use and alter, PHP is known as an open-source

Firefox is dead to me

That happened a long time back. Now it seems that the once beloved browser is now in the same situation with the majority of its former users. I personally feel that the browser lost its roots in version 12, but it was showing signs of becoming yesterdays news

Our New Look

Take a peak at our main website’s new look! We’re proud to present a brand new layout and style for Livewire Web Design. We work hard on your websites, so we took a few days to upgrade ours – we added a new optimization center that gives prices

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’ ]);