New Partners

gainesville appsWe’ve partnered up with PWH Tech Solutions – one of Gainesville’s premier IT companies – to build some great new apps and web programs. We wish we could tell you all about it but things are pretty hush-hush right now. Suffice it to say that these are huge projects that will benefit people and businesses alike. We’re investing mountains of time and energy into building what will hopefully become successful apps.  Nothing in guaranteed in the app world though – in many ways it is more difficult to make a successful app than it is to build a brick and mortar business. It may be ‘cheaper’ to make but there is so much competition out there that nothing is for certain. The same rules apply for apps, web programs, really any online business – as for traditional businesses, it takes hard work, promotion, all of those things that make a business work are also in play when you’re dealing with the web. There’s no shortcut unfortunately.

Anyway, we’ve got some new partners, and we’re stoked. Looking forward to years of happy web design and app building with PWH!

More Web Design Blog Content

Google Removing Anonymous Reviews

So it appears, as far as Search Engine Journal is reporting, that Google is removing anonymous reviews. And, honestly, why wouldn’t they? If you’re going to write a review you should have the guts to state your first name … or take the time to create a fake

Local Search Listing Management on Google

Building a strong customer base in your local community has always been one of the most significant components in the success of a business. With over 50% of Google searches completed on mobile devices, it’s more important than ever that on-the-go users can locate your business fast through

Gainesville Web Marketing

North West Mini Storage and Warehouse is a new client of ours. We started optimizing their site about 3 weeks from the date of this post. Already a page 1 contender, our client now enjoys a surge in search engine traffic – all organic, all of it white

The Low Down on Net Neutrality

What they heck is it? Most people don’t know it past the slogan .. and that’s what it is, a slogan. Net neutrality does not mean ‘left alone”, there’s nothing laissez faire about it. It does mean oversight, more oversight of the Internet than currently exists. The advocating

Facebook Ads V2

Still debating whether or not to use facebook ads? The short answer is you just have to put something out there to get the data back in order to determine if it gives you that ROI or not. Facebook’s network is extensive and the major benefit of advertising

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,