Mark Rushworth - Company SEO Services, Tips and Tools Leeds

  • Home
  • About
  • Services
    • SEO Services
    • Local Search
    • PPC Services
    • Social Media
      • Reputation Management
    • Web Design
      • Ecommerce
    • Email Marketing
  • Blog
    • SEO Advice
      • SEO Techniques
      • SEO Tools
      • SEO News
      • Google
      • Link Building
    • My Life
    • Work Related
    • Web Design
    • Web Development
  • Free SEO Analysis
  • Contact

Web Development

Cross Browser Testing Tools – IE 5, 6, 7 and 8 on Vista and Windows 7

March 22, 2010, by Mark Rushworth 2 comments

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

I’ve just found two new cross browser testing tools that more importantly work on Windows 7 and Vista.

The first is Internet Explorer Collection, a group of stand along applications that gives you the ability to test across multiple versions of IE.

The second is IETester, a ribboned Office 2007 style browser that performs all of the usual functionality.

Give them a try!

Download IE9 – Internet Explorer 9 Beta Now Available

March 16, 2010, by Mark Rushworth No comments yet

Well, this has to be a record, four posts in one day!

Here’s the latest bit of news, you can now download the new beta of IE9, Microsoft’s latest version of Internet Explorer.

Fingers crossed for full CSS3 support and that it’s Acid proof.

Download IE9 Beta Here

Cross Browser Testing Run IE6 and IE7 on Vista and Windows 7

February 26, 2010, by Mark Rushworth 1 comment

I’ve recently had to move machine whilst Microsoft figure out how the last Windows update has crippled my computer causing it to run slow and lockup/reset every 100 minutes (very annoying). The up-shot of this is that I am now working on a Windows Vista computer instead of my souped up XP configuration and as a result I am no longer able to access my standard suite of cross browser testing apps that are XP only.

I’ve tried to use online services but theyre slow and not very interactive however I recently came across a free solution that comes direct from Microsoft.

By using Microsofts free Virtual PC application you can quickly and easily run virtual machines preconfigured to combine versions of Internet Explorer and various operating systems. So with little effort, I am able to run a virtualised Windows XP with IE6 and IE7 preinstalled.

It works brilliantly.

One thing to note is that the virtual machines are time limited meaning that every so often you will have to download a new version.

Simple PHP – Joining Text Strings

January 7, 2010, by Mark Rushworth No comments yet

I’m no PHP guru, in fact I’d say im starting out and at the very bottom of a ladder. Never the less, I thought it wise to document any simple web development tips I’ve picked up. Most of these will be VERY simple, however theyre all things I’ve learned or needed to know in a real world scenario where im trying to SEO a website without development support.

The first of these is joining strings.

To extend a <title> tag that was stuck displaying the product name I needed to know hot to extend this by joining two text strings together. Luckily the guys at QBN.com were on hand to help and if you’re in a similar situation and need to join text strings here how.

$_title = $title . “what ever text you want to add” ;
or
$_title = “starting text” . ” ending text” ;
Basically you add a period ‘.’ between the two elements you want to join. Remember that in the text string above you would need to add a space after the first quote mark to split the strings if needed and dont forget the training semi colon!

Freelance PHP Developer Leeds

December 21, 2009, by Mark Rushworth No comments yet

We’re having to let go of some people which is not plesent as theyre good people the banks are just arseholes! One of which is Adam Williams, a really great PHP developer so if you’re in or around Leeds and need a new PHP guy for long-term or short term projects then give him a call 07595120137 or visit his website http://www.awdigital.com/

Adam is a great php developer, really up for a challenge and all round nice guy.

So once again, just for Google – Freelance PHP developer Leeds

Distinctive Chesterfields – New Site Design

November 6, 2009, by Mark Rushworth No comments yet

I’m proud to announce the re-design of the Distinctive Chesterfields website as performed by both Adam (php genius) and myself.

It was a great challenge as we had to keep all of the content and site structure the same and had to work around a rather archaic CMS produced by the previous creator.

Some of the features of the new Distinctive Chesterfields website include:

  • Improved product information pages
  • Removal of some sales workflow barriers
  • Combined brochure and swatch request pages
  • Refocused international page contents

