Phase 2 of Little Diamond Models is Complete

Phew! It took about 4 months of hard work but we finally finished phase 2 of one of our favorite client’s websites: Little Diamond Models.

This is a huge website with a ton of great features. We started this project not even a year ago and it already sports a monthly visitor volume of nearly 20,000. What a success story!. The site soaks up nearly 2 GB of bandwidth each and every day, that’s a lot of downloading and uploading. This was up to 6 GB at one point….that a bigga pizza pie!

We think the best highlights were the casting call feature that allows boutiques to post calls to models to meet certain photo criteria. Pet and photographer bookings and we upgraded several modules to make them much faster.

So here we are, Tom Petty on the radio, pretzels spilled on the desk, a glass of Publix sweet tea, and we’re starting to plan out phase 3. Lots of good features for models, boutiques, pet models, photographers and visitors of all kinds. We plan on this taking nearly as long as phase 2 but good things come to those who wait. Little by little, the site grows and over time we come out with a hum-zinger of a website.

More Web Design Blog Content

Leverage Browser Caching

When a webpage loads on your screen there are a lot of little pieces that have come together to create what you’re seeing. Your logo, other images, style sheets, javascript files are among some of the external resources a webpage might use to render itself on your screen.

What You Should be Asking

When hiring a developer, many people don’t know what questions they should be asking – if they knew, then they’d probably be doing the work themselves, right? First and foremost – ask for examples of previous projects. The surefire way to weed out the novices is to look

Sullivan Welding Has A New Website

Sullivan welding does excellent custom welding and fabrication. Willum is the owner and manages a crew of expert custom welders. He came to Livewire looking for the best in Gainesville Web Design and we were able to set him up in a great new website in just a

Answerhub versus WordPress

Recently we worked on a project with intent to use AnswerHub as the primary vehicle for user interaction. After spending some time in AnswerHub’s admin we discovered that they don’t provide anything that you cannot accomplish with easy under the WordPress hood. While AH supplies you with a

Jquery Simple Fadeout

A cute little snippet to show a simple green bar upon a successful edit. <?php if(isset($_GET[‘edit’])){ ?> <div id=’notifyy’> Edited Successfully </div>     <script type=”text/javascript”>     $( ‘#notifyy’ ).show(function(){     $(this).fadeOut(5000);     });     </script> <?php } ?> The CSS: #notifyy{width:100%;background:#2f5001;padding:4px 15px;color:#fff;} Always,