Posts Tagged ‘Web Developers’

Drop Dead British Designer

For those of you who don’t know me personally, I’ll let you in on a little secret. I’m a complete hussy for quality design. I mean honestly, some people like strip clubs and others ogle the fender of a Ferrari but for me? It’s all about the subtle details of quality design.

This week, while I was wildly clicking around looking for something completely unrelated (standards compliant xhtml) I came across a website for Oliver James Gosling, a freelance web developer in Bristol who’s got to have one of the sexiest websites I’ve seen in weeks, if not months. The piece of art came from DropStudio, another Bristol boy named David Robinson. My theory is that the recent snowstorms kept them at the office and if you look at the portfolios for either of them, creating spectacular work.

I don’t know either of them and this isn’t a paid advertisement but and so I don’t mind saying that the two of them (who seem to work together on a number of projects) do a wonderful job combine two very different disciplines, something more web professionals should keep in mind.

Web designers, design. Web developers, develop.

Lisa Dale Books

Comments Off
Helping book authors make great websites has been a passion of ours ever since designing the author publishing tool for the Authors Guild of America.

WordPress Web Sites for Charities

Over the past couple of weeks a lot of you might have noticed that I’ve put a lot of recent work into building websites and web tools for charitable organizations, charities, children’s charities and not for profits. There’s a few reasons for that. First, last December during the Christmas season I offered to donate my time to charities in return for links to my website. I  had a wonderful response to that proposition and spent most of January working with organizations who deserved great websites but lacked huge budgets.

Some of the websites your support helped included the Stan Cassidy Foundation and the Fredericton Meals on Wheels, both wonderful programs which have benefited from your contributions.

fredericton meals on wheels WordPress Web Sites for Charities imageI’d love to make 2009 a year that I can help make more of a difference for community groups, charities and not-for-profits but just like everybody else, I have to worry about keeping the lights on here at the office so if your company knows of a community focussed group you’d like to sponsor, I would love to help build a great web presence for your group at a heavily discounted rate.

In the mean time, my website has a great WordPress plugin for charities which features a fund raising thermometer you’re welcome to download and use for free. There are also at least ten great WordPress themes, all free for you to download and use for charities.

Do you want to help a local community group? Everyday I talk to wonderful designers, illustrators and web developers who are looking to help.

WordPress SEO Tips – The Title Tag

For anybody who cares about Search Engine Optimization (which you should if you own a website) WordPress is a great tool that takes care of most SEO problems by itself, the only significant oversight when they put it together was the TITLE tag.

There are few common mistakes most web designers make with regards to the TITLE tag, but WordPress in particular does some things that we should avoid. Let’s take a look at a few common mistakes and how to fix them in your own WP blog.

Duplicate Titles

Each TITLE tag should be unique for your website, with rich text describing the content of your blog. WordPress makes the mistake of repeating the blog title every time in the post, along with the category and then the title. For example:

thisismyurl.com | WordPress | WordPress SEO Tips – The Title Tag

That’s a surefire way to make Google think that you’re repeating the same content. What you should have for a page title is:

WordPress SEO Tips – The Title Tag

Except in the categories which should be:

thisismyurl.com | WordPress Archives

On the homepage, simply:

thisismyurl.com

If you want, you can include the site description if it’s short enough but remember to keep your site titles below 65 characters (including spaces).

What about your site name? If you really feel the need to include it in your page title, including it at the end (

WordPress SEO Tips – The Title Tag | thisismyurl.com 

) is the best.

65 Characters

Google only reads the first 65 characters of your title for it’s index, if you’re going to post longer titles you risk having them cut off in the index.

Keywords in the Title

A few years ago, there was a trend among web developers to stuff as many keywords as possible into the title. For example:

WordPress SEO Tips – The Title Tag SEO WordPress Optimizing Search Engine Optimization

Frankly, Google hires some pretty smart people so if you honestly think stuffing your titles with keywords is a good idea, you should think again. More importantly, repeating the same word or words in your title doesn’t make a difference to search engines. On the other hand, if you really wanted to make an impact try using a useful title such as:

WordPress SEO Tips – The Title Tag for Search Engine Optimization

Fixing WordPress

So now that you know a few new (and hopefully interesting) facts about how Search Engines will index your WordPress website, how do you fix it? The process is surprisingly simple, open your header.php file and change remove the existing title tag, to replace it with the code below:

<title><?php wp_title(”); ?> <?php if ( !(is_404()) && (is_single()) or (is_page()) or (is_archive()) ) { ?> | <?php } ?> <?php bloginfo(‘name’); ?></title>