<?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>Cert IV in IT (Web Design) &#187; XHTML</title>
	<atom:link href="http://c475.edublogs.org/category/design/xhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://c475.edublogs.org</link>
	<description>Designed to Learn</description>
	<lastBuildDate>Sat, 22 Jul 2006 07:34:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating a Lightbox for your images</title>
		<link>http://c475.edublogs.org/2006/04/19/creating-a-lightbox-for-your-images/</link>
		<comments>http://c475.edublogs.org/2006/04/19/creating-a-lightbox-for-your-images/#comments</comments>
		<pubDate>Wed, 19 Apr 2006 02:30:21 +0000</pubDate>
		<dc:creator>Ady</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://c475.edublogs.org/2006/04/19/creating-a-lightbox-for-your-images/</guid>
		<description><![CDATA[<p>
The links look like the following:&#60;script type="text/javascript" src="js/prototype.js"&#62;&#60;/script&#62;&#60;script type="text/javascript" src="js/scriptaculous.js?load=effects"&#62;&#60;/script&#62;&#60;script type="text/javascript" src="js/lightbox.js"&#62;&#60;/script&#62;Now the order is important.For now we are ready.The head section will look similar to this: Any other CSS and JavaScript can be placed after line 8 in the sample shown.Now we can turn our attention to the actual images.In the main body of your page, if you wish to use a lightbox effect on any image then you do the following steps.Insert the image as normal.Insert the image's thumbnail immidiately to the right of the image.  For example the code below shown the flow2a and flow2a-thm files insertedintot he code:&#60;img src="photos/flow2a.jpg" alt="TheFlow" width="639" height="510" /&#62;&#60;imgsrc="photos/flow2a-thm.jpg" alt="The flow thumbnail" width="100" height="100" /&#62;Now we modify the code to create our lightbox link:we start by changing the first img src into an a href, removing the widthadn height sections, plus the / before the &#62; &#60;a href="photos/flow2a.jpg" alt="The Flow"&#62;&#60;img src="photos/flow2a-thm.jpg" alt="The flow thumbnail" width="100" height="100" /&#62; Now change the alt to title and if you wish extend the title of the image:&#60;a href="photos/flow2a.jpg" title="The Flow, and image "&#62;We now add the rel="lightbox" attribute to the a href.
</p>]]></description>
			<content:encoded><![CDATA[<h3>
How to use the LightBox version 2.<br />
</h3>
<p>
This tutorial aims to take you step by step through how to use the lightbox JavaScript system that was written by <a href="http://www.huddletogether.com/">Lokesh Dhakar</a>. The Lightbox is a way to present images onto the screen in a way similar to how they<br />
<br />are presented to a photographer who is using a light box to view negatives.
</p>
<p>
First you need to obtain the LightBox v2 system from the <a href="http://www.huddletogether.com/projects/lightbox2/">official<br />
<br />download site</a>. This was version 2.02 when these notes were made.
</p>
<p>
Uncompress the files into a folder called LightBox2, so you can copy the required files.
</p>
<p>
In your web site create a folder called css, another called js and an images folder. In this sample site the folders are shown here:
</p>
<p>
<a href="http://c475.edublogs.org/files/2006/04/screenshot_0028.jpg"><img src="http://c475.edublogs.org/files/2006/04/screenshot_0028-tm.jpg" height="100" width="86" border="1" hspace="4" vspace="4" alt="Screenshot 0028" /></a>
</p>
<p>
In these folders you need to copy the following files:
</p>
<p>
Into the js folder:
</p>
<ul>
<li>prototype.js</li>
<li>lightbox.js</li>
<li>effects.js</li>
<li>scriptaculous.js</li>
</ul>
<p>
into the css folder:
</p>
<ul>
<li>lightbox.css</li>
<li></li>
</ul>
<p>
into the images folder:
</p>
<ul>
<li>loading.gif</li>
<li>prevlabel.gif</li>
<li>blank.gif</li>
<li>next.gif</li>
<li>closelabel.gif</li>
<li>close.gif</li>
<li>nextlabel.gif</li>
<li>prev.gif</li>
<li></li>
</ul>
<p>
Now we can edit our page that has the picture(s) we wish to link to the lightbox.
</p>
<p>
The first stage is to make sure your images have two versions, a <em>full<br />
<br />size</em> and a <em>thumbnail</em>. I generally make the thumbnails in the range 64&#215;64<br />
<br />pixels up to 128&#215;128 pixels depending on the situation. If i had a picture<br />
<br />called <em>photo001.jpg</em> then the thumbnail woudl be something like <em>picture001-thm.jpg</em>.
</p>
<p>
Create a final folder called <em>photos</em> and put your photos, pictures and thumbnails<br />
<br />into this. This fourth folder is for any images you want to display that are not part of the general styling of the site.
</p>
<p>
Now we can insert the required javascript and css links into the document:
</p>
<p>
All these items go into the &lt;head&gt; &#8230; &lt;/head&gt; area in the code.
</p>
<p>
The first bit you are familiar with (using CSS links), and that is:
</p>
<ul>
<li><code>&lt;link href="css/lightbox.css" rel="stylesheet" type="text/css" media="screen" /&gt;</code></li>
</ul>
<p>
This links to the css for the lightbox. It makes it only used on the screen.
</p>
<p>
Next we insert the javascript links. The system uses four files. The LightBox<br />
<br />file which contains the lightbox specific details, plus the files for<br />
<br />the effects (effects.js). The last two (lightbox.js and<br />
<br />scriptaculous.js) are specific &#8220;building blocks&#8221;<br />
<br />that provide a lot of extra functions that are beyond the scope of the<br />
<br />tutorial. They are required to get lightbox running.
</p>
<p>
these require links in the head area as did the css. The links look like<br />
<br />the following:
</p>
<p>
<code>&lt;script type="text/javascript" src="js/prototype.js"&gt;&lt;/script&gt;<br />
<br />&lt;script type="text/javascript" src="js/scriptaculous.js?load=effects"&gt;&lt;/script&gt;<br />
<br />&lt;script type="text/javascript" src="js/lightbox.js"&gt;&lt;/script&gt;</code>
</p>
<p>
Now the order <strong>is</strong> important.
</p>
<p>
Now we are ready.
</p>
<p>
The head section will look similar to this:
</p>
<p>
<a href="http://c475.edublogs.org/files/2006/04/screenshot_0030.jpg"><img src="http://c475.edublogs.org/files/2006/04/screenshot_0030-tm.jpg" height="100" width="456" border="1" hspace="4" vspace="4" alt="Screenshot 0030" /></a>
</p>
<p>
Any other CSS and JavaScript can be placed after line 8 in the sample<br />
<br />shown.
</p>
<p>
Now we can turn our attention to the actual images.
</p>
<p>
In the main body of your page, if you wish to use a lightbox effect on<br />
<br />any image then you do the following steps.
</p>
<p>
Insert the image as normal.
</p>
<p>
Insert the image&#8217;s thumbnail immidiately to the right of the image.    For<br />
<br />example the code below shown the flow2a and flow2a-thm files inserted<br />
<br />intot he code:
</p>
<p>
<code>&lt;img src="photos/flow2a.jpg" alt="The<br />
<br />Flow" width="639" height="510" /&gt;<br />
<br />&lt;img<br />
<br />src="photos/flow2a-thm.jpg" alt="The flow thumbnail" width="100" height="100" /&gt;</code>
</p>
<p>
Now we modify the code to create our lightbox link:
</p>
<p>
We start by changing the first img src into an a href, removing the width<br />
<br />and height sections, plus the / before the &gt;
</p>
<p>
&lt;a href=&#8221;photos/flow2a.jpg&#8221; alt=&#8221;The<br />
<br />Flow&#8221;&gt;<br />
<br />&lt;img src=&#8221;photos/flow2a-thm.jpg&#8221; alt=&#8221;The flow thumbnail&#8221; width=&#8221;100&#8243; height=&#8221;100&#8243; /&gt;
</p>
<p>
Now change the alt to title and if you wish extend the title of the image:
</p>
<p>
<code>&lt;a href="photos/flow2a.jpg" title="The<br />
<br />Flow, and image "&gt;</code>
</p>
<p>
We now add the rel=&#8221;lightbox&#8221; attribute to the a href. This<br />
<br />is magic dust that makes the lightbox code work with the image.
</p>
<p>
<code>&lt;a href="photos/flow2a.jpg" title="The Flow, and<br />
<br />image " rel="lightbox" &gt;</code>
</p>
<p>
Now<br />
<br />add a &lt;/a&gt; after the thumbnail:
</p>
<p>
<code>&lt;a href ="photos/flow2a.jpg" title="The Flow, and image " rel="lightbox" &gt;<br />
<br />&lt;img<br />
<br />src="photos/flow2a-thm.jpg" alt="The flow thumbnail" width="100" height="100" /&gt;<br />
<br />&lt;/a&gt;</code>
</p>
<p>
And there we have it. One photo lightbox.
</p>
<p>
If you do multiple images then you only need to repeat the steps for the<br />
<br />images.
</p>
<p><!-- technorati tags start -->
<p>Technorati Tags: <a href="http://www.technorati.com/tag/lightbox" rel="tag">lightbox</a>, <a href="http://www.technorati.com/tag/tutorial" rel="tag">tutorial</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://c475.edublogs.org/2006/04/19/creating-a-lightbox-for-your-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS, Frames and usability</title>
		<link>http://c475.edublogs.org/2006/04/12/css-frames-and-usability/</link>
		<comments>http://c475.edublogs.org/2006/04/12/css-frames-and-usability/#comments</comments>
		<pubDate>Wed, 12 Apr 2006 06:55:54 +0000</pubDate>
		<dc:creator>Ady</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://c475.edublogs.org/2006/04/12/css-frames-and-usability/</guid>
		<description><![CDATA[<p>
http://www.456bereastreet.com/lab/cssframes/ There are other variants of this including a very nicely done version at Sitepoint that includes a "ragged" / uneven edge that the text slides from beneath.  http://www.sitepoint.com/search/search.php?ps=10&#38;q=fixed+border&#38;submit=Search Also full width, fluid layouts can use these headers if you so wish, and an example is shown at the CSS Play site.
</p>]]></description>
			<content:encoded><![CDATA[<p>
Creating frames of information is possible in CSS, but not quite the same way that you may be familiar with FRAMES in HTML.
</p>
<p>
A good example below shows the header and footer are fixed in position with a fixed width, centered layout. It comes from the <a href="http://www.456bereastreet.com/" title="456 Berea Street (offsite link)">456 Berea Street</a> article on Frames and Accessibility.
</p>
<p>
<a href="http://c475.edublogs.org/files/2006/04/screenshot_22.jpg"><img src="http://c475.edublogs.org/files/2006/04/screenshot_22-tm.jpg" height="100" width="127" border="1" hspace="4" vspace="4" alt="Screenshot 22" /></a><br />

</p>
<p>
<a href="http://www.456bereastreet.com/lab/cssframes/" title="456 Berea Street CSS Frames sample (offsite link)">http://www.456bereastreet.com/lab/cssframes/</a>
</p>
<p>
There are other variants of this including a very nicely done version at Sitepoint that includes a &#8220;ragged&#8221; / uneven edge that the text slides from beneath.
</p>
<p>
<a href="http://c475.edublogs.org/files/2006/04/screenshot_23.jpg"><img src="http://c475.edublogs.org/files/2006/04/screenshot_23-tm.jpg" height="100" width="143" border="1" hspace="4" vspace="4" alt="Screenshot 23" /></a><br />

</p>
<p>
<a href="http://www.sitepoint.com/search/search.php?ps=10&amp;q=fixed+border&amp;submit=Search" title="Sitepoint Search with the scroll up, overlapping border (offsite link)">http://www.sitepoint.com/search/search.php?ps=10&amp;q=fixed+border&amp;submit=Search</a>
</p>
<p>
Also full width, fluid layouts can use these headers if you so wish, and an example is shown at the CSS Play site.
</p>
<p>
<a href="http://c475.edublogs.org/files/2006/04/screenshot_24.jpg"><img src="http://c475.edublogs.org/files/2006/04/screenshot_24-tm.jpg" height="100" width="108" border="1" hspace="4" vspace="4" alt="Screenshot 24" /></a>
</p>
<p>
<a href="http://www.cssplay.co.uk/layouts/fixit.html" title="Full width framing header and footer (offsite link)">http://www.cssplay.co.uk/layouts/fixit.html</a>
</p>
<p>the tutorial to show this is at: <a href="http://www.webreference.com/programming/css_frames/index.html" title="How to Create a Frames Layout with CSS (offsite link)">How to Create a Frames Layout with CSS</a>.</p>
<p>
The CSS play site also shows absolutely position content within the page. Nice little effect, but why we&#8217;d need it I am not sure (yet).
</p>
<p>
What can you see could be drawbacks of these methods? How much hacking is needed to get IE to behave correctly?
</p>
<p>
Do you know of any other examples for fixed header and/or footers?
</p>
<p><!-- technorati tags start -->
<p>Technorati Tags: <a href="http://www.technorati.com/tag/CSS" rel="tag">CSS</a>, <a href="http://www.technorati.com/tag/Frames" rel="tag">Frames</a>, <a href="http://www.technorati.com/tag/Layout" rel="tag">Layout</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://c475.edublogs.org/2006/04/12/css-frames-and-usability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Centering blocks</title>
		<link>http://c475.edublogs.org/2006/04/11/centering-blocks/</link>
		<comments>http://c475.edublogs.org/2006/04/11/centering-blocks/#comments</comments>
		<pubDate>Tue, 11 Apr 2006 07:39:53 +0000</pubDate>
		<dc:creator>Ady</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://c475.edublogs.org/2006/04/11/centering-blocks/</guid>
		<description><![CDATA[a quick pointer to centering blocks was written last year and is shown at: http://c476.edublogs.org/2005/11/15/css-hints-centering-blocks/
]]></description>
			<content:encoded><![CDATA[<p>a quick pointer to centering blocks was written last year and is shown at: http://c476.edublogs.org/2005/11/15/css-hints-centering-blocks/</p>
]]></content:encoded>
			<wfw:commentRss>http://c475.edublogs.org/2006/04/11/centering-blocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; Albino black sheep &#8211; CSS Live Design</title>
		<link>http://c475.edublogs.org/2006/03/12/tutorial-albino-black-sheep-css-live-design/</link>
		<comments>http://c475.edublogs.org/2006/03/12/tutorial-albino-black-sheep-css-live-design/#comments</comments>
		<pubDate>Sun, 12 Mar 2006 12:27:33 +0000</pubDate>
		<dc:creator>Ady</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://c475.edublogs.org/2006/03/12/tutorial-albino-black-sheep-css-live-design/</guid>
		<description><![CDATA[<p>
OK, please follow this tutorial through and you will be surprised what you will see from the code and examples.
</p>]]></description>
			<content:encoded><![CDATA[<p>
OK, please follow this tutorial through and you will be surprised what you will see from the code and examples.
</p>
<p>
<a href="http://www.albinoblacksheep.com/">Albino Black Sheep</a> &#8211; <a href="http://www.albinoblacksheep.com/livedesign/">CSS Live Design</a>
</p>
<p>
Also useful will be the <a href="http://www.albinoblacksheep.com/text/xhtml01.php">HTML and XHTML</a> tutorial. Then there is also a <a href="http://www.albinoblacksheep.com/text/font">CSS &#38; Fonts</a> tutorial to help you, and finally a <a href="http://www.albinoblacksheep.com/text/background">CSS Backgrounds</a> tutorial.
</p>
<p>
Ady</p>
]]></content:encoded>
			<wfw:commentRss>http://c475.edublogs.org/2006/03/12/tutorial-albino-black-sheep-css-live-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Further Links &#8211; CSS and more</title>
		<link>http://c475.edublogs.org/2006/03/09/further-links-css-and-more/</link>
		<comments>http://c475.edublogs.org/2006/03/09/further-links-css-and-more/#comments</comments>
		<pubDate>Thu, 09 Mar 2006 08:10:35 +0000</pubDate>
		<dc:creator>Ady</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://c475.edublogs.org/2006/03/09/further-links-css-and-more/</guid>
		<description><![CDATA[
CSS Help Pile: Links and Discussion About the Best CSS Resources on the web
CSS Basics &#8211; Making Cascading Style Sheets Easy to Understand
Writing cross-browser CSS &#124; 456 Berea Street
Dnevnik eklektika &#183; CSS Stamps
johnoxton.co.uk: Scalable logos
SkimCSS &#8211; Skim Everything (CSS) Cascading Style Sheet Related!
24 ways: Centered Tabs with CSS
Friendly Bit &#187; Cross-browser strategies for CSS
Managing HTML [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.artypapers.com/csshelppile/">CSS Help Pile: Links and Discussion About the Best CSS</a> Resources on the web</li>
<li><a href="http://www.cssbasics.com/">CSS Basics &#8211; Making Cascading Style Sheets Easy to Understand</a></li>
<li><a href="http://www.456bereastreet.com/archive/200602/writing_crossbrowser_css/">Writing cross-browser CSS | 456 Berea Street</a></li>
<li><a href="http://dnevnikeklektika.com/css/css-stamps/">Dnevnik eklektika &#183; CSS Stamps</a></li>
<li><a href="http://johnoxton.co.uk/article/23/scalable-logos">johnoxton.co.uk: Scalable logos</a></li>
<li><a href="http://www.skimcss.com/skimlist">SkimCSS &#8211; Skim Everything (CSS) Cascading Style Sheet Related!</a></li>
<li><a href="http://24ways.org/advent/centered-tabs-with-css">24 ways: Centered Tabs with CSS</a></li>
<li><a href="http://friendlybit.com/css/cross-browser-strategies-for-css/">Friendly Bit &#187; Cross-browser strategies for CSS</a></li>
<li><a href="http://www.communitymx.com/content/article.cfm?cid=E74CC">Managing HTML and CSS to Keep Clients Happy and Avoid &#8216;Disaster&#8217; &#8211; Part One</a></li>
<li><a href="http://www.zimbra.com/community/ajaxtk_download.html">Zimbra&#8482; &#8211; Zimbra Ajax Toolkit Download</a></li>
<li><a href="http://www.markboulton.co.uk/journal/comments/semantic_typography_bridging_the_xhtml_gap/">Semantic Typography: Bridging the XHTML gap : Journal : Mark Boulton | Information design</a></li>
<li><a href="http://muffinresearch.co.uk/archives/2005/10/31/become-a-better-standardista/">Become a better Standardista | Muffin Research Labs</a></li>
<li><a href="http://www.artypapers.com/csshelppile/pcdtr/">PHP + CSS Dynamic Text Replacement (P+C DTR) &#8211; CSS Help Pile</a></li>
<li><a href="http://web-graphics.com/mtarchive/001703.php">wg:Printing CSS background images (sort of)</a></li>
<li><a href="http://www.huddletogether.com/projects/lightbox/">Lightbox JS</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://c475.edublogs.org/2006/03/09/further-links-css-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Tutorials</title>
		<link>http://c475.edublogs.org/2006/03/09/css-tutorials/</link>
		<comments>http://c475.edublogs.org/2006/03/09/css-tutorials/#comments</comments>
		<pubDate>Thu, 09 Mar 2006 05:57:44 +0000</pubDate>
		<dc:creator>Ady</dc:creator>
				<category><![CDATA[Assessments]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://c475.edublogs.org/2006/03/09/css-tutorials/</guid>
		<description><![CDATA[
After being asked about how do floats work, I found a series of very good tutorials on floats and other concepts that are very important in CSS. You are recommended, no let me make that required to read if you are having problems.


I suggest you look at them in the order I have given them, [...]]]></description>
			<content:encoded><![CDATA[<p>
After being asked about how do floats work, I found a series of <strong>very</strong> good tutorials on <em>floats</em> and other concepts that are very important in CSS. You are recommended, no let me make that required to read if you are having problems.
</p>
<p>
I suggest you look at them in the order I have given them, so that the content builds up and you become familiar with the techniques involved.
</p>
<p>
<a href="http://css.maxdesign.com.au/selectutorial/index.htm" target="_blank" title="CSS selectors">Selectutorial</a> at <a href="http://css.maxdesign.com.au" target="_blank" title="Max Design web site">maxdesign</a> shows the various ways to use selectors in CSS.
</p>
<p>
<a href="http://css.maxdesign.com.au/listutorial/index.htm" target="_blank" title="simple tutorials on CSS based lists">Listutorial</a> investigates the use of CSS and lists.
</p>
<p>
<a href="http://css.maxdesign.com.au/floatutorial/" target="_blank" title="step by step css float tutorial">Floatutorial</a> is simple superb and shows you basics through to more advanced concepts.
</p>
<p>
<a href="http://www.maxdesign.com.au/presentation/wentworth/" target="_blank" title="Building a page template in CSS">Building a page template in CSS</a> shows the steps in creating a web page template from the starting mock up to the finished product. Especially useful for the &#8220;personas plus&#8221; development you are undertaking.
</p>
<p>
<a href="http://www.maxdesign.com.au/presentation/open-publish/" target="_blank">From tables to full CSS</a> shows a method of converting a tables based site layout to use CSS.
</p>
<p>
<a href="http://www.maxdesign.com.au/presentation/workshop/" target="_blank">Basic web standards workshop</a> shows you the basics of web standards and their use. There are <strong>seven</strong> parts to the workshop, covering content that includes: Web Standards, What are Web Standards about, and the ideal page structure. (X)HTML and the XHTML dilemma. Semantic markup. Accessibility and why we should bother with it. An introduction to CSS, including why use CSS to separate content from presentation, grouping selectors, shorthand rules, selectors, inheritance and the cascade. Floats and their use including basic float rules, is width required on floats, and floating multiple images to right edge. CSS issues and bugs including margin collapse, trapping margins and IE and the box model to name but a few
</p>
<p>
<a href="http://www.maxdesign.com.au/presentation/liquid-layouts/" target="_blank">Liquid layouts, the joy, pain and tears</a> looks at some of the troubles and pitfalls associated with creating a liquid layout in CSS.
</p>
<p>
<a href="http://www.usability.com.au/resources/ozewai2005/" target="_blank">Page source order and accessibility</a> is a presentation that covers one of the most fundamentally important aspects of accessible semantic web design.
</p>
<p>
<a href="http://www.bigbaer.com/css_tutorials/css.image.text.wrap.htm" target="_blank">CSS Image text wrap</a> shows one way of achieving uneven image wrapping.
</p>
<p>
Read and use the information here to assist you in your work on the Personas Plus page you are developing.
</p>
<p>
Aside: a comprehensive <a href="http://www.tizag.com/htmlT/" target="_blank">HTML tutorial</a> is also found at tizag.com where also you can find a <a href="http://www.tizag.com/cssT/" target="_blank">CSS tutorial</a> as well. <em>Note that the HTML tutorial is really aimed at HTML 4 and not XHTML which is what you are required to use for this course.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://c475.edublogs.org/2006/03/09/css-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site design</title>
		<link>http://c475.edublogs.org/2006/02/12/site-design/</link>
		<comments>http://c475.edublogs.org/2006/02/12/site-design/#comments</comments>
		<pubDate>Sun, 12 Feb 2006 06:41:34 +0000</pubDate>
		<dc:creator>Ady</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://c475.edublogs.org/2006/02/12/site-design/</guid>
		<description><![CDATA[
I discovered a very good web site on site design, methods and development.


Ben Hunt, the principle consultant at scratchmedia has given me permission to use the site, and I thank him for that. The content is in the Creative Commons licensing form.


We&#8217;ll be using Web Design from Scratch as one of the places to refer [...]]]></description>
			<content:encoded><![CDATA[<p>
I discovered a very good web site on site design, methods and development.
</p>
<p>
Ben Hunt, the principle consultant at <a href="http://www.scratchmedia.co.uk" target="_blank" title="scractch media">scratchmedia</a> has given me permission to use the site, and I thank him for that. The content is in the Creative Commons licensing form.
</p>
<p>
We&#8217;ll be using <a href="http://www.webdesignfromscratch.com/" target="_blank" title="Web Design from Scratch, a course in web design">Web Design from Scratch</a> as one of the places to refer to as it keeps things short and simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://c475.edublogs.org/2006/02/12/site-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Books and Resources</title>
		<link>http://c475.edublogs.org/2006/01/31/books-and-resources/</link>
		<comments>http://c475.edublogs.org/2006/01/31/books-and-resources/#comments</comments>
		<pubDate>Mon, 30 Jan 2006 17:01:37 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Fireworks]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://c475.edublogs.org/2006/01/31/books-and-resources/</guid>
		<description><![CDATA[When studying this course most of the lecturers will not specify a text book for youi to use. As a result we will list books that may be useful.
The following is a starter list, but will be extended. If you find a resource that is suitable, add the detaisl to the comments.

Designing Web usability
Jakob Nielsen [...]]]></description>
			<content:encoded><![CDATA[<p>When studying this course most of the lecturers will not specify a text book for youi to use. As a result we will list books that <strong>may</strong> be useful.</p>
<p>The following is a starter list, but will be extended. If you find a resource that is suitable, add the detaisl to the comments.</p>
<dl>
<dt>Designing Web usability</dt>
<dd>Jakob Nielsen [New Riders, 2000]</dd>
<dt>Elements of Web Design, 2nd Ed</dt>
<dd>Darcy DiNuccie [Peachpit, 1998]</dd>
<dt>Macromedia Dreamweaver MX, training from the source</dt>
<dd>[Macromedia Press, 2003]</dd>
<dt>Usability: The site speaks for itself</dt>
<dd>Braun, Gadney, Haughley, Roselli, Synstelien, Walter, Wertheimer [glasshaus, 2002]</dd>
<dt>Macromedia Dreamweaver MX, complete concepts and techniques</dt>
<dd>Shelly, Cashman &amp; Wells [Thomson Course Technology, 2004]</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://c475.edublogs.org/2006/01/31/books-and-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
