What we’ve been up to lately

Here’s what’s been going on at Livewire in the last few weeks – because, well, why not? It’s a blog ,isn’t it?

Finishing up the LDM iphone app – which has been a big project that has presented us with some unique challenges. The Android version is likely to come out even before the iphone one simply because IOS has some, shall we say, uniqueness to it that makes hooking all 3 systems together a problem.

We’ve taken on some new clients including a really fun website from a English transplant to Gainesville who has ties to the Civil War. The website follows the story of a Thomas Jackson and is really unique. We’re so glad we have a chance to work on a project like this.

Started a new redesign with an Alachua company –  a large website rebuild

Started a website for Budding Biologist – a local company that creates science materials for children. This site will be a lot of fun. It’s been a long time since we’ve done anything related to children or learning.

We’re finishing up the Flour Pot Bakery’s website. Very nice design that we’re quite proud of.

Creating a web app for a food truck service – can’t spill the beans on our blog here but it’s going to be quite useful to a large target market. We’re building this app with a couple of associates over at PWH Tech.

TNT Graphics will be getting a new shirt designing software program. They just need our help installing and configuring a third party solution – we’d love the opportunity to build one of our own but the market is pretty saturated and we just don’t have that kind of time.

We have about a dozen other projects going on at this time – PHEW!, it’s been a busy, busy summer.

More Web Design Blog Content

An Accessibility Mindset

How often do you receive this response when inquiring about making a website more accessible? We wish we could devote more resources to it, but at the moment we just don’t know enough to get started. The value and necessity of making websites accessible are generally recognized. Almost

Linking Your G+ Page To Your Website

We always get asked: Does anyone use G+? Yes. Is it worth it? Again, Yes. Using Google’s products would obviously help your standing with their search algorithm. We don’t know this to be technically true but it certainly seems so in our experience. The more you use and

Branding & Marketing Services

Livewire is proud to announce that we are now offering professional branding and marketing services. Phil, the owner, never considered branding services because, well to be honest, he is terrible at graphic design (he’s a programmer so it’s okay). Branding services include but are not limited to : Branding

WordPress Experts: Getting Slug by Single_Cat_Title

An interesting problem that I came across in a recent project. The client needed a custom post taxonomy set to a gallery of choices on a featured section of their website. First we needed to add custom post types and category images plugins. Iterating through the taxonomy was

Matt Birk has a new website

This is responsive website with layout originally conceived by HTML5. Clean and simple, it is just what the doctor, er, lawyer ordered. Matt needed something up quick, but didn’t have to sacrifice quality. WIthin 2 days we had a simple design up that he can be proud of.

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