Wednesday, November 08, 2006

reasons against opening links in a new window

Using target="_blank" in an html page means that it will not validate using the w3c standards. The w3c removed this command in strict html and strict xhtml due to:




  • Some browsers not supporting it. This is particularly true in pda's and mobile phones.

  • Most browsers now support tabbing

  • It should be up to the end user, not the website, to decide on how a link should be opened.



Whilst many websites still open external links in a new window, it is more and more becoming the industry standard to open links in the same window and allow the user to navigate back to the site because it has the information they're looking for.


Reasons against opening links in a new window include:



  1. The back button is the second most used navigation function (after hyperlinks, source: useit.com). By opening a new window means that the user will not be able to navigate back to the original website.

  2. Unless warned, most web users expect a hyperlink to load in the current window and so could confuse. Novice users and visually impaired users might not realise that a new window has opened and might struggle to switch between windows.

  3. New windows make taskbars even more cluttered and difficult to use as multiple windows are left opened.


Most users feel that they should be able to choose for themselves whether a link opens in a new window.

Friday, August 18, 2006

IE7

> For anyone who is interested Microsoft have released an IE7 Readiness
> toolkit for web developers which can be downloaded from
>
click here

Tuesday, August 08, 2006

mailers

I have just found this little site: manbuild

It seems like a nice tool for designers to create html emails without the hassle of sending them out themselves.

Web Tracker Tools

Find the oversize of your webpage and how long it will take to render. All of these tools are not 100% accurate as some of them don't take into consideration the css images.

web analyze

speed checker

To find out for sure what images IE loads, you could a tool like Fiddler to monitor the page download and see exactly what’s being downloaded. Fiddler only works with IE
fiddler

For Firefox users the Tamper Data extension Tamper

Tuesday, July 18, 2006

Thursday, July 13, 2006

Virtual PC

