How to Set up 301 & 302 Redirects

Posted in SEO, Web Design on July 20th, 2009 by Angelina

Within this post I’ll be explaining what a redirect is, the difference between a 301 and a 302 redirect lumaxartand how to set up redirects yourself. Right, let’s go:

What is a redirect?

A redirect is a command which automatically sends visitors to an alternative web page rather than the one they typed into their browser.

Why do you need to use redirects?

From time to time you may need to either delete a page, or change it’s URL. If you just go ahead and do this without a redirect, any visitor to the page will get a 404 which can be bad for users and for SEO (see our really rather good guide to managing broken links and 404’s and  for more information).

Why are they important?

Redirects help users by automatically taking them to an alternative page, or indeed the same page if you’ve simply changed the URL. Likewise, redirect also tells search engines that the page has moved.

Plain English Definitions of those Pesky Numerical Wotsits

What’s the difference between a 301 and a 302? What’s a 404? How’s a 404 differ from a 500? Be confused no longer:

301 – Permanent Redirect: This tells the search engines that the page has moved permanently. Over time authority from the old page will pass to the new version.

302 – Temporary Redirect: This tells the search engine that the page has moved temporarily. As such no authority from the old page will pass to the new version.

404 - Error Page/File Not Found: This tells the search engine that the web page cannot be found

500 – Internal Server Error: This means there is a problem with the code which is affecting the server. This may have been caused by incorrect coding or command set up. 

 

To 301 or 302… Which Redirect Should I Use?

  1. 301 – A permanent redirect should be used if you’ve changed the URL permanently. For SEO purposes it rocks as it helps maintain your natural search listing and indexing by the search engines (NB you might see a drop in rankings initially, but they should recover).
  2. 302 – A temporary redirect should be used only in the event that it’s a temporarily URL change. For SEO purposes it sucks as it passes no authority – therefore you might find that your lose rankings.

 

How do you set up redirects?

1. Open Notepad to create a new document.

2. Insert one of the following commands into notepad with your website URL address.

Temporary redirect
redirect 302 /old-webpage.html http://www.website.co.uk/new-webpage.html

Permanent redirect
redirect 301 /old-webpage.html http://www.website.co.uk/new-webpage.html

slide2

 

3. Save the notepad file as an HTACCESS file. You can do this by saving the file with the name .htaccess.

slide31

 

 4. Make sure to select ‘All files’ in ‘Save as type’.

save-slide-2

 

5. Open your FTP for your website. (Note: You will need to open the file in SFTP to be able to upload your HTACCESS file. You may need to enter a password to be able to log into the server.)

6. Upload the HTACCESS file to the root of your server. This is usually in the www folder on the server.

7. Test the web page to see that it is redirecting. (If the web page redirects from the old address to the new address, then the redirect is working.)

 

Having problems?

I’m still seeing the same web page even though I have uploaded the htaccess file. Have I done something wrong?

The redirect to the web page is probably incorrect. Check that you have put in the correct web page address. Also check your slashes ‘/’ and the web page language extension – htm, html, php, asp, aspx etc.

I’m receiving a 500 internal server error. What did I do wrong?

There is probably incorrect formatting in the HTACCESS file. Check the file for spacing and typing errors.

 

Hopefully now you’re good to go, but of course if you do have any queries please let me know via the comments.

 

 

Image source: Lumaxart

Tags: , , , , , ,

Which One Would You Choose?

Posted in Web Design on July 10th, 2009 by Angelina

Scenario:

You need to complete an ESTA (Electronic System for Travel Authorisation) form in order to travel to the States. You don’t know the official site, so you type esta form into your favourite search engine. Below are four screen shots taken from the top sites that appeared on Google for esta form:

A)

A)

A

B)

B)

B

C)

C)

C

D)

embassy-easta1

D

Now without cheating (i.e. don’t go and find out which is the official site) please select the one you would choose to submit your ESTA:

 A) Besta ESTA  B) ESTA Rantzen C) ESTA Egg D) ESTA Suprise

I’ll publish the results of the survey, reveal which is the official site and examine why choosing the wrong one of these four could prove costly next week…

Tags:

Creating and Customising a Blog for your Site

