Skip to main content Screen Reader Website Version

Submit A Sitemap … To Bing?

Indeed. For some reason, Bing still exists. And since it does you’ll need to submit your sitemap so your business will show up in the results of a person who searches from the unwanted automatically installed Bing bar on their browser. They’re so lovely, forcing it on you like that is such a treat. Anywho…. submitting your sitemap to Bing is easy.

  1. Create your sitemap using the sitemap generator of your choice. We do like the CoffeeCup Sitemapper.
  2. Find the sitemap.xml file it creates.
  3. Upload it to the main directory of your website.
  4. Create a Bing webmaster tools account and navigate to the sitemap widget
  5. Click “submit a sitemap” – ingenious, eh?
  6. Add the full link to your sitemap – it would read like, http://yourdomain.com/sitemap.xml
  7. Click submit

That’s it. Now you can enjoy all the benefits Bing brings you (sarcasm overload…). If you’re using WordPress there are a number of sitemap plugins to choose from and you can skip most of this work. Did you know the 3rd most searched term on Bing is “Google”? Did we mention we are not fans of Bing?

More Web Design Blog Content

A Blog you say, Like We Have Time!?

Well, it’s finally happened. A Gainesville Web Design Company made a wordpress blog and started posting to it in “third person” sort of way. Original, we know. We will hopefully have some interesting things to say between keywords, so just sit back, relax, and chew on some web

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

Website To Text

Introducing the Livewire Website to Text Application, a cutting-edge tool that transforms consumer engagement. Imagine having the ability to instantly connect with customers in a personalized way, bridging the gap between your website visitors and your company with ease. With this game-changing feature, you gain access to a plethora

Learning how to code?

We get questions all the time about how we started doing all this. Where did we learn to code? How on earth does any of that make sense? Some people are interested in learning for themselves. It’s easy to get started, especially in this day and age. Back

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

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