The new Distinctive Chesterfields site has been online for a few weeks now during soft launch and with only a few minor niggles, I’m glad to say the company has had its best month of sales to date, a fact that I’d like to attribute partially to the new design.

iStockPhoto.com Promo Code

October 19, 2009, by Mark Rushworth No comments yet

Just been emailed this great little istockphoto promo code for 15% off 50 credits or more.

Simply enter the code: M155U42

Simples *squeek*

Another PHP Web Development Resource

October 14, 2009, by Mark Rushworth No comments yet

I’d like to welcome Adam to the world of blogging. After many months of saying ‘I have to start a blog’ he’s finally managed to pull his funder out and start one.

So if you have any PHP web development questions or want to read up on some advanced and not-so advanced PHP web development topics then look him up

root-servers.co.uk

Using .htaccess and 301 Redirects to Resolve Canonical Domain Issues

July 29, 2009, by Mark Rushworth 1 comment

Heres a simple little entry for a .htaccess file that automatically maps any non www. domains to the www.versions (may not work on sub domains) providing a neat way of controlling canonical domain issues with a little 301 magic.

Options +FollowSymLinks

RewriteEngine on

RewriteCond %{HTTP_HOST} ^domain.com [NC]

RewriteRule ^(.*)$

[L,R=301]

Enjoy!

Google Microformats hCard/vCard hReview and XFN Explained

May 14, 2009, by Mark Rushworth 2 comments

Today sees a significant change to your Google listings with google announcing its support for rich snippets including vCard and vCalendar. This is important as it gives us an edge to make our listings stand out from the crown, however the down side (yes theres always one isnt there) is that it arms Google withgreater understanding our our content which can be used to marginalise sites and even worse reduce them to a local listing.

hCard

Heres my quick guide to creating a semantic hcard for your site to be used where ever you put your address:

1.  <div class="vcard">
2.    <a class="fn org url" href="http://www.click4beds.co.uk/">Click 4 Beds</a>
3.    <address class="adr">
4.      <span class="type">Work</span>:
4.      <div class="building">Enterprise Works</div>
6.      <div class="street-address">Long Lane</div>
7.      <div class="locality">Honley</div>,
8.      <div class="region">West Yorkshire</div>  
9.      <div class="postal-code">HD9 6EA</div>
10.     <div class="country-name">England</div>
11.   </address>
12.   <div class="tel">
13.     <span class="type">Work</span> +44 (0)1484 666563
14.   </div>
15.   <div>Email:
16.     <a class="email" href="mailto:sales@click4beds.co.uk">sales@click4beds.co.uk</a>
17.   </div>
18. </div>

The Breakdown.

  1. Tells Google to start a vCard
  2. Sets a link thats a [fn] Full Name, [org] organisation that has a [url] website address
  3. Starts the [adr] address content
  4. Sets this [type] field to be a work address
  5. Sets this [building] field to be the building name
  6. Sets this [street-name] field to be the street address
  7. Sets this [locality] field to be the town/city or village address
  8. Sets this [region] field to be the county address
  9. Sets this [postal-code] field to be the postcode
  10. Sets this [country-name] field to be the name of your country
  11. Closes the address content
  12. Identifies content as a telephone number
  13. Tells Google this is a work number followed by the telephone number itsself
  14. Closes the telephone number content
  15. Starts a container
  16. Tells google that this is an email address
  17. Closes the container
  18. Closes the vCard

Adapted from microformats.org/wiki/hcard

hReview

If you read the original Google post above you’ll notice that theyre also displaying a review for this listing. They claim that this is a standard format widely used on the Interwebs so best keep your eyes peeled for something like the following which is used as a sample on microformats.org/wiki/hreview