Microsoft has set Virtual PC (http://www.microsoft.com/windows/virtualpc/default.mspx) free. The release makes me wonder if the folks in Redmond have taken notice of Apple’s free BootCamp (http://www.apple.com/macosx/bootcamp/) or Parallel’s Desktop (http://www.parallels.com/) app. You can use Virtual PC to “run multiple operating systems at the same time on the same physical computer. Switch between virtual machines with the click of a button. Use virtual machines to run legacy applications, provide support, train users, and enhance quality assurance.” This is great news for those of us developing on Windows boxes who want to test IE 7 (or for that matter, Vista (http://www.microsoft.com/windowsvista/)) without installing the beta on a production system. It will also prove useful once the full version is out, and we want to keep a version of IE 6 handy.

Monday, May 22, 2006

styling tables

table styling
a different site with designs for tables

some are a bit ropey but others are ok

layout generator

I am never all that keen on using a predetermined layout but they are very helpful for people learning css or to use them as a start point.

layout gala has some nice and robust layouts with plenty to pick from.

Alternatively use the csscreator to automatically generate the layout that is desired.

Pop up window

greybox is a nice little javascript apllication that creates a neat pop-up window. Reminds me of the lightbox but obviously has a very different application

Javascript Scrollbars

Javascript scrollbar

A really nice way to do a scrollbar with style instead of using css overflow:auto, especailly as you can only style the bars in IE.

Thursday, May 18, 2006

photo books

I was recently show a really lovely photo book that looked like it had been purchased in a shop. It was actuallly their photos developed by my publisher

Prices start from a reasonable £7 for a softback going up to about £40 for the linen hardcover, although the posting costs are pretty steep.

Very nice for holiday snaps or a wedding gift

Wednesday, May 17, 2006

Google Introduces Four New Products

seochat

The interesting one is Google trends :-



The new product that’s most likely to cause a major stir among SEOs and advertisers, though, is Google Trends (http://www.google.com/trends). One observer described it as rather like being given the keys to Google Zeitgeist. Mayer explained that “For the first time ever, Google is making it possible to sift through billions of search queries from around the world to see what people are thinking about.”

So what exactly does it do? A user can type in a search term, or several search terms separated by commas. Hit “enter,” and you get a page with several charts. The top chart shows how many searches were conducted for that particular term, and how frequently it was mentioned in the news, over a period of time. Drop-down menus let you adjust both the time period and the region of the world focused on, while if you use multiple terms they show up in different colors. Several clickable news items are highlighted to the right; letter-coded flags on the chart indicate when they were published, so you can match up certain spikes.

That’s not all. Below the chart I just described is another one, with tabs for cities, regions, and languages. This is a bar graph that allows you to compare how frequently terms are searched for.

chart

Thursday, May 11, 2006

seo keyword suggestion tool

I am probably a little late in finding it but am now using SEO Book to find keywords for sites instead of the rather cumbersome overture

Wednesday, May 10, 2006

Design Brief

Overview
Is this a new site or redesign? If the site is a redesign how does it integrate with your other activities? Is this a complete overhaul or just a cosmetic makeover?


Aims and Objectives
What do you want to achieve by the website, e.g. is it a shop front, e-commerce site, information site etc.


Audience
Who is your intended audience – resist the temptation to say everyone as this leads to a website that satisfies nobody’s requirements.

Design Specifications
Are there any design requirements such as colours, fonts, images etc. How much text will appear on each page – maybe give example of websites you like?
List any assets that need to be supplied.


Functionality Specifications
How will your website work – maybe include a flow chart detailing how the pages interact. Are there any interactive elements, databases, specific functions: print page, email a friend, contact form etc.

Deliverables
Specify exactly what the designer must provide e.g. whole website or just templates, logos, a level of accessibility

Timetable
Specify a realistic timetable for the variable to be delivered, including time for checking and evaluation prior to launch.

Thursday, April 06, 2006

redirects

For an asp use

<%
Response.Status = "301 Moved Permanently"
Response.AddHeader "Location", "http://www.example.com/yourpage.asp"
%>

If the page is html use a javascript (if mod-rewrite is not installed)

<SCRIPT LANGUAGE="JavaScript">

<!-- Script courtesy of http://www.web-source.net - Your Guide to Professional Web Site Design and Development

window.location="http://www.yourdomain.com/";

// -->

</script>

Tuesday, April 04, 2006

Tweaking the CSS

CSS Tweak

This handy little tool takes your css file and optimises it as it reduces the files size, thus making it faster to download.

Backgrounds, lists, borders and fonts are all given the shorthand treatment, whilst zero units are removed.

White space can also be removed, along with with comments, but I think this might be going a little too far

************************************************

I have found another application call clean css which also pretty much does the same thing

Thursday, March 23, 2006

sIFR - Scalable Inman Flash Replacement

I have recently discovered sIFR and am loving it. It is basically a way of using Flash and javascript to style headers in any font the deisgner wants, and get rid of the annoying pixilation.


All of the explaintions and tutorials can be found on Mike Davidson's Website

I have also found sIFR Beauty which is a blog showcasing some of the work

Wednesday, March 22, 2006

Coding a Webpage for SEO purposes

A factor often overlooked when optimising a site for search engines is the actual coding of the pages. A well coded website will rank more highly in search engines than a poorly coded site and a high position in the search engines will be more effective then costly online advertising.

When designing or coding a website it is important to consider how it will appeal to search engines and whether it will appeal to visitors/perspective clients. When creating web pages search engines should be kept in mind but not going over the top purely for the sake of reaching top positions and losing a good user experience. Therefore a number of issues need to be taken into account:

• File Size – keeping the file size small for faster download times
• Layout – coding so that the robots read the content in the correct order (top
to bottom)
• Use of correct tags – utilising H1-H6 tags and using ASCII text
• Validation of code – validate code to W3C standards

File Size can be kept down by using style sheets instead of tables and inline style. Removing tables and instead using css for positioning makes download times faster and therefore the search engine spiders are able to find the content more easily. CSS rollovers should be used instead of javascript navigation as they take up less space and allows the search engine robots to crawl through them.

Layout of the pages should be functional for both the user and the search engine. Most search engines read from top to bottom so the things that the search engines look for in ranking a web site should be as close to the top as possible.
It is probably a good idea to have the logo as a background image so that is not before the H1 tag.


Tags should be used where possible.
Header tags H1 – H6 tags to be used for top level key words as more weight is placed on them from the search engines.
Alt tags should always be used to add associate keywords to images.
ASCII text to be used appropriately

Valid Code should always be used used and any junk text/code removed from the documents. XHTML and css shoudld be validated in accordance to W3C standards.

Links should include the most important keyword phrases within the hyperlink itself. Navigation should be ordered and structured that will make sense to the user and search engine alike.

Other things to consider are:
Title [include keywords in the title tag]
URL [have a URL with the key words in that are being targetted]
Page names [use key words with hyphens to replace spaces for the page names]
Image names [name images using keywords relating the page]
Use of capital letters [avoid the use of capital letters in the url, title and meta tags]

Thursday, March 16, 2006

How to create a css double list

HTML

------------------------------------------------------------


<div id="midsection">

<div id="col1">

<h3>Title</h3>

<ul>

<li>Link 1</li>

<li>Link 2</li>

<li>Link 3</li>

<li>Link 4</li>

<li>Link 5</li>

</ul>

</div><!-- end col1 -->




<div id="col2">

<h3>Title 2</h3>

<ul>

<li>Link 6</li>

<li>Link 7</li>

<li>Link 8</li>

<li>Link 9</li>

<li>Link 10</li>

</ul>

</div><!-- end col2 -->

</div>







CSS

------------------------------------------------------------



#midsection {float: left;

width:670px;

text-align: left;

margin: 0px;

padding: 20px 5px 5px 5px;

border-top: 1px solid #999999;

border-bottom: 1px solid #999999;

}




#col1 {

float: left;

width: 420px;

}




