Skip to main content Screen Reader Website Version

Don’t Get Smacked by Copyright Infringemnt

Developers do it all the time – they need an image for a website and head on over to Google images, put a keyword in and voila! Free pictures for everyone!

Web Design Gainesville Florida
Web Design Gainesville Florida

Not so fast.

Many of these images are protected under copyright law and if you get caught, it’s a hefty fine. We have heard it is as high as $750 per instance. So if that image is used multiple different times, as in a header image, that can really add up.

There’s not a lot you can do about it either except plead your case to the person or entity filing the lawsuit.  You may be able to go to court and get them to lower the penalty amount if you can show that you did not intend to violate the copyright, but that’s a long shot. The fact that you went to Google images in the first place means you are attempting to get an image for free.

How to avoid getting dinged…

 

The only way to be sure your images are on the up-and-up is to purchase them from one of the many online image repositories out there. Pay for them. It’s worth it in the long run. But you still have to be careful there and make sure you are purchasing the correct rights. Most image repositories’ default permissions include web use. If you want to use the image in print then you’ll probably need to purchase and extended license. Just be careful, it’s expensive out there….

More Web Design Blog Content

Don’t Think Page Load Times Matter? Think Again.

A recent study by Google really hit home for online retailers or anyone looking to make a sale/conversion online. As Forbes points out: “53% of mobile site visitors will leave a page that takes longer than three seconds to load.” Google’s recommendations usually hover around one to one

Adding a Fee in Woocommerce

This piggybacks off of a solution I found elsewhere. We modified it to add a single fee for products based on the taxonomy. It comes in handy to categories products and then apply this rule to that category. function action_woocommerce_checkout_calculate_fees( $cart ) { // Initialize $quantity = 0;

Five Frequent SEO Mistakes and How to Fix Them.

Five Frequent SEO Mistakes and How to Fix Them. A few simple missteps can derail all the hours of toil, not to mention money, put into your SEO efforts. Here are five common SEO mistakes and how to rectify them.  Keywords Should Match Content. Google wants its customers

Neon AI on a keyboard

How Contractors Can Use AI to Work Smarter, Not Harder

Brought to you by Livewire – Web Design and Digital Solutions for Contractors In an industry where time is money and efficiency is key, artificial intelligence (AI) is no longer just a tech buzzword—it’s a practical tool that forward-thinking contractors are starting to use every day. From saving

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

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,