Posted in Blogging, Web Design on June 25th, 2009 by Angelina

Blog iconMany businesses recognise the potential value of corporate blogging both in terms of potential SEO benefits, and engaging with their customers. As such we’re finding ourselves installing blogs on a fairly regular basis.

Therefore we thought that it might be useful to create a ‘how to’ post to act as a guide for those installing and customising Wordpress.

We’d love to hear your thoughts on this post, and if you’ve any other hints and tips to share please let us know via the comments.

 

Installing Wordpress

There are two ways to install a WordPress blog:

The easiest way, (if  it allows you to) is to install the blog through the control panel for your site. In the control panel click on the fantastico deluxe button, then on the left hand navigation under the title blog, click on the WordPress link, now click the new installation link that will appear on the page and follow the instructions provided on screen.

If you don’t have a control panel that allows you to automatically install a WordPress blog, you can manually install the blog. Instructions for this can be found on http://codex.wordpress.org/Installing_WordPress

Click on Fantastico, then on WordPress

Click on Fantastico, then on WordPress

Once WordPress is installed it will appear in a folder on your remote server (where the site is hosted). Download this folder to your computer.

For ease of explanation I have created a rudimentary template which you can view on www.gravytrain.co.uk/blog-test/

Example

Example

Branding your Blog

You can then add your branding to the blog using the following URLs:

Logo:

http://www.gravytrain.co.uk/blog-test/wp-content/themes/default/images/logo.jpg

Banner:

http://www.gravytrain.co.uk/blog-test/wp-content/themes/default/images/banner-image.jpg

Customising a WordPress Blog

The folder containing the files you need to edit can be found using the following path from the blog folder: \your-blog-folder\wp-content\themes\default\

1. Open style.css in a text editor and replace everything on it with the code below.

/* Begin Typography & Colors */
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;

color: #333;
text-align: center;
}

#page {
background-color: white;
border: 1px solid #000000;
text-align: left;
}

#headerimg     {
margin: 7px 9px 0;
height: 90px;
width: 800px;
}

#content {
font-size: 1.2em
}

.widecolumn .entry p {
font-size: 1.05em;
}

.narrowcolumn .entry, .widecolumn .entry {
line-height: 1.4em;
}

.widecolumn {
line-height: 1.6em;
}

.narrowcolumn .postmetadata {
text-align: center;
}

.thread-alt {
background-color: #f8f8f8;
}
.thread-even {
background-color: white;
}
.depth-1 {
border: 1px solid #ddd;
}

.even, .alt {

border-left: 1px solid #ddd;
}

#footer {

border: none;
}

small {
font-family: Arial, Helvetica, Sans-Serif;
font-size: 0.9em;
line-height: 1.5em;
}

h1, h2, h3 {
font-family: ‘Trebuchet MS’, ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
font-weight: bold;
}

h1 {
font-size: 4em;
text-align: center;
}

#headerimg .description {
font-size: 1.2em;
text-align: center;
}

h2 {
font-size: 1.6em;
}

h2.pagetitle {
font-size: 1.6em;
}

#sidebar h2 {
font-family: ‘Lucida Grande’, Verdana, Sans-Serif;
font-size: 1.2em;
}

h3 {
font-size: 1.3em;
}

h1, h1 a, h1 a:hover, h1 a:visited, #headerimg .description {
text-decoration: none;
color: white;
}

h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
color: #333;
}

h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, #sidebar h2, #wp-calendar caption, cite {
text-decoration: none;
}

.entry p a:visited {
color: #b85b5a;
}

.commentlist li, #commentform input, #commentform textarea {
font: 0.9em ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
}
.commentlist li ul li {
font-size: 1em;
}

.commentlist li {
font-weight: bold;
}

.commentlist li .avatar {
float: right;
border: 1px solid #eee;
padding: 2px;
background: #fff;
}

.commentlist cite, .commentlist cite a {
font-weight: bold;
font-style: normal;
font-size: 1.1em;
}

.commentlist p {
font-weight: normal;
line-height: 1.5em;
text-transform: none;
}

#commentform p {
font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
}

.commentmetadata {
font-weight: normal;
}

