<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Art Dimension Blog &#187; web design</title>
	<atom:link href="http://blog.artdimension.ca/blog/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.artdimension.ca/blog</link>
	<description>Graphic design and Web development</description>
	<lastBuildDate>Wed, 28 Dec 2011 23:22:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>How to convert google font for website</title>
		<link>http://blog.artdimension.ca/blog/2011/11/how-to-convert-google-font-for-website/</link>
		<comments>http://blog.artdimension.ca/blog/2011/11/how-to-convert-google-font-for-website/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 17:20:36 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=283</guid>
		<description><![CDATA[At the moment, web fonts are all the buzz. Unfortunately, achieving cross browser support is not easy. In this tutorial, I’ll show you how to get custom fonts working in all of the major browsers. Internet Explorer was the first browser to support @font-face, going all the way back to IE4. They still support it [...]]]></description>
			<content:encoded><![CDATA[<p>At the moment, web fonts are all the buzz. Unfortunately, achieving cross browser support is not easy. In this tutorial, I’ll show you how to get custom fonts working in all of the major browsers.</p>
<p><a href="http://blog.artdimension.ca/blog/wp-content/uploads/2011/11/formats.png"><img class="alignleft" title="formats" src="http://blog.artdimension.ca/blog/wp-content/uploads/2011/11/formats.png" alt="" width="370" height="121" /></a>Internet Explorer was the first browser to support @font-face, going all the way back to IE4. They still support it the same way they did then: Using a proprietary format called EOT, or Embedded Open Type. EOTs font have restrictions in place in order to try to solve the licensing problem, for example EOT files can be tied to a particular domain so that other sites cannot hotlink to your font files, or download them for their own use. They also have support for font subsetting, or including only the characters that you need in your page. This can drastically reduce file size, which is always important when designing anything that needs to be downloaded over the internet. EOT files are a solution to the licensing problem, but some people do not like the fact that they contain a form of DRM. There have been efforts to create a specific web font format that all browsers would support, and would solve the licensing problem, but like any new web standard, these initiatives would probably take a long time to be finalized and implemented in all browsers. Rather than waiting until then, you can actually use @font-face today with a bit of work. Below is a list of the font formats supported by various web browsers.</p>
<p><span class="Apple-style-span" style="font-size: 20px; font-weight: bold;">Step One: Obtain Your Font</span></p>
<p>Because of licensing concerns, you cannot simply embed any font on your website. Your best bet is to get a free font. There are lots of great free fonts out there, and lots of sites have lists of free fonts that you can use with @font-face. The site I like for getting free fonts is <a href="http://www.fontex.org/">fontex.org</a> . They have all kinds of fonts, and it is pretty likely that you’ll find one that suits your design there.</p>
<p><a title="google fonts" href="http://www.google.com/webfonts#ChoosePlace:select">Free Google web fonts </a></p>
<h2>Step Two: Convert Your Font</h2>
<p>Because of the diversity of formats supported by the popular browsers, you’ll need to create at least three font files in order to get support cross browser. First you need a TTF or OTF font for Firefox 3.5 and Safari. Fortunately, most of the free fonts that you will come across will be in one of these formats. Second you will need an EOT file for Internet Explorer. Microsoft has a tool called <a href="http://www.microsoft.com/typography/WEFT.mspx">WEFT</a>  that can be used to create EOT files, but it was created in Windows 98 days, and has an awful user interface, and may not even run on your computer. Luckily, a hacker has reverse engineered the EOT font format, and published a command line tool called <a href="http://code.google.com/p/ttf2eot/">ttf2eot</a> . Now don’t fret about having to use the command line, because you don’t have to. There are a few online tools that have created graphical user interfaces for ttf2eot. The one that I’ve found works the best, is the Font Squirrel <a href="http://www.fontsquirrel.com/fontface/generator">@font-face Kit Generator</a> . As it’s name implies, it is a tool created specifically for creating fonts for @font-face, and it can generate a number of formats including EOT. All you need to do, is upload your font file to their service, select your output formats and hit download. A folder with all of your converted font files, and a demo page will be downloaded to your computer once Font Squirrel is done converting your fonts.</p>
<p><a title="font face generator" href="http://www.fontsquirrel.com/fontface/generator"><img class="alignnone size-full wp-image-285" title="FontSquirrel" src="http://blog.artdimension.ca/blog/wp-content/uploads/2011/11/FontSquirrel.png" alt="" width="600" height="421" /></a></p>
<h2><a name="step4"></a>Step Four: The CSS</h2>
<p>OK. We should now have all of the font types that you need to get cross browser support. Now, we just need to write the CSS to actually embed the fonts. Building on the work of Paul Irish and his <a href="http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/">bulletproof @font-face Syntax</a> , here is the code:</p>
<div>
<div>
<pre>@font-face {
    font-family: 'Comfortaa Regular';
    src: url('Comfortaa.eot');
    src: local('Comfortaa Regular'),
         local('Comfortaa'),
         url('Comfortaa.ttf') format('truetype'),
         url('Comfortaa.svg#font') format('svg');
}</pre>
</div>
</div>
<p>This code links to all of the different font formats that we have created, and will make the font work cross browser.</p>
<p>To use the font that you just declared in your CSS, you just need to reference it like a normal font. The name that you reference corrisponds to the font-family name that you specified in your @font-face declaration. <strong>Remember to always provide a fallback web-safe font</strong> for people using really old browsers, otherwise they will end up with their browser’s default font. For example:</p>
<div>
<div>
<pre>h1, p {
    font-family: 'Comfortaa Regular', Helvetica, Arial, sans-serif;
}</pre>
</div>
</div>
<h2>Examining the Appearance</h2>
<p>Great! You now have your font working in all browsers. Now how does it look? Well, that depends on what operating system you are using. On Mac OS X, the fonts will look pretty good. On older versions of Windows, however, they might not look so hot. This is because Microsoft’s font rendering engine does not antialias (smooth) the edges of the fonts it renders. This produces a terrible look, which was recently<a href="http://www.webmonkey.com/blog/BoingBoing_s_Redesign_Uncovers_the_Dark_Side_of_Web_Fonts">complained about by the users of Boing-Boing</a> , who said that the font used in their redesign looked “awful”. In Windows Vista, Microsoft enabled a feature that had been in XP but not enabled by default, called<a href="http://en.wikipedia.org/wiki/ClearType">ClearType</a> , which aims to make their font rendering look nicer. There is a way to enable the feature in Windows XP, but most users have not. Thus, you as the designer of your page need to make the decision about whether to use custom fonts. In my own testing, custom fonts at small font sizes looked just fine. At larger font sizes that you might use for large headings on your site, the fonts didn’t look so good. In general, the more curvy the font, the more jagged edges you will see. If you have a large proportion of users using IE on your site, you are better off using something like <a href="http://wiki.github.com/sorccu/cufon/about">Cufon</a>  for the large headings on your site, and @font-face for the smaller text. Some fonts will look just fine at larger font sizes – it depends on the font. So do some testing on older Windows computers before you put your site live, and make that decision. If you need to use Cufon, there is a <a href="http://net.tutsplus.com/videos/screencasts/the-easiest-way-to-use-any-font-you-wish/">great tutorial right here on Nettuts</a>  on how to use it.</p>
<div><a href="http://blog.artdimension.ca/blog/wp-content/uploads/2011/11/browsers.png"><img class="alignnone size-full wp-image-286" title="browsers" src="http://blog.artdimension.ca/blog/wp-content/uploads/2011/11/browsers.png" alt="" width="600" height="328" /></a></div>
<h2></h2>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2011/11/how-to-convert-google-font-for-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Website for sale!</title>
		<link>http://blog.artdimension.ca/blog/2010/03/website-for-sale/</link>
		<comments>http://blog.artdimension.ca/blog/2010/03/website-for-sale/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 22:26:02 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[website value]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=109</guid>
		<description><![CDATA[Are you looking to expand your portfolio? Maybe you want a fresh start in a new niche? Or maybe your website isnt the type of website that generates sales &#8230; Maybe you dont even own your own website yet &#8230; Mesure your website cost by http://bizinformation.org/us/. Very useful tool for North American web developers! My [...]]]></description>
			<content:encoded><![CDATA[<p>Are you looking to expand your portfolio? Maybe you want a fresh start in a new niche? Or maybe your website isnt the type of website that generates sales &#8230; Maybe you dont even own your own website yet &#8230;<br />
Mesure your <strong>website cost</strong> by <a href="http://bizinformation.org/us/">http://bizinformation.org/us/</a>. Very useful tool for North American <strong>web developers</strong>!</p>
<div style="background: url(http://bizinformation.org/images/widget/button_back.gif) no-repeat; width: 130px; height: 53px;">
<p style="margin: 0; line-height: 14px; padding: 4px 0 0 0; border: 0; text-align: center;"><span style="color: #222; float: none; font-size: 11px;"><a style="display: block; text-decoration: none; color: #222;" href="http://bizinformation.org/ca/">My site is worth</a></span><span style="float: none; font-size: 14px;"><a style="line-height: 18px; text-decoration: none; display: block;" title="artdimension.ca" href="http://bizinformation.org/ca/www.artdimension.ca"><strong>$21,674.43</strong></a></span><span style="float: none; font-size: 10px;"><a style="display: block;" href="http://bizinformation.org/">Your website value?</a></span></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2010/03/website-for-sale/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>How Much Does a Web Page Cost?</title>
		<link>http://blog.artdimension.ca/blog/2009/08/how-much-does-a-web-page-cost/</link>
		<comments>http://blog.artdimension.ca/blog/2009/08/how-much-does-a-web-page-cost/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 14:33:21 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[web page cost]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=78</guid>
		<description><![CDATA[Most clients would look at this and say, &#8220;Hey, it&#8217;s just a page! That should take about five hours to build, right?&#8221; Not even close. Here&#8217;s why. The team that builds this page is made up of the usual suspects: A &#8220;Web strategist&#8221; who might be an owner-level person offering strategic guidance: $80,000 a year [...]]]></description>
			<content:encoded><![CDATA[<p>Most clients would look at this and say, &#8220;Hey, it&#8217;s just a page! That should take about five hours to build, right?&#8221; Not even close. Here&#8217;s why. The team that builds this page is made up of the usual suspects:</p>
<ul>
<li>A &#8220;Web strategist&#8221; who might be an owner-level person offering strategic guidance: $80,000 a year</li>
<li>A &#8220;senior producer&#8221; who&#8217;s the account manager: $54,000 per year</li>
<li>A &#8220;creative director&#8221; who leads the creative development: $80,000 per year</li>
<li>An &#8220;art director &#8221; who does the heavy design lifting; $61,000 per year</li>
<li>A &#8220;Web designer&#8221; who puts the page together: $48,000 per year</li>
<li>A &#8220;Web developer&#8221; who&#8217;s really the programmer who makes the form work and integrates it with the database: $60,000 per year</li>
<li>A &#8220;copywriter&#8221; who writes the copy for the page: $65,000 per year.</li>
</ul>
<p>Those numbers come from the AIGA, and the team seems like a reasonable mix to get the job done. The salaries seem low to me but represent median salaries across the country for these positions. Your mileage may vary.</p>
<p>How much do these people need to be billed out at to make a decent profit? If we assume the average reasonable billable time for people is 1,428 hours per year (the Tortorella article offers detail), agency overhead amounts to about 67 percent of salary (again, a reasonable number according to Tortorella), and a 25 percent profit is reasonable (an assumption, but a percentage many of us shoot for), then following billing rates make sense for the positions above:</p>
<ul>
<li>Web strategist: $107.56 per hour</li>
<li>Senior producer: $49.85 per hour</li>
<li>Creative director: $73.85 per hour</li>
<li>Art director: $56.31 per hour</li>
<li>Web designer: $44.31 per hour</li>
<li>Web developer: $55.38 per hour</li>
<li>Copywriter: $60.00 per hour</li>
</ul>
<p>These numbers seem conservative, but they&#8217;re what we&#8217;ve got for this exercise. We&#8217;ll assume an average hourly rate of $63.89, just to keep things simple and conservative.</p>
<p>Now let&#8217;s look at the tasks necessary to get this single page completed. There&#8217;s the concept phase, when the page is planned. We need account management of the project, page design, page production/layout, copywriting for the page, inquiry form production, and the programming that goes into the form. Makes sense, right?</p>
<p>There&#8217;s not enough space here to go into all the details of individual tasks and hours, but let&#8217;s assume these are reasonable numbers for the tasks if you include client meetings, a couple revisions, and the usual back-and-forth that always takes place:</p>
<ul>
<li>5 hours of creating the concept = $319.47</li>
<li>5 hours of account management = $319.47</li>
<li>6 hours of design = $383.36</li>
<li>7 hours of production/layout = $447.26</li>
<li>12 hours of copywriting = $766.72</li>
<li>7.5 hours of form production = $479.20</li>
<li>4 hours of form programming = $255.57</li>
<li>46.5 total hours x $63.89/hour = $2,971.05</li>
</ul>
<p>There you go. Nearly $3,000 for <strong>a page</strong> and about nine times the number of hours the client assumed when they first heard about the project. Amazing, huh? You may quibble with some assumptions, but I&#8217;ve tried to be pretty conservative. The hourly rates are probably about half of what most companies I&#8217;ve encountered actually charge. Heck, when&#8217;s the last time you ran into a creative director at a midsized to large agency who only makes $80,000? If you have, please have him contact me. I may have a job for him.</p>
<p>The bottom line is Web development is expensive, involves lots of people, lots of management, and lots of back-and-forth with the client. Except in the rarest of cases, none of us ever builds just pages but complicated applications and Web presences that often involve hundreds of pages, databases, multimedia, tons of content, multiple forms, and lots and lots of client meetings and approvals. Unfortunately, few of us walk our clients through really understanding the process (and the hours) that make it all happen</p>
<p style="text-align: left;">The next time you encounter someone with sticker shock when handing him an estimate, don&#8217;t dismiss him. Walk him through what needs to be done and see if he still thinks that page can be whipped out in a couple of hours. It&#8217;s an educational opportunity that shouldn&#8217;t be missed.</p>
<p style="text-align: right;"><em>By </em><em><a href="http://www.clickz.com/3622757" target="_blank">Sean Carton</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2009/08/how-much-does-a-web-page-cost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good times with inbound links</title>
		<link>http://blog.artdimension.ca/blog/2008/10/good-times-with-inbound-links/</link>
		<comments>http://blog.artdimension.ca/blog/2008/10/good-times-with-inbound-links/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 18:05:07 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[Google tools]]></category>
		<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[Web design and promotion]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[inbound links]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=54</guid>
		<description><![CDATA[Inbound links are links from pages on external sites linking back to your site. Inbound links can bring new users to your site, and when the links are merit-based and freely-volunteered as an editorial choice, they&#8217;re also one of the positive signals to Google about your site&#8217;s importance. Other signals include things like our analysis [...]]]></description>
			<content:encoded><![CDATA[<p>Inbound links are links from pages on external sites linking back to your site. Inbound links can bring new users to your site, and when the links are merit-based and freely-volunteered as an editorial choice, they&#8217;re also one of the positive signals to Google about your site&#8217;s importance. Other signals include things like our analysis of your site&#8217;s content, its relevance to a geographic location, etc. As many of you know, relevant, quality inbound links your PageRank (one of many factors in our <a href="http://www.google.com/corporate/tech.html">ranking algorithm</a>). And quality links often come naturally to sites with compelling content or offering a unique service.</p>
<p><strong>How do these signals factor into ranking?</strong></p>
<p>Let&#8217;s say I have a site, example.com, that offers users a variety of unique website templates and design tips. One of the strongest ranking factors is my site&#8217;s content. Additionally, perhaps my site is also linked from three sources &#8212; however, one inbound link is from a spammy site. As far as Google is concerned, we want only the two quality inbound links to contribute to the PageRank signal in our ranking.</p>
<p>Given the user&#8217;s query, over 200 signals (including the analysis of the site&#8217;s content and inbound links as mentioned above) are applied to return the most relevant results to the user.</p>
<p style="text-align: center"><a href="http://4.bp.blogspot.com/_o4FYYhUbN0o/SO77sRaCIAI/AAAAAAAAABw/lom1WbkfmXs/s1600-h/links-week-day-4.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img border="0" src="http://4.bp.blogspot.com/_o4FYYhUbN0o/SO77sRaCIAI/AAAAAAAAABw/lom1WbkfmXs/s400/links-week-day-4.png" style="cursor: pointer" id="BLOGGER_PHOTO_ID_5255414553193357314" /></a></p>
<p><strong>So how can you engage more users and potentially increase merit-based inbound links?</strong></p>
<p>Many webmasters have written about their success in growing their audience. We&#8217;ve compiled several ideas and resources that can improve the web for all users.</p>
<blockquote><p><em>Create unique and compelling content on your site and the web in general</em></p>
<ul>
<li>Start a blog: make videos, do original research, and post interesting stuff on a regular basis. If you&#8217;re passionate about your site&#8217;s topic, there are lots of great avenues to engage more users.If you&#8217;re interested in blogging, see our <a href="http://www.google.com/support/webmasters/">Help Center</a> for <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=70950&amp;topic=15260">specific tips for bloggers</a>.</li>
<li>Teach readers new things, uncover new news, be entertaining or insightful, show your expertise, interview different personalities in your industry and highlight their interesting side. Make your site worthwhile.</li>
<li>Participate thoughtfully in blogs and user reviews related to your topic of interest. Offer your knowledgeable perspective to the community.</li>
<li>Provide a useful product or service. If visitors to your site get value from what you provide, they&#8217;re more likely to link to you.</li>
<p>For more actionable ideas, see one of my favorite <a href="http://www.usatoday.com/tech/products/services/2008-06-22-google-search-engine-optimization_N.htm">interviews with Matt Cutts</a> for no-cost tips to help increase your traffic. It&#8217;s a great primer for webmasters. (Even before this post, I forwarded the URL to many of my friends. <img src='http://blog.artdimension.ca/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </ul>
<p><em>Pursue business development opportunities</em></p>
<blockquote><p>Use <a href="https://www.google.com/webmasters/tools/docs/en/about.html">Webmaster Tools</a> for &#8220;Links &gt; Pages with <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=55281">external links</a>&#8221; to learn about others interested in your site. Expand the web community by figuring out who links to you and how they&#8217;re linking. You may have new audiences or demographics you didn&#8217;t realize were interested in your niche. For instance, if the webmasters for example.com noticed external links coming from art schools, they may start to engage with the art community &#8212; receiving new feedback and promoting their site and ideas.</p>
<p>Of course, be responsible when pursuing possible opportunities in this space. Don&#8217;t engage in mass link-begging; no one likes form letters, and few webmasters of quality sites are likely to respond positively to such solicitations. In general, many of the business development techniques that are successful in human relationships can also be reflected online for your site.</p></blockquote>
</blockquote>
<p>Now that you&#8217;ve read more information about <a href="http://googlewebmastercentral.blogspot.com/2008/10/importance-of-link-architecture.html">internal links</a>, <a href="http://googlewebmastercentral.blogspot.com/2008/10/linking-out-often-its-just-applying.html">outbound links</a>, and inbound links (today&#8217;s post <img src='http://blog.artdimension.ca/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , we&#8217;ll see you in the blog comments! Thanks for joining us for <a href="http://googlewebmastercentral.blogspot.com/2008/10/links-information-straight-from-source.html">links week</a>.</p>
<p><span class="byline-author">Written by Maile Ohye, Developer Programs Tech Lead</span></p>
<p><span class="byline-author"><a target="_blank" href="http://tools.seobook.com/rank-checkers/seobook/" title="check your rank">Check your rank</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2008/10/good-times-with-inbound-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How important is submitting sitemap to google?</title>
		<link>http://blog.artdimension.ca/blog/2008/10/how-important-is-submitting-sitemap-to-google/</link>
		<comments>http://blog.artdimension.ca/blog/2008/10/how-important-is-submitting-sitemap-to-google/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 18:55:35 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[Google tools]]></category>
		<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[Web design and promotion]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[sitema generator]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=53</guid>
		<description><![CDATA[Years ago, getting back links to a website was the most important factor in SEO, but now, that is not the only important factor. This article explains the use of sitemap in SEO as an essential factor in assisting web crawlers to navigate a website.Here are some hallmarks of a good site map, which helps [...]]]></description>
			<content:encoded><![CDATA[<p><span class="Heading">Years ago, getting back links to a website was the most important factor in SEO, but now, that is not the only important factor. This article explains the use of sitemap in SEO as an essential factor in assisting web crawlers to navigate a website.</span><span class="Heading">Here are some hallmarks of a good site map, which helps visitors at finding information quickly on your web site</span><span class="Heading"></span><span class="Heading"></p>
<ul class="withbullets">
<li>The site map should be the simplest page on your web site.</li>
<li>Do not give a fancy name to the site map link such as &#8220;Web Site Tree&#8221; &#8211; keep it as &#8220;Site map&#8221;, this way your visitors understand immediately what you mean.</li>
<li>You should always avoid &#8220;dynamic&#8221; site maps. Those in which the visitors have to &#8220;work&#8221; their way to get hold of information. Remember, the reason visitors comes to a site map page is because they are lost. To make them work again for something that you can display as a simple static link will just kill the purpose of having a site map.</li>
<li>If the site map is list of text links, be sure to use the TITLE attribute of the anchor tag and include keywords inside it.</li>
<li>It is a good idea to put a sentence describing the page contents below the link for that page on a site map.</li>
<li>A site map should not be the primary navigation on your web site it should complement it.</li>
<li>A link to the site map page is very important and all pages should carry this link. The site map link can be included with other links in the main menu on your web site or placed at a section on the web page from which is it clearly visible.</li>
<li>Other important aspects on a web site should complement site maps. For example, the <a href="http://www.webdevelopersnotes.com/tips/html/link_styles_in_internet_explorer.php3" title="Link styles in Internet Explorer">link color</a> for visited links should be different from that of non-visited links so that visitors understand which pages they have already seen and thus, save time.</li>
</ul>
<p zmxAD="0" r6OAM="0">Search Engine Optimization. A lot of people are clamoring to know exactly what it is. SEO is the process of enhancing the presence and visibility of a website on search engine listings. Not only is it a process, it is about the <a href="http://sitemap.xmlecho.org" onmouseout="adlinkMouseOut(event,this,0);" style="position: static; text-decoration: underline! important" title="Site map gemerator" onmouseover="adlinkMouseOver(event,this,0);" id="KonaLink0" oncontextmenu="return false;"><font color="#aa8d01" style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: static"><span style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: relative" class="kLink">tool</span></font></a> required to make the enhancement happen. There are two main types of search engine optimization:</p>
<ul>
<li zmxAD="0" r6OAM="0">On page Optimization</li>
<li zmxAD="0" r6OAM="0">Off Page Optimization</li>
</ul>
<p zmxAD="0" r6OAM="0">When SEO was in its infancy, getting back links to a site was the most important factor. In fact, many books and articles written on the subject will still tell people that getting back links is the only proper way to optimize a website. Back links with proper anchor text, of course.</p>
<p zmxAD="0" r6OAM="0">After search engine optimization has a chance to mature, <a target="_blank" href="http://www.artdimension.ca" title="SEO specialists"><font color="#aa8d01" style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: static"><span style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: relative" class="kLink">SEO </span><span style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: relative" class="kLink">specialists</span></font> </a>became aware that using only back links is not at all the best way to optimize a site. In fact, if an SEO is only creating back links, the site is not getting optimized.</p>
<p zmxAD="0" r6OAM="0">In On page <font color="#aa8d01" style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: static"><span style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: relative" class="kLink">site </span><span style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: relative" class="kLink">optimization</span></font>, there are techniques and tools that are related to your own website and in OFF page optimization, there are items which are related to the other websites. In On page the old technique was Meta Tag Optimization, appropriate content, Alt tag optimization, proper navigation for the website and much more activities through which changes were made to the website, itself. In OFF page optimization, only back links were created.</p>
<p zmxAD="0" r6OAM="0">Today, optimization is a little bit different. While usimg the old techniques are still appropriate, creating a Sitemapcan be added to the list. Sitemap is something that came in existence a few years ago.</p>
<p zmxAD="0" r6OAM="0">A Sitemap is a graphical representation of the architecture of a website. There are two kinds of site maps. The first is used to assist visitors to a site to navigate the site and the second is done in <a target="_top" href="http://www.webupon.com/Marketing/Why-is-a-Sitemap-Important-to-SEO.70253#" onmouseout="adlinkMouseOut(event,this,3);" onclick="adlinkMouseClick(event,this,3);" style="position: static; text-decoration: underline! important" onmouseover="adlinkMouseOver(event,this,3);" id="KonaLink3" oncontextmenu="return false;" class="kLink"><font color="#aa8d01" style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: static"><span style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: relative" class="kLink">XML</span></font></a>. XML Sitemaps, usually called Sitemap with a capital &#8220;S&#8221;, are used by Goggle to gather information about the site.</p>
<p zmxAD="0" r6OAM="0">Sitemap is especially important if your site:</p>
<ul>
<li zmxAD="0" r6OAM="0">Has <font color="#aa8d01" style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: static"><a target="_blank" href="http://www.searchengineguide.com/jill-whalen/optimizing-dynamic-content-for-search-engines.php" title="dynamic page search enginee optimization"><span style="font-weight: 400; font-size: 12px; color: #aa8d01! important; border-bottom: #aa8d01 1px solid; font-family: Verdana, Arial, Helvetica, sans-serif; position: relative; background-color: transparent" class="kLink">dynamic </span><span style="font-weight: 400; font-size: 12px; color: #aa8d01! important; border-bottom: #aa8d01 1px solid; font-family: Verdana, Arial, Helvetica, sans-serif; position: relative; background-color: transparent" class="kLink">content</span></a></font></li>
<li zmxAD="0" r6OAM="0">Has pages with a lot of flash or AJAX</li>
<li zmxAD="0" r6OAM="0">Is new and doesn’t have many links</li>
<li zmxAD="0" r6OAM="0">Has a lot of archived pages that are not linked well, or not at all</li>
</ul>
<p zmxAD="0" r6OAM="0">The use of Sitemap becomes doubly important if the site has pages that can only be accessed through <font color="#aa8d01" style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: static"><span style="font-weight: 400; font-size: 12px; color: #aa8d01! important; font-family: Verdana, Arial, Helvetica, sans-serif; position: relative" class="kLink"><a target="_blank" href="http://www.likno.com/?gclid=CJGQqJOyopYCFQNfFQodbQxz5w" title="Free site map generator">user</a></span></font> entry. Sitemap will assist web crawlers in finding and accessing the pages.</p>
<p><a target="_blank" href="http://www.sitemapdoc.com/" title="Google Sitemap generator">SitemapDoc &#8211; Google Sitemap Generator and Editor</a><br />
<a target="_blank" href="http://www.rssfeedsgenerator.com/" title="rss feed generator">RSS Feed generator</a></p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2008/10/how-important-is-submitting-sitemap-to-google/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Learns Flash</title>
		<link>http://blog.artdimension.ca/blog/2008/10/google-learns-flash/</link>
		<comments>http://blog.artdimension.ca/blog/2008/10/google-learns-flash/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 20:14:18 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=51</guid>
		<description><![CDATA[Since Flash was created SEO&#8217;s have had nothing but trouble with people whose sites are made purely of flash or if the site in question included a lot of flash content. The reason the trouble arises is due to Adobe Flash&#8217;s inability to be properly indexed by search engines but to the joy of web-designers [...]]]></description>
			<content:encoded><![CDATA[<p>Since <a href="http://en.wikipedia.org/wiki/Adobe_Flash" title="Flash is a vector-based graphic technology used to create interactive presentations." class="glossarylink" target="_blank">Flash</a> was created SEO&#8217;s have had nothing but trouble with people whose sites are made purely of flash or if the site in question included a lot of flash content. The reason the trouble arises is due to Adobe Flash&#8217;s inability to be properly indexed by search engines but to the joy of web-designers this problem may be finally (or at least in part) coming to end.</p>
<p>Google have recently been working closely with Adobe to create a cleaner and more in-depth search algorithm that utilises Adobe&#8217;s Flash Player so that it can <a href="http://www.virezinteriors.com/index.html" title="A search engine's index is the fully searchable database of websites that it has assesed via its spidering algoritms." class="glossarylink">Index</a> all the textual content and links in a Flash app (yes so that means flash menu&#8217;s will work! *gasps*). The immediate problems SEO&#8217;s have always had when it comes to flash menu&#8217;s in particular is that the site&#8217;s other pages don&#8217;t get indexed, since the menu doesn&#8217;t get indexed the links to the rest of the site won&#8217;t get indexed so in essence Google doesn&#8217;t know there is any more to the site than the homepage. But thanks to this advancement in the search <a target="_blank" href="http://nsitlounge.in/bb/index.php?showtopic=3819" title="Spiders are the bits of software used by search engines to read your website during indexing.  " class="glossarylink">Spiders</a> website owners will now be able to keep their flashy shiny menu bars and boxes (although the images won&#8217;t be indexed, yet) but of course this hasn&#8217;t solved everyone&#8217;s problems. Unfortunately for people who have completely flash-driven sites you&#8217;re still unfortunately going to be kicking and screaming for website rankings, maybe not as much as you where before, but still screaming.</p>
<p>The main problem with completely flash driven sites is that flash is still one application, on one page, on one site; Google simply can&#8217;t determine links within a flash application. For example, if you have a flash site which has a menu with say, Home, About Us and Contact Us on it. If you click the About Us <a href="http://www.virezinteriors.com/index.html" title="A link is a clickable piece of text or image that reloads a browser window with a new webpage or fragment." class="glossarylink">Link</a> on the app the application will change its display to the &#8216;About Us&#8217; page, you&#8217;ll also notice that the <a href="http://www.virezinteriors.com/index.html" title="A URL is a reference to a resources on the internet by location, e.g. a web address." class="glossarylink">URL</a> in your browser is still the same. This is essentially because in the eyes of the web you haven&#8217;t gone <em>anywhere</em>, all you&#8217;ve done is tell a program to change what it&#8217;s currently displaying.</p>
<p>This is what creates the problem for Google, the spider sees that page as a single entity the only difference is that Google will now read every piece of text that&#8217;s in that flash file and consider everything it finds the content of that sole page. Which means if you&#8217;ve got an enormous flash site with a lot of text then you&#8217;re going to have one seriously over-packed and unfocussed page which isn&#8217;t particularly good for <a href="http://www.build4ucontractors.com" title="SEO is an abbreviation of the term Search Engine Optimization." class="glossarylink">SEO</a> on it&#8217;s own unless you&#8217;re trying to rank for one of those unbearable &#8216;get rich quick&#8217; schemes.</p>
<p>Summary, this is definitely going to make designers lives easier and ensure that people with flash navigation will actually be spidered properly which will benefit a lot of sites. I&#8217;m just hoping that these new advancements in flash-indexing continue and advise everyone to wait before going flash crazy.</p>
<p>(I decided to do a couple of searches for <a target="_blank" href="http://i10.photobucket.com/albums/a141/razielheart/googleflashindexing.jpg">.swf files on Google</a> and it seems to be working in a relatively ordered manner. Unfortunately people&#8217;s programs often haven&#8217;t got the best text to start off on such as &#8216;video title here&#8217; and such but it&#8217;s good to see it working.)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2008/10/google-learns-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design It Yourself Or Hire A Pro ?</title>
		<link>http://blog.artdimension.ca/blog/2008/05/design-it-yourself-or-hire-a-pro/</link>
		<comments>http://blog.artdimension.ca/blog/2008/05/design-it-yourself-or-hire-a-pro/#comments</comments>
		<pubDate>Fri, 09 May 2008 14:06:20 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[Web design and promotion]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[creative design]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=34</guid>
		<description><![CDATA[Whether you should design that website yourself or hire a professional web designer depends on several very important factors. One of the most important things to consider is the level of expertise that you or your employees have in the necessary web technology needed to create an attractive, professional looking website that functions the way [...]]]></description>
			<content:encoded><![CDATA[<p>Whether you should design that website yourself or hire a professional web designer depends on several very important factors. One of the most important things to consider is the level of expertise that you or your employees have in the necessary web technology needed to create an attractive, professional looking website that functions the way you want it to be. The decision whether or not to do it yourself comes down to your skill levels, the features you want or need, the image you want to project for your web site and the amount of time you have to devote to building the website. </p>
<p>Some of the necessary skills to design and build a website are: </p>
<p>•HTML knowledge – some basic knowledge is necessary but good web design software can help.<br />
•Artistic ability &#8211; a good eye for color and generally good taste are necessary for a web designer to create an attractive web site.<br />
•Graphic software expertise – some knowledge is necessary to produce attractive clean photos and site graphics. It is also needed  to optimize the pictures to the smallest possible file size for quick loading.<br />
•Navigation Expertise &#8211; Understanding the functionality of website navigation design and implementation is a critical skill.<br />
•Programming – you could possibly need CGI, JavaScript or database programming to add interactive web pages or integrate it with an online database.<br />
•Marketing and business experience – whether you are building a personal website, or a business website, there are some major business and marketing aspects that need to be taken into consideration right from the beginning deisgn stage of the website.</p>
<p>What if I Can’t Do All of That ? </p>
<p>If you don’t have either the time or the skills needed to build your own website, you can hire a professional to do all or part of it for you. A good place to find a professional web designer is one of the many freelance jobs websites available. These freelance job boards allow you to hire individuals with the expertise you need: web designers, programmers, SEO specialist, copywriters and more. It can be one person or an entire team of individuals. Alternately, you can hire a local web design firm. Freelancers are usually cheaper because many of them live in countries where there is a 5:1 ration in salaries. That means $1 in the US is the equivalent of $5 in their country. So, paying them $5 an hour is like paying someone in the US $25 an hour, which is the minimum price you can hire people with the necessary knowledge. </p>
<p>Content writers who are native English speakers charge from $0.05 per word and up. Non-native English speakers can be hired for around $0.02 per word. But if your website is in English, you probably want to hire a native English speaker to write your content. </p>
<p>Make sure you communicate to the web designer, web developer or copywriter you hire exactly what you need to achieve. A good website designer understands how to build internet marketing into the site design to make it search engine friendly. </p>
<p>What does outsourcing cost ? </p>
<p>For a simple five or six page website, expect to pay anywhere between $100 for just the web page design and $1,500 for the entire site with graphics and content. For a more complex interactive website you may pay from $500 for just the programming to $10,000 and up for the entire website. </p>
<p>There is all a cost in your time as well. You will need to manage the project: writing the project specification, spending time writing emails to the freelancer, doing some quality assurance testing, etc. In some cases you will find that developing a website in-house can be cheaper then outsourcing it. </p>
<p>Remember, it’s not always about the money. If you already have an established company brand, you probably want to seriously consider hiring a professional web designer to be certain that you maintain your brand and present it professionally on your website. </p>
<p>Summary </p>
<p>The decision whether to hire a professional web designer or to build the site yourself depends on what skills you have, how much time you can spare and really whether or not you want to do the work yourself. </p>
<p>About the Author:<br />
Warren Baker is an Internet business consultant for WebDesigners123.</p>
<p>http://articles.webdesigners123.com/design_it_yourself_or_hire_pro.php</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2008/05/design-it-yourself-or-hire-a-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Communicating Your Needs to Your Web Designer</title>
		<link>http://blog.artdimension.ca/blog/2008/04/communicating-your-needs-to-your-web-designer/</link>
		<comments>http://blog.artdimension.ca/blog/2008/04/communicating-your-needs-to-your-web-designer/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 22:18:00 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[communicating needs]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web designer]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=28</guid>
		<description><![CDATA[Communicating with a web designer can be the most difficult part of the hiring process because you and the web designer don’t speak the same language when talking about the details of a website. This article explains how to get your ideas across to the web designer you want to hire. Ok, so you’ve decided [...]]]></description>
			<content:encoded><![CDATA[<p>Communicating with a web designer can be the most difficult part of the hiring process because you and the web designer don’t speak the same language when talking about the details of a website. This article explains how to get your ideas across to the web designer you want to hire.</p>
<p>Ok, so you’ve decided to hire a professional web designer to <strong>build your website</strong>. You spent some time looking for the right person. Eventually you found the right web designer that you believe will design the most “remarkable”, “extraordinary” website the internet community has yet seen.</p>
<p>So now what? Explaining to the web designer the layout design you have in your mind can be a very frustrating process. You will find that putting the “picture” in your mind into words can be a difficult task. Actually in most cases this is the biggest hurdle between you and the final outcome. No matter how talented the web designer is, if you can not communicate with him properly, in his own professional language, he will not be able to use his talent to achieve your design.</p>
<p><strong>There are two possible situations you may face:<br />
</strong>1. You know what content you want on the website but have no clue how to present it to the user.<br />
2. You know what content you want on the website, and you have the layout in your mind, but you don’t know how to implement it.</p>
<p>In both cases you will need to explain your thoughts to the web designer. Although most people who read those lines are probably thinking that being in the second situation is better then being in the first situation. However, real life experience shows the opposite to be true. Giving a web designer the complete freedom of action regarding the web design based solely on the website content is usually a smart thing to do. You will find that explaining to the web designer what the nature of your website is, whether it’s a product that you want to sell or a hobby item, is much easier then trying to explain to him the temperate of the color schema or an undefined shape that you would like to have in the website header.</p>
<p>Actually for both of the situations, I would suggest you use the same approach, but with a minor modification to each situation. If you know of a website that has all the features you want or need and/or a site that looks the way you want your site to look, be sure to give the site’s url to the web designer. Doing so will give him some idea of want you want. You will both be looking at the same thing but will actually look at it from a different angle. Therefore, it may be better to give him more than one website as an example. The more websites you find that can express your feelings and/or needs, the easier it will be for web designers to understand your intention without you having to use a single “technical” term. Chances are that you won’t find a single website that has all of the feature you want. After all, if such a website already exists there would be no place for your new web site to be born. Use several websites to express the different features you want. Spend as much time as necessary until you find just the right websites to provide examples of your needs. Doing research at this stage will definitely save you a lot of time later trying to point the web designer in the right direction.</p>
<p>Although you are the one who needs to express your self to the web designer, you must learn to listen to him as well. When he uses technical terms, ask for their meaning. Do not finish any part of the conversation unless you are absolutely sure that both sides are on the same page. Remember that when a web designer speaks about the temperature of a color, he is not talking about the next day’s forecast.</p>
<p>Remember, you hired a professional web designer because you want a professional looking website and you couldn’t do it yourself. So, trust the web designer’s judgment when they tell you something you want won’t work or isn’t the best way to accomplish your goals. After all, you are paying them for their expertise. Don’t try to tell them how to do their job.</p>
<p>It is OK to require that a web designer gets your approval each step of the way so you can tell them if one of your goals isn’t being met. Also, if you really don’t like how something looks and want it changed, tell them immediately. Don’t wait until everything is done and then decide you don’t like it.</p>
<p><strong>A final word about cost</strong></p>
<p>You have agreed on what needs to be done and the web designer has given you a price quote. Simple modifications and bug fixes are usually included in the price. However, other major changes or outright revisions may or may not be included. Make sure the agreement states what is included, what constitutes a revision rather than a fix, and how many changes you can make after delivery without incurring additional costs.</p>
<p>About the Author:<br />
Warren Baker is an Internet business consultant for WebDesigners123.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2008/04/communicating-your-needs-to-your-web-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annoying Website Design</title>
		<link>http://blog.artdimension.ca/blog/2008/04/annoying-website-design/</link>
		<comments>http://blog.artdimension.ca/blog/2008/04/annoying-website-design/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 22:10:20 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=26</guid>
		<description><![CDATA[Have you ever considered that your website may be annoying? When it’s comes to website design, knowing what visitors hate most is a must, unless you don’t want them to visit you again. This article describes what you should exclude from your website. If you know about an annoying website, feel free to send this [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever considered that your <em>website may be annoying</em>? When it’s comes to website design, knowing what visitors hate most is a must, unless you don’t want them to visit you again. This article describes what you should exclude from your website. If you know about an annoying website, feel free to send this article to its webmaster.</p>
<p>A few weeks ago I received an email from a colleague asking me to check one of the website he had developed. He is a web designer and his client wanted a nice attractive flash header. The flash header was great. You can’t miss it at all. Some nice graphics elements were flying in while sound effects created just the right atmosphere. However, after starting to explore the website, the header became very annoying because every time you clicked on the website the header restarted. What was pleasant initially became very annoying very quickly, disturbing your concentration and making it difficult to read what was on the page.</p>
<p>He is not the first to create what I like to call – &#8220;<u>annoying website design</u>&#8220;. Many webmasters, especially new webmasters are totally “in love” with their ideas and tend to go overboard with their design in one way or another. It’s nice to have an attractive header, but is it really necessary to assault the visitor’s mind with it? In my opinion, absolutely not!</p>
<p>Webmasters sometimes forget that their website design should send a message to the visitor that should reflect the website topic and not the programmer’s skill level.</p>
<p><strong>Is Your Website Design Annoying?</strong></p>
<p>Well…. It’s not that hard to be annoying. However, some webmasters are much better than others at annoying their visitors. Check my top 5 list and decide for yourself whether you have been annoying your visitors.</p>
<p>1.Background music – Unless you are operating an online internet radio station or sell music CDs, why play a midi/wav file in the background continuously on every page?</p>
<p>2.Huge font size – If you are designing a website for people with a disability then you are doing the right thing, but if not then you are shouting. People don’t like it when someone shouts at them.</p>
<p>3.Small font size – Do you want to be heard? Keep a normal tone, don’t shout but &#8220;speak&#8221; in a reasonable volume.</p>
<p>4.Overlapping layers – Layers can be very useful up to the point. But not when they are being used to put an annoying message in the visitor’s face. Don’t try to force your visitor to read your messages. Try persuasion instead of brute force.</p>
<p>5.Popup windows – Even though popup windows are now blocked by many add on tools, webmasters keep using them. The annoying part of popups is sometimes we actually miss important information because of those anti popup tools. Haven&#8217;t you heard the old phrase &#8220;if you can’t beat him, join him”? Don’t use pop up windows. Put your important messages in a central place on your website.</p>
<p>Most likely each one of us has our own private top five lists. You probably have many more annoying design cases in mind. Well, you’re right, the list is much longer then that. I just wanted to describe some of the highlights in order to bring this important subject your attention.</p>
<p>Some of you are probably reading those lines and smiling while some others have a feeling a deja-vu. Keep in your mind that as a webmaster the last thing you want to do is put lots of effort into your website and then find out that your visitors hate it. It&#8217;s not a matter of taste, it&#8217;s more about being the same polite person we all try to be when we go to a party.</p>
<p>I tried to point out a few things that might be useful to some web designers and webmasters. I don’t know about you, but I’m going to send this article to my friend, hopefully he’ll send it to his client <img src='http://blog.artdimension.ca/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>About the Author:<br />
<em>Warren Baker is an Internet business consultant</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2008/04/annoying-website-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Easy Ways to Improve Your Website&#8217;s Legibility</title>
		<link>http://blog.artdimension.ca/blog/2008/04/5-easy-ways-to-improve-your-websites-legibility/</link>
		<comments>http://blog.artdimension.ca/blog/2008/04/5-easy-ways-to-improve-your-websites-legibility/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 21:36:27 +0000</pubDate>
		<dc:creator>Art-d</dc:creator>
				<category><![CDATA[Web design and promotion]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[improve your website]]></category>
		<category><![CDATA[legibility]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.artdimension.ca/blog/?p=25</guid>
		<description><![CDATA[By Debbie Campbell Websites that make their customers work to read them are not the best way to get business. Minuscule fonts, text in colors that make it hard to see against the background color, and lines that are piled on top of each other are problems, but they&#8217;re easy to correct. Let&#8217;s jump right [...]]]></description>
			<content:encoded><![CDATA[<p>By Debbie Campbell</p>
<p>Websites that make their customers work to read them are not the best way to get business. Minuscule fonts, text in colors that make it hard to see against the background color, and lines that are piled on top of each other are problems, but they&#8217;re easy to correct. Let&#8217;s jump right in and look at five easy fixes:</p>
<p><strong>1.</strong> <strong>Format your text using CSS.</strong><br />
Cascading Style Sheets (CSS) are the way to go &#8211; use one style sheet and control how text looks on your entire site. Make a change to the style sheet and your whole site is updated. It makes life a lot simpler.</p>
<p><strong>2.</strong> <strong>Make the font size big enough to read.</strong><br />
Consider your target audience. Even if they are a group of teenage girls looking for new shoes, it&#8217;s never a good idea to use tiny type. It doesn&#8217;t have to be enormous, but up to a point, larger type is better. 12-pt Verdana is better than 8-pt Verdana.</p>
<p><strong>3.</strong> <strong>Make the text contrast with its background.</strong><br />
The more contrast, the better. Black-on-white or white-on-black are examples of the highest contrast you can get. Use colors if you like, but if you squint at the page and your text basically vanishes, there&#8217;s not enough contrast.</p>
<p><strong>4. Give the lines room to breathe.</strong><br />
Don&#8217;t stack lines on top of each other. Use the line-spacing directive in CSS and give it some space; I&#8217;ll often set line-spacing to 140% of the height of a typical line.</p>
<p><strong>5. Break text up into chunks.</strong><br />
No matter how good a writer you are, people don&#8217;t want to read endless pages of text. Break it up by using headlines that reflect the subject of the paragraph(s) to follow so people can scan down to the parts that really interest them, or use bulleted lists to change the pace of the writing and slow down the scanning.</p>
<p>And finally (not one of the 5 Easy Ways to Improve Legibility but still quite important) check your spelling. Nothing irritates me more on a web page than spelling errors &#8211; it simply makes you look like you don&#8217;t care enough to get it right. Use that ubiquitous spellcheck tool.</p>
<p>Making your website&#8217;s content more legible is easy. It doesn&#8217;t take a lot of time, mainly common sense. The payoff will be text that&#8217;s more readable, customers that stick around long enough to get your message, and improved credibility with your visitors.</p>
<p>Copyright 2006, Debbie Campbell<br />
<a href="http://www.pageresource.com/zine/cc_5easyways.htm" title="Page Resource" target="_blank">http://www.pageresource.com/zine/cc_5easyways.htm </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artdimension.ca/blog/2008/04/5-easy-ways-to-improve-your-websites-legibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

