Home » HTML 5 » Maintaining Correct Site Structure

Maintaining Correct Site Structure

site structureOne of the biggest holes in a client’s SEO (pre livewire SEO, that is) is almost always the site structure. So many SEO companies focus on content and backlinks that quality code is often overlooked. There are many cases where we have come into the tail end of another company’s SEO efforts and changed only the site structure, summarily putting them on top in no time flat. The previous company had done some quality work but neglected to ensure all the proper code was in the proper places.

The most egregious infractions include:

  • Missing or unuseful title tags
  • Missing or unuseful H1 and H2 tags (these let search engines know the focal point of your content – the main idea)
  • Too much content below the fold
  • Parsing javascript in the header and not delaying it until the closing body tag
  • Poor meta use
  • Missing or unuseful alt tags for images

How your site “looks” to search engines is different than how it looks to us. We focus on aesthetics and layout, search engines focus on how the site is laid out via the tags and attributes. Without the right tags and structure, search engines have a more difficult time understanding what you’re trying to say. Hence you don’t rank well. You can have all the content and backlinks in the world but without the correct format, you’ll be confusing the search engines and that will affect your ranking prospects dramatically, negatively.

 

An Accessibility Mindset

How often do you receive this response when inquiring about making a website more accessible? We wish we could devote more resources to it, but at the moment we just don’t know enough to get started. The value and necessity of making websites accessible are generally recognized. Almost

Pretty Awesome Image Packages

Nowadays, it’s just best to buy your images. As Gainesville Web Design experts, we purchase them almost on a daily basis. There are always projects that require different photos, icons or footage. Generally people purchase credits and then use those to buy images – kind of like an

Hey, Look What We Did…

Our programmers are the best in the business. We just finished a great new project at referralfeelawyers.com. This service connects lawyers with lawyers that pay referral fees for, you guessed it, referrals. The website features custom attorney profiles, administrative control over practice areas and geographical data….all kinds of

Understanding Value

At Livewire, we definitely understand what value means. As primarily a B2B driven business we know that value goes beyond a ROI, although that is incredibly important. A proper return on investment is the measuring stick by which most business owners value our services, and that is totally

Woocommerce Products Per Page

Interestingly Woocommerce does not seem to have a default setting for ‘products per page’. Unsurprisingly, there’s a simple workaround. Add to your functions.php Replace “28” with whatever number you want. add_filter( ‘loop_shop_per_page’, create_function( ‘$cols’, ‘return 28;’ ), 20 );