#sidebar {
font: 1em ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
}

small, #sidebar ul ul li, #sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike {
color: #777;
}

code {
font: 1.1em ‘Courier New’, Courier, Fixed;
}

acronym, abbr, span.caps
{
font-size: 0.9em;
letter-spacing: .07em;
}

a, h2 a:hover, h3 a:hover {
color: #06c;
text-decoration: none;
}

a:hover {
color: #147;
text-decoration: underline;
}

#wp-calendar #prev a, #wp-calendar #next a {
font-size: 9pt;
}

#wp-calendar a {
text-decoration: none;
}

#wp-calendar caption {
font: bold 1.3em ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
text-align: center;
}

#wp-calendar th {
font-style: normal;
text-transform: capitalize;
}
/* End Typography & Colors */

/* Begin Structure */
body {
margin: 0 0 20px 0;
padding: 0;
}

#page {
background-color: white;
margin: 20px auto;
padding: 0;
width: 800px;
border: 1px solid #000000;
}

#header {
background-color: #FFFFFF;
margin: 0 0 0 1px;
padding: 0;
height: 90px;
width: 800px;
}

#headerimg {
margin: 0;
height: 90px;
width: 100%; float:left;
}

.narrowcolumn {
float: left;
padding: 0 0 0px 0px;
margin: 0px 0 0 10px;
width: 500px;
}

.widecolumn {
padding: 0px 0 20px 0;
margin: 5px 0 0 10px; float:left;
width: 500px;
}

.post {
margin: 0 0 40px;
text-align: justify;
}

.post hr {
display: block;
}

.widecolumn .post {
margin: 0;
}

.narrowcolumn .postmetadata {
padding-top: 5px;
}

.widecolumn .postmetadata {
margin: 30px 0;
}

.widecolumn .smallattachment {
text-align: center;
float: left;
width: 128px;
margin: 5px 5px 5px 0px;
}

.widecolumn .attachment {
text-align: center;
margin: 5px 0px;
}

.postmetadata {
clear: both;
}

.clear {
clear: both;
}

#footer {
padding: 0;
margin: 0 auto;
width: 760px;
clear: both;
}

#footer p {
margin: 0;
padding: 20px 0;
text-align: center;
}
/* End Structure */

/*    Begin Headers */
h1 {
padding-top: 70px;
margin: 0;
}

h2 {
margin: 10px 0 0;
}

h2.pagetitle {
margin-top: 10px;
text-align: center;
}

#sidebar h2 {
margin: 5px 0 0;
padding: 0;
}

h3 {
padding: 0;
margin: 30px 0 0;
}

h3.comments {
padding: 0;
margin: 40px auto 20px ;
}
/* End Headers */

/* Begin Images */
p img {
padding: 0;
max-width: 100%;
}

/*    Using ‘class=”alignright”‘ on an image will (who would’ve
thought?!) align the image to the right. And using ‘class=”centered’,
will of course center the image. This is much better than using
align=”center”, being much more futureproof (and valid) */

img.centered {
display: block;
margin-left: auto;
margin-right: auto;
}

img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}

img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}

.alignright {
float: right; width:50%; height:30px; text-align:right;
}

.alignleft {
float: left; width:50%; height:30px; text-align:left;
}
/* End Images */

/* Begin Lists

Special stylized non-IE bullets
Do not work in Internet Explorer, which merely default to normal bullets. */

html>body .entry ul {
margin-left: 0px;
padding: 0 0 0 30px;
list-style: none;
padding-left: 10px;
text-indent: -10px;
}

html>body .entry li {
margin: 7px 0 8px 10px;
}

.entry ul li:before, #sidebar ul ul li:before {
content: “0BB 020″;
}

.entry ol {
padding: 0 0 0 35px;
margin: 0;
}

.entry ol li {
margin: 0;
padding: 0;
}

.postmetadata ul, .postmetadata li {
display: inline;
list-style-type: none;
list-style-image: none;
}

#sidebar ul, #sidebar ul ol {
margin: 0;
padding: 0;
}

#sidebar ul li {
list-style-type: none;
list-style-image: none;
margin-bottom: 15px;
}

