Sitemaps

Back in the day a simple website could get away with an on-page sitemap. Just a simple list of pages somewhere on the site. Not so much anymore. Sitemaps – at least the ones we intend for search engines to look at – are all internal. We use a programming scheme called XML to create a sitemap and put that in a place on your server where search engines will look for it.

XML sitemaps do more than just tell search engines what pages are on your website. You can add information about when the site structure was last updated, show information on what type of content is on your website such as videos and images, and even provide information to search engines about your mobile website. Search engines are more likely to index your site the way you want to with a properly coded sitemap. They’re easy to make for us but might look like a foreign language to someone without any programming experience. Livewire sitemaps are included in any website we create upon request and come with any of our SEO packages.

For those of you who are still intent on doing it themselves, here is a good article on creating your sitemap.

http://searchenginewatch.com/article/2048706/Sitemaps-SEO-An-Introductory-Guide

More Web Design Blog Content

Another Mouse Burned

This makes my 7th mouse in less than 18 months. incessant clicking has it’s consequences … and costs …..

The Brief Business Guide To Instagram

Instagram is a misunderstood product for most business owners. Isn’t facebook enough? No. Unfortunately you must not only adapt to the changing social media platforms but you have to keep adapting to all the various forms of networkings online. For some it’s fun, for others it’s a necessary

What is Lorem Ipsum?

Lorem ipsum is simply Latin text. Gobbledygook, essentially. Well, not really; It does have its roots in latin text from just before the BC to BCE line, so that puts it around 2000 years old. Past that, it’s gibberish.  Sometimes web developers need filler text to create web

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

OpenCart CCBill Payment Module ★★★★

4 Stars for this plugin. It worked, that part is true but we had to make some modifications and there were some syntax issues with the PHP. Overall though, a solid plugin for opencart and the ONLY one we found worth a darn for CCBill. We think our

Javascript called by PHP

Interesting little snippet. What is going on here? Livewire gives you the low down.    if($num_rowvs == 0){ echo ‘<script>// <![CDATA[ alert(“This is an alert message. I’m alerting you that you are totally awesome!”); // ]]></script>’; }   First, we’re creating a simple if statement in PHP.  Not entirely