1.  <div class="hreview">
2.    <span><span class="rating">5</span> out of 5 stars</span>
3.    <h4 class="summary">Crepes on Cole is awesome</h4>
4.    <span class="reviewer vcard">Reviewer: <span class="fn">Tantek</span> -
5.      <abbr class="dtreviewed" title="20050418T2300-0700">April 18, 2005</abbr></span>
6.    <div class="description item vcard"><p>
7.      <span class="fn org">Crepes on Cole</span> is one of the best little
8.        creperies in <span class="adr"><span class="locality">San Francisco</span></span>.
9.      Excellent food and service. Plenty of tables in a variety of sizes
10.     for parties large and small.  Window seating makes for excellent
11.     people watching to/from the N-Judah which stops right outside.
12.     I've had many fun social gatherings here, as well as gotten
13.     plenty of work done thanks to neighborhood WiFi.
14.  </p></div>
15.  <p>Visit date: <span>April 2005</span></p>
16.  <p>Food eaten: <span>Florentine crepe</span></p>
17.  </div>

Based on the break down from the HCard this is pretty easy to understand.

XFN

XFN is already sidely used on blog engines like WordPress where it encourages you to identify link relations to your site using the REL attribute.

Heres the official list of regognised REL attributes microformats.org/wiki/existing-rel-values

1234

The SEO Team You Need!

I work as Director of Digital for Bite Digital, a leading SEO company in Manchester who in turn handle campaigns for some of the UK's largest high street brands. Our approach is to use a broad range of on-page analysis and Link Building techniques to holistically build high quality traffic to your website.

Call me today on 01612280127 for free, honest and open advice about your online projects or email markrush@gmail.com.

Follow us

FacebookBuzzTwitterYouTubeRSS feed

We Are Recruiting

Bite Digital, Manchester's leading boutique Digital Marketing agency is looking for new talented SEO team Leader (£25k+) to help mastermind and manage our growing portfolio of clients. If you fit the bill and want to bring and develop your existing link building and staff management skills then send your CV to mark.rushworth@biteus.net

Free SEO Audit Report

Free SEO Audit
Click here to receive a FREE detailed report on your websites on-page SEO.

Top Posts

  • The Walking Boots Bribe
  • iPod Dock Reviews
  • Buy Windows 7
  • SEO Leeds
  • Free Directory Submission
  • Web Design Leeds
  • SEO Manchester

Categories

  • Blogging
  • Gadgets
  • Google
  • Guest Posts
  • Link Building
  • My Life
  • SEO Advice
  • SEO News
  • SEO Techniques
  • SEO Tools
  • Social Media
  • Software
  • Web Design
  • Web Development
  • Work Related

Archives

  • February 2012
  • January 2012
  • December 2011
  • November 2011
  • October 2011
  • September 2011
  • August 2011
  • July 2011
  • June 2011
  • May 2011
  • April 2011
  • March 2011
  • February 2011
  • January 2011
  • December 2010
  • November 2010
  • October 2010
  • September 2010
  • August 2010
  • July 2010
  • June 2010
  • May 2010
  • April 2010
  • March 2010
  • February 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009
  • September 2009
  • August 2009
  • July 2009
  • June 2009
  • May 2009
  • April 2009
  • March 2009
  • February 2009
  • January 2009
  • December 2008
  • November 2008
  • October 2008
  • September 2008
  • August 2008
  • June 2008
  • May 2008
  • April 2008
  • March 2008
  • January 2008
  • December 2007
  • November 2007
  • October 2007
  • August 2007
  • June 2007
  • February 2007
  • January 2007
  • December 2006
  • November 2006
  • October 2006
  • September 2006
  • August 2006
  • July 2006
  • June 2006
  • Add Multiple Managers to Google+ Mark Rushworth, February 2, 2012
  • Social Media beyond Twitter and Facebook? Think Forums Mark Rushworth, January 26, 2012
  • It’s official. I’m more interesting than Oprah Mark Rushworth, January 19, 2012
  • 2 Worthwhile Additions To Your Keyword Research Tool Kit Mark Rushworth, January 18, 2012
  • Stop SOPA – MR.SEO Going Dark Mark Rushworth, January 18, 2012
  • Tushar: Ya there is okay about that multiple editors but any...
  • Ramadhan: that was nice pinging tool, is that your ?
  • Katherin: I have visited those two links..its completely new to me..im...
  • log: It's alright, Mark. We all miss some things once in...
  • Toledo: I think the things that most people leave out from...

Mini Contacr

Copyright © 2011 Mark Rushworth SEO Leeds. All Rights Reserved. Privacy policy