#sidebar ul p, #sidebar ul select {
margin: 5px 0 8px;
}

#sidebar ul ul, #sidebar ul ol {
margin: 5px 0 0 10px;
}

#sidebar ul ul ul, #sidebar ul ol {
margin: 0 0 0 10px;
}

ol li, #sidebar ul ol li {
list-style: decimal outside;
}

#sidebar ul ul li, #sidebar ul ol li {
margin: 3px 0 0;
padding: 0;
}
/* End Entry Lists */

/* Begin Form Elements */
#searchform {
margin: 10px auto;
padding: 5px 3px;
text-align: center;
}

#sidebar #searchform #s {
width: 108px;
padding: 2px;
}

#sidebar #searchsubmit {
padding: 1px;
}

.entry form { /* This is mainly for password protected posts, makes them look better. */
text-align:center;
}

select {
width: 130px;
}

#commentform input {
width: 170px;
padding: 2px;
margin: 5px 5px 1px 0;
}

#commentform {
margin: 5px 10px 0 0;
}
#commentform textarea {
width: 100%;
padding: 2px;
}
#respond:after {
content: “.”;
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#commentform #submit {
margin: 0 0 5px auto;
float: right;
}
/* End Form Elements */

/* Begin Comments*/
.alt {
margin: 0;
padding: 10px;
}

.commentlist {
padding: 0;
text-align: justify;
}

.commentlist li {
margin: 15px 0 10px;
padding: 5px 5px 10px 10px;
list-style: none;

}
.commentlist li ul li {
margin-right: -5px;
margin-left: 10px;
}

.commentlist p {
margin: 10px 5px 10px 0;
}
.children { padding: 0; }

#commentform p {
margin: 5px 0;
}

.nocomments {
text-align: center;
margin: 0;
padding: 0;
}

.commentmetadata {
margin: 0;
display: block;
}
/* End Comments */

/* Begin Sidebar */
#sidebar
{
padding: 0px 0 10px 0;
margin-left: 0px; float:right;
width: 190px; margin-top:10px;
}

#sidebar form {
margin: 0;
}
/* End Sidebar */

/* Begin Calendar */
#wp-calendar {
empty-cells: show;
margin: 10px auto 0;
width: 155px;
}

#wp-calendar #next a {
padding-right: 10px;
text-align: right;
}

#wp-calendar #prev a {
padding-left: 10px;
text-align: left;
}

#wp-calendar a {
display: block;
}

#wp-calendar caption {
text-align: center;
width: 100%;
}

#wp-calendar td {
padding: 3px 0;
text-align: center;
}

#wp-calendar td.pad:hover { /* Doesn’t work in IE */
background-color: #fff; }
/* End Calendar */

/* Begin Various Tags & Classes */
acronym, abbr, span.caps {
cursor: help;
}

acronym, abbr {
border-bottom: 1px dashed #999;
}

blockquote {
margin: 15px 30px 0 10px;
padding-left: 20px;
border-left: 5px solid #ddd;
}

blockquote cite {
margin: 5px 0 0;
display: block;
}

.center {
text-align: center;
}

.hidden {
display: none;
}

hr {
display: none;
}

a img {
border: none;
}

.navigation {
display: block;
text-align: center;
margin-top: 10px;
margin-bottom: 0px;
}
/* End Various Tags & Classes*/

/* Captions */
.aligncenter,
div.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}

.wp-caption {
border: 1px solid #ddd;
text-align: center;
background-color: #f3f3f3;
padding-top: 4px;
margin: 10px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}

.wp-caption img {
margin: 0;
padding: 0;
border: 0 none;
}

.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0;
}
/* End captions */

2. Open header.php in a text editor. Below is the code that should replace the code between the <body> tags.

<div id=”page”>
<div id=”headerimg”>
<div id=”company-logo” style=”float:left; width:229px;”><img src=”/blog-test/wp-content/themes/default/images/logo.jpg” alt=”logo” width=”229″ height=”89″ /></div>

