WEB DESIGN

Responsive Design and Why it is important for your Small Business Website

Responsive design provides users with quick seamless access to the same content regardless if they are using a smartphone, a tablet, or a laptop/desktop. “Web Design is responsive design, Responsive Wed Design is web design, done right.” – Andy Clarke A responsive design website responds to the device it’s being viewed on by fluidly changing

Responsive Design and Why it is important for your Small Business Website Read More »

Geolocate Address from Custom Post Type Meta Value: WordPress Experts

This was an interesting project for our Gainesville Web Design Team. The puzzle: Create a custom post type within WordPress, no trouble there Allow users to input an address on a CRED front-end form that loads into the CPT, still no trouble there Next, create a script that loops through each CPT, extracts the elements

Geolocate Address from Custom Post Type Meta Value: WordPress Experts Read More »

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

Preloading Images with Jquery Read More »