<?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>The Unicursal Blog &#187; Web design</title>
	<atom:link href="http://www.unicursalpath.co.uk/wordpress/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unicursalpath.co.uk/wordpress</link>
	<description>Nothing much to see here</description>
	<lastBuildDate>Tue, 14 Dec 2010 15:57:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Web design courses starting Jan 2011</title>
		<link>http://www.unicursalpath.co.uk/wordpress/2010/12/web-design-courses-starting-jan-2011/</link>
		<comments>http://www.unicursalpath.co.uk/wordpress/2010/12/web-design-courses-starting-jan-2011/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 15:56:07 +0000</pubDate>
		<dc:creator>Mr Kevin</dc:creator>
				<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.unicursalpath.co.uk/wordpress/?p=126</guid>
		<description><![CDATA[I have two new 10&#8211;week web design courses, starting in January 2011. 
For the Tuesday evening course at Blachington Mill School in Hove see Web Design with City College Brighton and Hove.
For the Thursday morning course at The Bridge in Brighton see Web Design at The Bridge.
]]></description>
			<content:encoded><![CDATA[<p>I have two new 10&#8211;week web design courses, starting in January 2011. </p>
<p>For the Tuesday evening course at Blachington Mill School in Hove see <a href="http://www.ccb.ac.uk/public/courses/adult/web-design-18-jan-2011-5513.html">Web Design with City College Brighton and Hove</a>.</p>
<p>For the Thursday morning course at The Bridge in Brighton see <a href="http://www.thebridgecommunityeducationcentre.co.uk/courses.php">Web Design at The Bridge</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unicursalpath.co.uk/wordpress/2010/12/web-design-courses-starting-jan-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounded corners, tidy code</title>
		<link>http://www.unicursalpath.co.uk/wordpress/2007/01/rounded-corners-tidy-code/</link>
		<comments>http://www.unicursalpath.co.uk/wordpress/2007/01/rounded-corners-tidy-code/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 22:18:46 +0000</pubDate>
		<dc:creator>Mr Kevin</dc:creator>
				<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.unicursalpath.co.uk/wordpress/?p=10</guid>
		<description><![CDATA[There are many techniques for putting rounded corners on a box. All of them require some deviation from the ideal of clean, semantic (X)HTML for structure, CSS for presentation and scripting for behaviour. 
The technique of placing corner images directly in a page goes against the idea that CSS should be used for presentation and [...]]]></description>
			<content:encoded><![CDATA[<p>There are many techniques for putting rounded corners on a box. All of them require some deviation from the ideal of clean, semantic (X)HTML for structure, CSS for presentation and scripting for behaviour. </p>
<p>The technique of placing corner images directly in a page goes against the idea that CSS should be used for presentation and reduces flexibility (no style-switching). Techniques that use JavaScript seem like overkill to me, and the resulting page code is often the same anyway. </p>
<p>Best let CSS handle it. The cleanest and most concise way I have found uses four &#60;div&#62; elements to call the corner images from a stylesheet. </p>
<p><strong>The code for the page.</strong></p>
<div class="codeinpost"><code>&#60;div id=&quot;container&quot;&#62;<br />
&#60;div class=&quot;nw&quot;&#62;&#60;!-- --&#62;&#60;div class=&quot;ne&quot;&#62;&#60;!-- --&#62;&#60;/div&#62;&#60;/div&#62;<br />
&#60;p&#62;Content&#60;/p&#62;<br />
&#60;div class=&quot;sw&quot;&#62;&#60;!-- --&#62;&#60;div class=&quot;se&quot;&#62;&#60;!-- --&#62;&#60;/div&#62;&#60;/div&#62;<br />
&#60;/div&#62;</code></div>
<p><strong>The code for the stylesheet.</strong></p>
<div class="codeinpost"><code>.nw, .ne, .sw, .se { height: 15px; }<br />
.nw { background: url(nw.gif) no-repeat top left; }<br />
.ne { background: url(ne.gif) no-repeat top right; }<br />
.sw { background: url(sw.gif) no-repeat bottom left; }<br />
.se { background: url(se.gif) no-repeat bottom right; }</code></div>
<p>Pretty straightforward. Using empty &#60;div&#62; elements for presentation like this looks a bit messy but I do not think it is incorrect. The comments are added because some browsers will add default dimensions to an empty &#60;div&#62;. The &#60;div&#62; elements are nested so that there is no need to declare a width on the classes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unicursalpath.co.uk/wordpress/2007/01/rounded-corners-tidy-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSV 10-week web design course</title>
		<link>http://www.unicursalpath.co.uk/wordpress/2007/01/csv-10-week-web-design-course/</link>
		<comments>http://www.unicursalpath.co.uk/wordpress/2007/01/csv-10-week-web-design-course/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 19:29:16 +0000</pubDate>
		<dc:creator>Mr Kevin</dc:creator>
				<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.unicursalpath.co.uk/wordpress/?p=8</guid>
		<description><![CDATA[I will be delivering a 10-week web design course at the CSV Media Clubhouse in Brighton starting February 28th. The course costs £200 and will run on Wednesday evenings from 6pm to 9pm. 
It is an opportunity to design, build and publish your own website and places are still available. The course will focus on [...]]]></description>
			<content:encoded><![CDATA[<p>I will be delivering a 10-week web design course at the CSV Media Clubhouse in Brighton starting February 28th. The course costs £200 and will run on Wednesday evenings from 6pm to 9pm. </p>
<p>It is an opportunity to design, build and publish your own website and places are still available. The course will focus on creating a clean, standards-compliant site using stylesheets for presentation. A blog or simple e-commerce facility may be included as part of your site if you wish. </p>
<p>We will be working mainly in Dreamweaver and Photoshop. No previous experience of these programs is necessary, but you should already have reasonable IT skills to get the most out of the course.</p>
<p>Contact Erin or Alex at CSV on 01273-720894 or at brightonclub@csv.org.uk for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unicursalpath.co.uk/wordpress/2007/01/csv-10-week-web-design-course/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