<div id=”company-contact” style=”float:right; width:500px; margin-right:5px;”><h1 style=”color:#000000; font-family:Arial, Helvetica, sans-serif; font-size:24px; margin-top:5px; text-align:right; padding:0px;”>Company details/ slogan/ contact details will be put into here!</h1></div>
</div>
<div id=”custom-menu” style=”width:100%; float:left; margin-top:1px;”>

<div id=”menu1″ style=”width:150px; float:left; margin-right:4px; background:#000000; padding:5px; text-align:center; height:20px”><span style=”margin:5px 0px 0px 0px; font-family:Arial, Helvetica, sans-serif; color:#FFFFFF; font-size:14px; text-align:center;”>Menu Item1</span></div>

<div id=”menu2″ style=”width:150px;; float:left; margin-right:4px; background:#000000; padding:5px; text-align:center; height:20px”><span style=”margin:5px 0px 0px 0px; font-family:Arial, Helvetica, sans-serif; color:#FFFFFF; font-size:14px; text-align:center;”>Menu Item2</span></div>

<div id=”menu3″ style=”width:150px;; float:left; margin-right:4px; background:#000000; padding:5px; text-align:center; height:20px”><span style=”margin:5px 0px 0px 0px; font-family:Arial, Helvetica, sans-serif; color:#FFFFFF; font-size:14px; text-align:center;”>Menu Item3</span></div>

<div id=”menu-end” style=”float:left; background-color:#000000; width:298px; height:20px; padding:5px;”></div>

</div>

<div id=”banner-image” style=”width:800px; float:left; margin-top:2px;”><img src=”/blog-test/wp-content/themes/default/images/banner-image.jpg” alt=”banner image” /></div>

3. Now in the <header> section delete any styles containing kubrick.jpg or similar eg: #page { background: url(“<?php bloginfo(’stylesheet_directory’); ?>/images/kubrickbgwide.jpg”) repeat-y top; border: none; }.  Take care not to delete anything that isn’t a style as it may break the blog.

4. At this point, if you wish, you can edit the images and styles to suit your site. You will notice that the styles have been written inline. This is for example purposes, so you can and should move inlinestyles to the style sheet when you are happy with the look of the header.

5.Open single.php and add <?php get_sidebar(); ?> above the line containing <?php get_footer(); ?> (this ensures that the side menu appears when viewing a single blog entry which it doesn’t by default.)

6. If you wish you can edit the side menu and footer. Open sidebar.php and footer.php and have a play around. It is advisable to make a back up copy of these files if you are going to experiment.

That’s the look sorted, but there are still some other areas that need to be looked at.

SEO Considerations

For starters when you write blog posts the default URL extensions are not search friendly e.g. /page=2.php

This is unfriendly because it doesn’t display any information relating to the post. Search friendly WordPress URL’s will insert the date as well as the post titles instead. Example: http://www.gravytrain.co.uk/blog/2009/04/09/where-art-meets-web-design/

To check this, open a browser and sign into your blog, click on settings, then on perma links and select the option that gives the following url example: http://www.yoursite.co.uk/blog-test/2009/04/sample-post/

Now the post you write will generate search engine friendly URL’s.

Unfortunately this fix has now created another problem. If you have any previous posts and try clicking on them, you will see that they appear as broken links.

Don’t panic, here’s the fix:

Open or create a .htaccess file and paste the following code, make sure you change the word ‘blog’ if you used a different title for the folder you installed it to.  Type the correct URL where ‘yoursite’ is written:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^yoursite.co.uk [nc]
rewriterule ^(.*)$ http://www.yoursite.co.uk/$1 [r=301,nc]

The second part of the code (rewrite) isn’t strictly to do with the blog but it helps with the SEO of your site.

Save and upload the .htaccess file to the root folder.

OK, just one more consideration and we’re there. This consideration is also SEO related. Depending on the installation of  the blog, it will sit on either a http://site.com/blog address or a http://www.site.com/blog address.

Ideally you want the blog to sit on http://www. with rest of the site.  This can be checked by looking at the address bar of  your blog and seeing if there is a ‘www.’ infront of the domain.

This is called canonicalisation – you can read more about the effects of this has here .

To move the blog to a http://www. location you have to open functions.php and paste the following code just after <?php at the top of the page. Again replace ‘yoursite’ with your own domain.