#col2 {

float: left;

width: 240px;

}




h3{

font:13px ITC Avant Garde Gothic,Verdana, Arial, Sans-Serif, Tahoma, Geneva;

color: #000000;

font-weight: bold;

text-align: left;

padding: 0px 0px 0px 5px

}


this can be seen on one of my sites Priority Traveller

Thursday, March 09, 2006

sticking the footer to the bottom of the page

I found this on the man in blue website. It bascially tells you how to have the footer stuck to the bottom of the page rather than just using lots of paragraph or break tags!!

http://www.themaninblue.com/writing/perspective/2005/08/29

I will be trying this out on some websites I have already made and see how it goes.

css showcases

There are lots of css showcases out there (most being duplicates of others) but here are some nice and simple ones I like to visit:

css mania - one of my favourites as they just have a screenshot and link, none of this discussion stuff!!
http://cssmania.com

css liquidA different take as this one just features fluid css designs


css vault - one of the first but since being bought has lost its touch


css beauty - another oldie but still quite a goodie

tom's screenblog not really a css showcase but a blog of nice designs


others

css thesis

css import

weekly standards

devils details

cw order

Friday, March 03, 2006

design discussions

This site discusses the trends and colours in web design
http://www.designmeltdown.com/

Thoughts and examples on web design trends
http://fadtastic.aspiramedia.com/

A magazine type design site
http://www.designorati.com/

Monday, February 13, 2006

useful colour tools

slayeroffice

colorschemer

www.meyerweb.com

snook

centerkey

behrx

useful tools

Cheet Sheets
cheet sheets for javascripts, css xhtml etc
http://www.petefreitag.com/item/455.cfm

MOZiE is a free Windows application that allows you to compare page rendering in Mozilla and Internet Explorer simultaneously.
http://www.zeit.ca/mozie/


IE Tab - Firefox Extension
https://addons.mozilla.org/extensions/moreinfo.php?application=firefox&id=1419

ColorZilla
Another firefox extension
http://www.petefreitag.com/item/228.cfm


The ACME Guide
This is the home of The ACME Guide, a comprehensive guide to building a development workstation using Apache, ColdFusion MX 7, MySQL and Eclipse.

coldfusion redirect

If you ever need to do a 301 redirect all you need is these 2 lines of Coldfusion code

<cfheader statuscode="301" statustext="Moved permanently">
<cfheader name="Location" value="http://www.kfc.com">

Note that the cfheader tag can be used to write the Coldfusion headers but needs to be the first thing on the page.

As a result its normally best to put this in the Application.cfm. file

What is Application.cfm? It’s a file which is processed by coldusion before every request for a Coldfusion page – its typically used for logging, or preventing access to pages – as well as session management. It must start with a capital A. It is not executed when requests are made for non Coldfusion pages so often you may decide to change a html site to a .cfm just so that you can make use of this functionality.</cfheader></cfheader>

New Blog

Instead of trying to find old emails and remember random peices of advice I have been given, I thought I would become all organised and enter everything interesting that I receive or learn into a blog!!