<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>WebEternity Web Design &#38; Internet Web Solutions UK</title>
	<link>http://www.webeternity.co.uk</link>
	<description>Your one stop source for Professional Web Design &#38; Hosting in the UK</description>
	<pubDate>Mon, 12 May 2008 11:33:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>CSS Text Properties</title>
		<link>http://www.webeternity.co.uk/2008/05/12/css-text-properties/</link>
		<comments>http://www.webeternity.co.uk/2008/05/12/css-text-properties/#comments</comments>
		<pubDate>Mon, 12 May 2008 10:27:28 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Discussion]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[css help]]></category>

		<category><![CDATA[css properties]]></category>

		<category><![CDATA[css text]]></category>

		<category><![CDATA[css text properties]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/05/12/css-text-properties/</guid>
		<description><![CDATA[Join the forum discussion  on this post - (1) PostsIn this reference we will look at how to control text appearance using style   sheets. CSS gives you precise control over typography in your Web pages,   allowing you to set parameters such as the spacing between lines, words and even  [...]]]></description>
			<content:encoded><![CDATA[<span class="sfforumlink"><a href="http://www.webeternity.co.uk/web-forums/web-design/css-text-properties/page-1">Join the forum discussion <img src="http://www.webeternity.co.uk/wp-content/plugins/simple-forum/icons/default/bloglink.png" alt="" /> on this post</a> - (1) Posts</span><p>In this reference we will look at how to control text appearance using style   sheets. CSS gives you precise control over typography in your Web pages,   allowing you to set parameters such as the spacing between lines, words and even   letters, and the alignment and indenting of text.</p>
<p>We&#8217;ll look at the different <EM>text properties</EM> that can be used with   CSS, and explain each property with some real-world examples. Each example is   displayed as it would render in your browser.</p>
<p>There are eight properties that can be used to control text appearance -   word-spacing, letter-spacing,   text-decoration, vertical-align,   text-transform, text-align, text-indent   and line-height. Let&#8217;s look at each of these properties in   turn.</p>
<p><H2>word-spacing</H2></p>
<p>This property controls the amount of space added to the default spacing   between each word. The allowable values are:</p>
<p><TABLE><br />
  <TBODY><br />
    <TR><br />
      <TH>Value</TH><br />
      <TH>Example</TH><br />
    </TR><br />
    <TR><br />
      <TD>normal</TD><br />
      <TD>{ word-spacing: normal; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>length</TD><br />
      <TD>{ word-spacing: 5mm; }</TD><br />
    </TR><br />
  </TBODY><br />
</TABLE></p>
<p>normal will select the default word   spacing.</p>
<p>length will add the specified value to the default word spacing.   length values are specified using the CSS length units such as   em, px, cm and pt. For a   full description of these.</p>
<p><H3>Examples:</H3><br />
<PRE>  p { word-spacing: 1em; }  </PRE></p>
<p>`Take some more tea,&#8217; the   March Hare said to Alice, very earnestly.</p>
<p><H2>letter-spacing</H2></p>
<p>This property is similar to word-spacing, but controls the   spacing added between each individual letter. Possible values are:</p>
<p><TABLE><br />
  <TBODY><br />
    <TR><br />
      <TH>Value</TH><br />
      <TH>Example</TH><br />
    </TR><br />
    <TR><br />
      <TD>normal</TD><br />
      <TD>{ letter-spacing: normal; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>length</TD><br />
      <TD>{ letter-spacing: 0.1mm; }</TD><br />
    </TR><br />
  </TBODY><br />
</TABLE></p>
<p>normal will select the default letter   spacing.</p>
<p>length will add the specified value to the default letter   spacing. length values are specified using the CSS length units such   as em, px, cm and pt. For a   full description of these.</p>
<p><H3>Examples:</H3><br />
<PRE>  p { letter-spacing: 0.1em; }  </PRE></p>
<p>`Take some more tea,&#8217; the   March Hare said to Alice, very earnestly.</p>
<p><PRE>  p { letter-spacing: 0.1cm; }  </PRE></p>
<p>`Take some more tea,&#8217; the   March Hare said to Alice, very earnestly.</p>
<p><H2>text-decoration</H2></p>
<p>The text-decoration property allows you to control decorations   that can be added to the text, such as strike-throughs, underlining, and (heaven   forbid!) blinking. Possible values are:</p>
<p><TABLE><br />
  <TBODY><br />
    <TR><br />
      <TH>Value</TH><br />
      <TH>Example</TH><br />
    </TR><br />
    <TR><br />
      <TD>none</TD><br />
      <TD>{ text-decoration: none; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>underline</TD><br />
      <TD>{ text-decoration: underline; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>overline</TD><br />
      <TD>{ text-decoration: overline; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>line-through</TD><br />
      <TD>{ text-decoration: line-through; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>blink</TD><br />
      <TD>{ text-decoration: blink; }</TD><br />
    </TR><br />
  </TBODY><br />
</TABLE><br />
<H3>Examples:</H3><br />
<PRE>  p { text-decoration: underline; }  </PRE></p>
<p>`Take some more   tea,&#8217; the March Hare said to Alice, very earnestly.</p>
<p><PRE>  p { text-decoration: line-through; }  </PRE></p>
<p>`Take some more   tea,&#8217; the March Hare said to Alice, very earnestly.</p>
<p><H2>vertical-align</H2></p>
<p>This property controls the vertical placement of the text. It&#8217;s similar to   the valign attribute in HTML. The allowable values are:</p>
<p><TABLE><br />
  <TBODY><br />
    <TR><br />
      <TH>Value</TH><br />
      <TH>Example</TH><br />
    </TR><br />
    <TR><br />
      <TD>baseline</TD><br />
      <TD>{ vertical-align: baseline; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>sub</TD><br />
      <TD>{ vertical-align: sub; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>super</TD><br />
      <TD>{ vertical-align: super; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>top</TD><br />
      <TD>{ vertical-align: top; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>text-top</TD><br />
      <TD>{ vertical-align: text-top; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>middle</TD><br />
      <TD>{ vertical-align: middle; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>bottom</TD><br />
      <TD>{ vertical-align: bottom; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>text-bottom</TD><br />
      <TD>{ vertical-align: text-bottom; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>percentage</TD><br />
      <TD>{ vertical-align: 25%; }</TD><br />
    </TR><br />
  </TBODY><br />
</TABLE><br />
<H4>The following 6 values are relative to the parent element:</H4></p>
<p>baseline aligns the baseline with the parent&#8217;s baseline. This is   the default.</p>
<p>middle aligns the vertical midpoint of the element (e.g. an   image) with the baseline plus half the x-height of the parent. The   x-height is the height of the letter &#8216;x&#8217; in the context of this line   of text..</p>
<p>sub displays the element as subscript text.</p>
<p>super displays the element as superscript text.</p>
<p>text-top aligns the top of the element with the top of the font   used for the parent element.</p>
<p>text-bottom aligns the bottom of the element with the bottom of   the font used for the parent element.</p>
<p><H4>The next two values are relative to the line that the element is in, as   opposed to the parent element:</H4></p>
<p>top causes the top of the element to be aligned vertically with   the tallest element on the line.</p>
<p>bottom causes the bottom of the element to be aligned vertically   with the lowest element on the line.</p>
<p>The final value, percentage, specifies a percentage of the   element&#8217;s line height (see the line-height property below). It   raises or lowers the baseline by a percentage of the line-height above the   baseline of the parent. For example, a value of 50% will raise the baseline to   halfway between the parent&#8217;s baseline and the baseline of the line above. A   value of -100% will lower the baseline to the same height as the baseline of the   line below.</p>
<p><H3>Examples:</H3><br />
<PRE>  span { vertical-align: super; }  </PRE></p>
<p>The Cat only grinned when it saw Alice. It looked good- natured, she thought: still   it had VERY long claws and a great many teeth, so she felt that it ought to be   treated with respect.</p>
<p><PRE>  span { vertical-align: sub; }  </PRE></p>
<p>The Cat only grinned when it saw Alice. It looked good- natured, she thought: still   it had VERY long claws and a great many teeth, so she felt that it ought to be   treated with respect.</p>
<p><PRE>  span { vertical-align: 100%; }  </PRE></p>
<p>The Cat only grinned when it saw Alice. It looked good- natured, she thought: still   it had VERY long claws and a great many teeth, so she felt that it ought to be   treated with respect.</p>
<p><H2>text-transform</H2></p>
<p>text-transform controls the case of the text. You can transform   all the text into capitals or lowercase, or just capitalize the first letter of   each word. The options are:</p>
<p><TABLE><br />
  <TBODY><br />
    <TR><br />
      <TH>Value</TH><br />
      <TH>Example</TH><br />
    </TR><br />
    <TR><br />
      <TD>capitalize</TD><br />
      <TD>{ text-transform: capitalize; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>uppercase</TD><br />
      <TD>{ text-transform: uppercase; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>lowercase</TD><br />
      <TD>{ text-transform: lowercase; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>none</TD><br />
      <TD>{ text-transform: none; }</TD><br />
    </TR><br />
  </TBODY><br />
</TABLE></p>
<p>capitalize uppercases the first   character of each word, while uppercase and lowercase   transform the whole text into all upper-case or lower-case characters   respectively. none removes all transformations from the text and   displays it as-is.</p>
<p><H3>Examples:</H3><br />
<PRE>  p { text-transform: uppercase; }  </PRE></p>
<p>`Take some more tea,&#8217;   the March Hare said to Alice, very earnestly.</p>
<p><PRE>  p { text-transform: capitalize; }  </PRE></p>
<p>`Take some more   tea,&#8217; the March Hare said to Alice, very earnestly.</p>
<p><H2>text-align</H2></p>
<p>This property is similar to the align attribute in HTML. Options   are:</p>
<p><TABLE><br />
  <TBODY><br />
    <TR><br />
      <TH>Value</TH><br />
      <TH>Example</TH><br />
    </TR><br />
    <TR><br />
      <TD>left</TD><br />
      <TD>{ text-align: left; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>right</TD><br />
      <TD>{ text-align: right; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>center</TD><br />
      <TD>{ text-align: center; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>justify</TD><br />
      <TD>{ text-align: justify; }</TD><br />
    </TR><br />
  </TBODY><br />
</TABLE></p>
<p>left, right and   center perform the same actions as their HTML counterparts.   justify creates columns of text that are aligned along their left   and right edges, like the text in a book.</p>
<p>Examples:</p>
<p><PRE>  p { text-align: center; }  </PRE></p>
<p>The Cat only grinned when it   saw Alice. It looked good- natured, she thought: still it had VERY long claws   and a great many teeth, so she felt that it ought to be treated with   respect.</p>
<p><PRE>  p { text-align: justify; }  </PRE></p>
<p>The Cat only grinned when   it saw Alice. It looked good- natured, she thought: still it had VERY long claws   and a great many teeth, so she felt that it ought to be treated with   respect.</p>
<p><H2>text-indent</H2></p>
<p>This property allows you to indent the first line of text in a paragraph. The   options are:</p>
<p><TABLE><br />
  <TBODY><br />
    <TR><br />
      <TH>Value</TH><br />
      <TH>Example</TH><br />
    </TR><br />
    <TR><br />
      <TD>length</TD><br />
      <TD>{ text-indent: 3cm; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>percentage</TD><br />
      <TD>{ text-indent: 5% }</TD><br />
    </TR><br />
  </TBODY><br />
</TABLE></p>
<p>A length is specified using the CSS   length units such as em, px, cm and   pt. For a full description of these.</p>
<p>percentage is a percentage of the parent element&#8217;s width.</p>
<p><H3>Examples:</H3><br />
<PRE>  p { text-indent: 5em; }  </PRE></p>
<p>The Cat only grinned when it   saw Alice. It looked good- natured, she thought: still it had VERY long claws   and a great many teeth, so she felt that it ought to be treated with   respect.</p>
<p><H2>line-height</H2></p>
<p>The final text property, line-height, controls the distance   between lines of text. Possible values are:</p>
<p><TABLE><br />
  <TBODY><br />
    <TR><br />
      <TH>Value</TH><br />
      <TH>Example</TH><br />
    </TR><br />
    <TR><br />
      <TD>normal</TD><br />
      <TD>{ line-height: normal; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>number</TD><br />
      <TD>{ line-height: 1.5; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>length</TD><br />
      <TD>{ line-height: 0.5cm; }</TD><br />
    </TR><br />
    <TR><br />
      <TD>percentage</TD><br />
      <TD>{ line-height: 125%; }</TD><br />
    </TR><br />
  </TBODY><br />
</TABLE></p>
<p>normal sets the line height to the   default or inherited value, while specifying a number results in a   line height of the default value multiplied by that number.</p>
<p>A length is specified using the CSS length units such as   em, px, cm and pt. For a   full description of these.</p>
<p>percentage is a percentage of the element&#8217;s font size.</p>
<p>Examples:</p>
<p><PRE>  p { line-height: normal; }  </PRE></p>
<p>The Cat only grinned when   it saw Alice. It looked good- natured, she thought: still it had VERY long claws   and a great many teeth, so she felt that it ought to be treated with   respect.</p>
<p><PRE>  p { line-height: 2; }  </PRE></p>
<p>The Cat only grinned when it saw   Alice. It looked good- natured, she thought: still it had VERY long claws and a   great many teeth, so she felt that it ought to be treated with respect.</p>
<p><PRE>  p { line-height: 150%; }  </PRE></p>
<p>The Cat only grinned when it   saw Alice. It looked good- natured, she thought: still it had VERY long claws   and a great many teeth, so she felt that it ought to be treated with   respect.</p>
<p>Credit for this and for original copy please see <a href="http://www.elated.com/articles/css-text-properties/" target="_blank">http://www.elated.com/articles/css-text-properties/</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/05/12/css-text-properties/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Video Tutorials for wordpress</title>
		<link>http://www.webeternity.co.uk/2008/03/11/video-tutorials-for-wordpress/</link>
		<comments>http://www.webeternity.co.uk/2008/03/11/video-tutorials-for-wordpress/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 16:01:35 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Tips]]></category>

		<category><![CDATA[tutorials]]></category>

		<category><![CDATA[web design tutorials]]></category>

		<category><![CDATA[wordpress tutorials]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/03/11/video-tutorials-for-wordpress/</guid>
		<description><![CDATA[Join the forum discussion  on this post - (1) PostsWe have just started a new customer support page that has video tutorials to help you with the common tasks and questions for your websites
To veiw the tutorials please click here
]]></description>
			<content:encoded><![CDATA[<span class="sfforumlink"><a href="http://www.webeternity.co.uk/web-forums/web-design/video-tutorials-for-wordpress/page-1">Join the forum discussion <img src="http://www.webeternity.co.uk/wp-content/plugins/simple-forum/icons/default/bloglink.png" alt="" /> on this post</a> - (1) Posts</span><p>We have just started a new customer support page that has video tutorials to help you with the common tasks and questions for your websites</p>
<p><a href="http://www.webeternity.co.uk/tutorials/">To veiw the tutorials please click here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/03/11/video-tutorials-for-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Design - The importance</title>
		<link>http://www.webeternity.co.uk/2008/03/10/web-design-the-importance/</link>
		<comments>http://www.webeternity.co.uk/2008/03/10/web-design-the-importance/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 00:40:01 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Discussion]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[web design tips]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[web development tips]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/03/10/web-design-the-importance/</guid>
		<description><![CDATA[Web Design
The importance of the actual design of a website is sadly misunderstood, Its is in-fact important that a site is easily navigated for the visitor, easy for a child to navigate around to find pages and products you may have.
The actual design and layout must also be relevant to the audience you are trying [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Web Design</strong></p>
<p>The importance of the actual design of a website is sadly misunderstood, Its is in-fact important that a site is easily navigated for the visitor, easy for a child to navigate around to find pages and products you may have.</p>
<p>The actual design and layout must also be relevant to the audience you are trying to attract, We have many other articles on our site explaining this in more detail, please check them out and give them a read to get a good successful website and website design.</p>
<p>Post a reply with your opinions</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/03/10/web-design-the-importance/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Planning a website? tips</title>
		<link>http://www.webeternity.co.uk/2008/03/06/planning-a-website-tips/</link>
		<comments>http://www.webeternity.co.uk/2008/03/06/planning-a-website-tips/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 22:27:34 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Tips]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[website]]></category>

		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/03/06/planning-a-website-tips/</guid>
		<description><![CDATA[Website PlanningBefore creating and uploading a website, it is important to take the time to plan exactly what is needed in the website. Thoroughly considering the audience or target market, as well as defining the purpose and deciding what content will be developed are extremely important.
Purpose
It is essential to define the purpose of the website [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="font-size: 14pt">Website Planning</span></strong>Before creating and uploading a website, it is important to take the time to plan exactly what is needed in the website. Thoroughly considering the audience or target market, as well as defining the purpose and deciding what content will be developed are extremely important.</p>
<h3>Purpose</h3>
<p>It is essential to define the purpose of the website as one of the first steps in the planning process. A purpose statement should show focus based on what the website will accomplish and what the users will get from it. A clearly defined purpose will help the rest of the planning process as the audience is identified and the content of the site is developed. Setting short and long term goals for the website will help make the purpose clear and plan for the future when expansion, modification, and improvement will take place. Also, goal-setting practices and measurable objectives should be identified to track the progress of the site and determine success.</p>
<h3>Audience</h3>
<p>Defining the audience is a key step in the website planning process. The audience is the group of people who are expected to visit your website - the market being targeted. These people will be viewing the website for a specific reason and it is important to know exactly what they are looking for when they visit the site. A clearly defined purpose or goal of the site as well as an understanding of what visitors want to do/feel when they come to your site will help to identify the target audience. Upon considering who is most likely to need/use the content, a list of characteristics common to the users such as:</p>
<ul>
<li>Audience Characteristics</li>
<li>Information Preferences</li>
<li>Computer Specifications</li>
<li>Web Experience</li>
</ul>
<p>Taking into account the characteristics of the audience will allow an effective website to be created that will deliver the desired content to the target audience.</p>
<h3>Content</h3>
<p>Content evaluation and organization requires that the purpose of the website be clearly defined. Collecting a list of the necessary content then organizing it according to the audience&#8217;s needs is a key step in website planning. In the process of gathering the content being offered, any items that do not support the defined purpose or accomplish target audience objectives should be removed. It is a good idea to test the content and purpose on a focus group and compare the offerings to the audience needs. The next step is to organize the basic information structure by categorizing the content and organizing it according to user needs. Each category should be named with a concise and descriptive title that will become a link on the website. Planning for the site&#8217;s content ensures that the wants/needs of the target audience and the purpose of the site will be fulfilled.</p>
<h3>Compatibility and restrictions</h3>
<p>Because of the market share of modern browsers (depending on your target market), the compatibility of your website with the viewers is restricted. For instance, a website that is designed for the majority of websurfers will be limited to the use of valid XHTML 1.0 Strict or older, Cascading Style Sheets Level 1, and 1024&#215;768 display resolution. This is because Internet Explorer is not fully W3C standards compliant with the modularity of XHTML 1.1 and the majority of CSS beyond 1. A target market of more alternative browser (e.g. Firefox and Opera) users allow for more W3C compliance and thus a greater range of options for a web designer.</p>
<p>Another restriction on webpage design is the use of different Image file formats. The majority of users can support GIF, JPEG, and PNG (with restrictions). Again Internet Explorer is the major restriction here, not fully supporting PNG&#8217;s advanced transparency features, resulting in the GIF format still being the most widely used graphic file format for transparent images.</p>
<p>Many website incompatibilities go unnoticed by the designer and unreported by the users. The only way to be certain a website will work on a particular platform is to test it on that platform.</p>
<h3>Planning documentation</h3>
<p>Documentation is used to visually plan the site while taking into account the purpose, audience and content, to design the site structure, content and interactions that are most suitable for the website. Documentation may be considered a prototype for the website - a model which allows the website layout to be reviewed, resulting in suggested changes, improvements and/or enhancements. This review process increases the likelihood of success of the website.</p>
<p>First, the content is categorized and the information structure is formulated. The information structure is used to develop a document or visual diagram called a site map. This creates a visual of how the web pages will be interconnected, which helps in deciding what content will be placed on what pages. There are three main ways of diagramming the website structure:</p>
<ul>
<li>Linear Website Diagrams will allow the users to move in a predetermined sequence;</li>
<li>Hierarchical structures (of Tree Design Website Diagrams) provide more than one path for users to take to their destination;</li>
<li>Branch Design Website Diagrams allow for many interconnections between web pages such as hyperlinks within sentences.</li>
</ul>
<p>In addition to planning the structure, the layout and interface of individual pages may be planned using a storyboard. In the process of storyboarding, a record is made of the description, purpose and title of each page in the site, and they are linked together according to the most effective and logical diagram type. Depending on the number of pages required for the website, documentation methods may include using pieces of paper and drawing lines to connect them, or creating the storyboard using computer software.</p>
<p>Some or all of the individual pages may be designed in greater detail as a website wireframe, a mock up model or comprehensive layout of what the page will actually look like. This is often done in a graphic program, or layout design program. The wireframe has no working functionality, only planning.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/03/06/planning-a-website-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Accessible Web design</title>
		<link>http://www.webeternity.co.uk/2008/03/06/accessible-web-design/</link>
		<comments>http://www.webeternity.co.uk/2008/03/06/accessible-web-design/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 22:25:17 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Tips]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[website]]></category>

		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/03/06/accessible-web-design/</guid>
		<description><![CDATA[Accessible Web design
To be accessible, web pages and sites must conform to certain accessibility principles. These can be grouped into the following main areas:

use semantic markup that provides a meaningful structure to the document (i.e. web page)
Semantic markup also refers to semantically organizing the web page structure and publishing web services description accordingly so that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Accessible Web design</strong></p>
<p>To be accessible, web pages and sites must conform to certain accessibility principles. These can be grouped into the following main areas:</p>
<ul>
<li>use semantic markup that provides a meaningful structure to the document (i.e. web page)</li>
<li>Semantic markup also refers to semantically organizing the web page structure and publishing web services description accordingly so that they can be recognized by other web services on different web pages. Standards for semantic web are set by IEEE</li>
<li>use a valid markup language that conforms to a published DTD or Schema</li>
<li>provide text equivalents for any non-text components (e.g. images, multimedia)</li>
<li>use hyperlinks that make sense when read out of context. (e.g. avoid &#8220;Click Here.&#8221;)</li>
<li>don&#8217;t use frames</li>
<li>use CSS rather than HTML Tables for layout.</li>
<li>author the page so that when the source code is read line-by-line by user agents (such as a screen readers) it remains intelligible. (Using tables for design will often result in information that is not.)</li>
</ul>
<p>However, W3C permits an exception where tables for layout either make sense when linearized or an alternate version (perhaps linearized) is made available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/03/06/accessible-web-design/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How a site Looks vs How it Works</title>
		<link>http://www.webeternity.co.uk/2008/03/06/how-a-site-looks-vs-how-it-works/</link>
		<comments>http://www.webeternity.co.uk/2008/03/06/how-a-site-looks-vs-how-it-works/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 22:24:11 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Tips]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[website]]></category>

		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/03/06/how-a-site-looks-vs-how-it-works/</guid>
		<description><![CDATA[How it Looks vs. How it Works Some web developers have a graphic arts background and may pay more attention to how a page looks than considering other issues such as how visitors are going to find the page via a search engine. Some might rely more on advertising than search engines to attract visitors [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How it Looks vs. How it Works </strong>Some web developers have a graphic arts background and may pay more attention to how a page looks than considering other issues such as how visitors are going to find the page via a search engine. Some might rely more on advertising than search engines to attract visitors to the site. On the other side of the issue, search engine optimization consultants (SEOs) are concerned with how well a web site works technically and textually: how much traffic it generates via search engines, and how many sales it makes, assuming looks don&#8217;t contribute to the sales. As a result, the designers and SEOs often end up in disputes where the designer wants more &#8216;pretty&#8217; graphics, and the SEO wants lots of &#8216;ugly&#8217; keyword-rich text, bullet lists, and text links. One could argue that this is a false dichotomy due to the possibility that a web design may integrate the two disciplines for a collaborative and synergistic solution. Because some graphics serve communication purposes in addition to aesthetics, how well a site works may depend on the graphic designer&#8217;s visual communication ideas as well as the SEO considerations.</p>
<p>Another problem when using lots of graphics on a page is that download times can be greatly lengthened, often irritating the user. This has become less of a problem as the internet has evolved with high-speed internet and the use of vector graphics. This is an engineering challenge to increase bandwidth in addition to an artistic challenge to minimize graphics and graphic file sizes. This is an on-going challenge as increased bandwidth invites increased amounts of content.</p>
<p><strong>orks</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/03/06/how-a-site-looks-vs-how-it-works/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS versus tables</title>
		<link>http://www.webeternity.co.uk/2008/03/06/css-versus-tables/</link>
		<comments>http://www.webeternity.co.uk/2008/03/06/css-versus-tables/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 22:22:04 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Discussion]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[tables]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[website]]></category>

		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/03/06/css-versus-tables/</guid>
		<description><![CDATA[Back when Netscape Navigator 4 dominated the browser market, the popular solution available for designers to lay out a Web page was by using tables. Often even simple designs for a page would require dozens of tables nested in each other. Many web templates in Dreamweaver and other WYSIWYG editors still use this technique today. [...]]]></description>
			<content:encoded><![CDATA[<p>Back when Netscape Navigator 4 dominated the browser market, the popular solution available for designers to lay out a Web page was by using tables. Often even simple designs for a page would require dozens of tables nested in each other. Many web templates in Dreamweaver and other WYSIWYG editors still use this technique today. Navigator 4 didn&#8217;t support CSS to a useful degree, so it simply wasn&#8217;t used.</p>
<p>After the browser wars subsided, and the dominant browsers such as Internet Explorer became more W3C compliant, designers started turning toward CSS as an alternate means of laying out their pages. CSS proponents say that tables should be used only for tabular data, not for layout. Using CSS instead of tables also returns HTML to a semantic markup, which helps bots and search engines understand what&#8217;s going on in a web page. All modern Web browsers support CSS with different degrees of limitations.</p>
<p>However, one of the main points against CSS is that by relying on it exclusively, control is essentially relinquished as each browser has its own quirks which result in a slightly different page display. This is especially a problem as not every browser supports the same subset of CSS rules. For designers who are used to table-based layouts, developing Web sites in CSS often becomes a matter of trying to replicate what can be done with tables, leading some to find CSS design rather cumbersome due to lack of familiarity. For example, at one time it was rather difficult to produce certain design elements, such as vertical positioning, and full-length footers in a design using absolute positions. With the abundance of CSS resources available online today, though, designing with reasonable adherence to standards involves little more than applying CSS 2.1 or CSS 3 to properly structured markup.</p>
<p>These days most modern browsers have solved most of these quirks in CSS rendering and this has made many different CSS layouts possible. However, some people continue to use old browsers, and designers need to keep this in mind, and allow for graceful degrading of pages in older browsers. Most notable among these old browsers are Internet Explorer 5 and 5.5, which, according to some web designers, are becoming the new Netscape Navigator 4 - a block that holds the World Wide Web back from converting to CSS design. However, the W3 Consortium has made CSS in combination with XHTML the standard for web design.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/03/06/css-versus-tables/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash On a website</title>
		<link>http://www.webeternity.co.uk/2008/03/06/flash-on-a-website/</link>
		<comments>http://www.webeternity.co.uk/2008/03/06/flash-on-a-website/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 22:20:58 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Discussion]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[website]]></category>

		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/03/06/flash-on-a-website/</guid>
		<description><![CDATA[Adobe Flash (formerly Macromedia Flash) is a proprietary, robust graphics animation/application development program used to create and deliver dynamic content, media (such as sound and video), and interactive applications over the web via the browser.
Flash is not a standard produced by a vendor-neutral standards organization like most of the core protocols and formats on the [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe Flash (formerly Macromedia Flash) is a proprietary, robust graphics animation/application development program used to create and deliver dynamic content, media (such as sound and video), and interactive applications over the web via the browser.</p>
<p>Flash is not a standard produced by a vendor-neutral standards organization like most of the core protocols and formats on the Internet. Flash is much more restrictive than the open HTML format, though, requiring a proprietary plugin to be seen, and it does not integrate with most web browser UI features like the &#8220;Back&#8221; button.</p>
<p>According to a study,[2] 98% of US Web users have the Flash Player installed,[3] with 45%-56% (depending on region) having the latest version.[4] Numbers vary depending on the detection scheme and research demographics.[5]</p>
<p>Many graphic artists use Flash because it gives them exact control over every part of the design, and anything can be animated and generally &#8220;jazzed up&#8221;. Some application designers enjoy Flash because it lets them create applications that do not have to be refreshed or go to a new web page every time an action occurs. Flash can use embedded fonts instead of the standard fonts installed on most computers. There are many sites which forgo HTML entirely for Flash. Other sites may use Flash content combined with HTML as conservatively as gifs or jpegs would be used, but with smaller vector file sizes and the option of faster loading animations. Flash may also be used to protect content from unauthorized duplication or searching. Alternatively, small, dynamic Flash objects may be used to replace standard HTML elements (such as headers or menu links) with advanced typography not possible via regular HTML/CSS (see Scalable Inman Flash Replacement).</p>
<p>Flash detractors claim that Flash websites tend to be poorly designed, and often use confusing and non-standard user-interfaces. Up until recently, search engines have been unable to index Flash objects, which has prevented sites from having their contents easily found. This is because many search engine crawlers rely on text to index websites. It is possible to specify alternate content to be displayed for browsers that do not support Flash. Using alternate content also helps search engines to understand the page, and can result in much better visibility for the page. However, the vast majority of Flash websites are not disability accessible (for screen readers, for example) or Section 508 compliant. An additional issue is that sites which commonly use alternate content for search engines to their human visitors are usually judged to be spamming search engines and are automatically banned.</p>
<p>The most recent incarnation of Flash&#8217;s scripting language (called &#8220;ActionScript&#8221;, which is an ECMA language similar to JavaScript) incorporates long-awaited usability features, such as respecting the browser&#8217;s font size and allowing blind users to use screen readers. Actionscript 2.0 is an Object-Oriented language, allowing the use of CSS, XML, and the design of class-based web applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/03/06/flash-on-a-website/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Liquid versus fixed layouts</title>
		<link>http://www.webeternity.co.uk/2008/03/06/liquid-versus-fixed-layouts/</link>
		<comments>http://www.webeternity.co.uk/2008/03/06/liquid-versus-fixed-layouts/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 22:19:08 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Tips]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[website]]></category>

		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/03/06/liquid-versus-fixed-layouts/</guid>
		<description><![CDATA[On the web the designer has no control over several factors, including the size of the browser window, the web browser used, the input devices used (mouse, touch screen, voice command, text, cell phone number pad, etc.) and the size and characteristics of available fonts.
Some designers choose to control the appearance of the elements on [...]]]></description>
			<content:encoded><![CDATA[<p>On the web the designer has no control over several factors, including the size of the browser window, the web browser used, the input devices used (mouse, touch screen, voice command, text, cell phone number pad, etc.) and the size and characteristics of available fonts.</p>
<p>Some designers choose to control the appearance of the elements on the screen by using specific width designations. This control may be achieved through the use of a HTML table-based design or a more semantic div-based design through the use of CSS. Whenever the text, images, and layout of a design do not change as the browser changes, this is referred to as a fixed width design. Proponents of fixed width design prefer precise control over the layout of a site and the precision placement of objects on the page. Other designers choose a liquid design. A liquid design is one, like Wikipedia, where the design moves to flow content into the whole screen, or a portion of the screen, no matter what the size of the browser window. Proponents of liquid design prefer greater compatibility and using the screen space available. Liquid design can be achieved through the use of CSS, by avoiding styling the page altogether, or by using HTML tables (or more semantic divs) set to a percentage of the page. Both liquid and fixed design developers must make decisions about how the design should degrade on higher and lower screen resolutions. Sometimes the pragmatic choice is made to flow the design between a minimum and a maximum width. This allows the designer to avoid coding for the browser choices making up The Long Tail, while still using all available screen space. Depending on the purpose of the content, a web designer may decide to use either fixed or liquid layouts on a case-by-case basis.</p>
<p>Similar to liquid layout is the optional fit to window feature with Adobe Flash content. This is a fixed layout that optimally scales the content of the page without changing the arrangement or text wrapping when the browser is resized.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/03/06/liquid-versus-fixed-layouts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lack of collaboration in design</title>
		<link>http://www.webeternity.co.uk/2008/03/06/lack-of-collaboration-in-design/</link>
		<comments>http://www.webeternity.co.uk/2008/03/06/lack-of-collaboration-in-design/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 22:17:58 +0000</pubDate>
		<dc:creator>WebEternity</dc:creator>
		
		<category><![CDATA[Web Design Discussion]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[website]]></category>

		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.webeternity.co.uk/2008/03/06/lack-of-collaboration-in-design/</guid>
		<description><![CDATA[Lack of collaboration in design
In the early stages of the web, there wasn&#8217;t as much collaboration between web designs and larger advertising campaigns, customer transactions, social networking, intranets and extranets as there is now. Web pages were mainly static online brochures disconnected from the larger projects.
Many web pages are still disconnected from larger projects. Special [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Lack of collaboration in design</strong></p>
<p>In the early stages of the web, there wasn&#8217;t as much collaboration between web designs and larger advertising campaigns, customer transactions, social networking, intranets and extranets as there is now. Web pages were mainly static online brochures disconnected from the larger projects.</p>
<p>Many web pages are still disconnected from larger projects. Special design considerations are necessary for use within these larger projects. These design considerations are often overlooked, especially in cases where there is a lack of leadership, lack of understanding of why and technical knowledge of how to integrate, or lack of concern for the larger project in order to facilitate collaboration. This often results in unhealthy competition or compromise between departments, and less than optimal use of web pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webeternity.co.uk/2008/03/06/lack-of-collaboration-in-design/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