update_option(‘siteurl’,’http://www.yoursite.com/blog/’);
update_option(‘home’,’http://www.yoursite.com/blog/’);

Now upload it. Once you have checked it works delete the lines you just added, save and upload again. I know it sounds a little strange but it is important and the redirect will continue work.

Now you have finished and you can go sup your pint in the pub while basking in the glory of creating a customised blog!

Tags: , , , ,

This Week In Search 29/5/09

Posted in Weekly Round Up on May 29th, 2009 by Hannah

calendarCan’t believe it’s that time again – the week’s are rushing past! Here’s the round up of the best blog posts/articles I’ve read this week…

Search Engines

Microsoft launched a new search engine called Bing - available to microsoft employees now, and to the rest of us oiks shortly. Just can’t wait? Take a look at Greg Sterling’s Bing v Google head to head.

Meanwhile over at Google, they’ve been working on a new communications tool called Wave. Google describe it as:

 ”…equal parts conversation and document, where people can communicate and work together with richly formatted text, photos, videos, maps, and more.”

SEO

Approaching international SEO is always tricky – SharkSEO has outlined 3 approaches to site structure for international SEO and the pros and cons of each – essential reading. 

Over at SEOmoz Rob Ousby looks at how to increase clicks on your organic listings via some careful crafting of the snippet which the search engines display in their results – SEO meets marketing – love it! 

Social Media

Is Social Media the marketing end-all? Doug  deGrood at Advertising Age isn’t convinced. An excellent opinion piece and well worth a read.

Marketing

I’m a massive fan of Malcolm Gladwell writer of Blink and The Tipping Point (incidentally if you haven’t already, do read his books). His latest article in the New Yorker explores How David Beats Goliath - i.e. how the underdog can win – even against the odds. It is a long article, but well worth a read.  

PPC

The pros and cons of bidding on clients own brand names is always up for debate. Over at Search Engine Journal, Brian Carter illustrates the value of brand PPC, giving a compelling argument backed up with some interesting stats, which might make you think again.

Aaaannnnd Finally, Friday’s Funny

This week I’ve been somewhat preoccupied with grammar and punctuation, hence this cartoon really tickled me (NB there’s a naughty swear word in the cartoon, so don’t click the link if you’re offended by such things). 

Hat tip to Ciaran for this. 

Have a lovely weekend :)

Image credit joyosity

Tags: , , , , , , ,

This Week In Search 22-5-09

Posted in Weekly Round Up on May 22nd, 2009 by Hannah

Well hello there!

Despite being on annual leave, I’m still taking some time out of my daytime television watching to bring you the weekly round up. Now, that’s commitment :)

So here’s the round up of the best blog posts/articles I’ve read this week…

Events / Conferences

This week saw SMX London, which sadly I couldn’t attend. Fortunately Kevin from seoptimise pulled together 41 top tips which he took away from the event, and Molly at Distilled pulled together a round up identifying the four key themes which ran through the event - nice work!

SEO

Link building is a key part of any SEO project and over at Search Engine Guide, Diane Aull is keen to remind you not to overlook your own internal linking and navigation. Wise words indeed.

Struggling to get your head around URL rewrites and 301 redirects? Fear not, dear hearts, over at SEOmoz, Jen’s  fantastic post will set you straight.

Social Media

Thinking about venturing into Social Media? Be good boys and girls and plan properly - Lisa at Outspoken Media has written a fabulous post on creating a social media plan - you’d do well to heed her advice.

Web Design & Usability

Bamboozled by web design jargon? Pop over to Smashing magazine’s site and sneak a peak at their glossary… then bookmark it so you can refer to it again (and again, and again, and again).

PPC

Still confused about quality score? It’s something I get asked about a lot. See Jon Myers’ post on Search Cowboys - he explains all and provides a potted PPC history lesson.

Aaaannnnd Finally, Friday’s Funny

Erm, well perhaps this is only funny if you watch Lost. If you don’t watch Lost, then you should – if only because you could then appreciate the brilliance of this little gem from Robert Brockway via Cracked.

Have a lovely weekend :)

 

Is there something I’ve missed? Hit up the comments…

Tags: , , , , , ,