<?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>CSS &amp; Design &#8211; Blogvaria</title>
	<atom:link href="https://blog.evaria.com/browse/css-design/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.evaria.com</link>
	<description>The personal pages</description>
	<lastBuildDate>Fri, 29 Nov 2013 15:33:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
<site xmlns="com-wordpress:feed-additions:1">1077093</site>	<item>
		<title>WordPress 3.8 with new and responsive admin design!</title>
		<link>https://blog.evaria.com/2013/wordpress-3-8-with-new-and-responsive-admin-design/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Fri, 29 Nov 2013 15:33:42 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[backend]]></category>
		<category><![CDATA[cross platform]]></category>
		<category><![CDATA[Responsive]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/?p=1488</guid>

					<description><![CDATA[The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th. &#8230; ]]></description>
										<content:encoded><![CDATA[<p>The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th.</p>
<p>3.8 brings together <a href="http://make.wordpress.org/core/features-as-plugins/">several of the features as plugins projects</a> and while this isn&#8217;t our first rodeo, expect this to be more beta than usual. The headline things to test out in this release are:</p>
<ul>
<li>The new admin design, especially the responsive aspect of it. Try it out on different devices and browsers, see how it goes, especially the more complex pages like widgets or seldom-looked-at-places like Press This. Color schemes, which you can change on your profile, have also been spruced up.</li>
<li>The dashboard homepage has been refreshed, poke and prod it.</li>
<li>Choosing themes under Appearance is completely different, try to break it however possible.</li>
<li>There&#8217;s a new default theme, Twenty Fourteen.</li>
<li>Over 250 issues closed already.</li>
</ul>
<p>Given how many things in the admin have changed it&#8217;s extra super duper important to test as many plugins and themes with admin pages against the new stuff. Also if you&#8217;re a developer consider how you can make your admin interface fit the MP6 aesthetic better.</p>
<p>As always, if you think you&#8217;ve found a bug, you can post to theÂ <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a>Â in the support forums. Or, if you&#8217;re comfortable writing a reproducible bug report,Â <a href="http://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also findÂ <a href="http://core.trac.wordpress.org/report/5">a list of known bugs</a>Â andÂ <a href="http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.8">everything we&#8217;ve fixed</a>Â so far.</p>
<p><a href="http://wordpress.org/wordpress-3.8-beta-1.zip">Download WordPress 3.8 Beta 1</a>Â (zip) or use the <a href="http://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you&#8217;ll want â€œbleeding edge nightliesâ€).</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1488</post-id>	</item>
		<item>
		<title>How to remove the active/focus borders</title>
		<link>https://blog.evaria.com/2010/how-to-remove-the-activefocus-borders/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Mon, 03 May 2010 17:26:56 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[active border]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/?p=1238</guid>

					<description><![CDATA[I&#8217;m sure you have noticed that when you click a hyper link, and especially a linked image, a dotted border appears around it. Have a look at CSSplay for more &#8230; ]]></description>
										<content:encoded><![CDATA[<p>I&#8217;m sure you have noticed that when you click a hyper link, and especially a linked image, a dotted border appears around it. <a href="http://www.cssplay.co.uk/menu/nodots.html" target="_blank">Have a look at CSSplay</a> for more examples and proper CSS code fix related to this. </p>
<h4>A few quick solutions</h4>
<p>For those of us using the jQuery Java framework the &#8220;solution&#8221; is incredibly simple. Just call the following function in your header and all dotted borders are gone:</p>
<pre>jQuery("a").focus(function(){this.blur()});</pre>
<p>Using CSS it&#8217;s almost as simple (at least for all browsers except IE):</p>
<pre>a:focus {outline-style: none;} </pre>
<p>Using basic JavaScript the following should do the trick:</p>
<pre>for(var i=0;elm=document.links[i];i++)
{
elm.onfocus=function(){elm.blur();};
}</pre>
<p>Some would probably say that this shouldn&#8217;t be done because the active/focus dotted border is there to show visitors who are using tabbed link selection which link is selected. But when we are using CSS we can style our own active/focus state and in this case the dotted border is not so necessary. I&#8217;ll appreciate your take on this as I&#8217;ve debated this &#8220;issue&#8221; with some of my clients on several occasions.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1238</post-id>	</item>
		<item>
		<title>Rounded corners without graphics</title>
		<link>https://blog.evaria.com/2009/rounded-corners-without-graphics/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Thu, 17 Sep 2009 08:54:27 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[tricks]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/?p=1152</guid>

					<description><![CDATA[I know this isn&#8217;t a new trick but I&#8217;ll post it anyway for my own records, and anyone else that may find it useful. As shown below you can add &#8230; ]]></description>
										<content:encoded><![CDATA[<p>I know this isn&#8217;t a new trick but I&#8217;ll post it anyway for my own records, and anyone else that may find it useful. As shown below you can add a few lines of code to your stylesheet(s) and get round corners on almost any style element that supports borders.</p>
<h3>CSS rounded corners code</h3>
<pre>.corners {
	-moz-border-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}</pre>
<p>As you can see the first line is specifically for Firefox, the next 4 for Safari/Chrome and the last 4 for any browser that fully supports <a href="http://www.w3.org/TR/2005/WD-css3-background-20050216/#the-border-radius" target="_blank">CSS3</a>.</p>
<p><span id="more-1152"></span></p>
<p>The reason for keeping it separate is that you can add it like a second class to any style reference you are using within your HTML mark-up. For example, if you have defined the following styling to your submit button:</p>
<pre>input.send {
	font:1.5em Arial, Helvetica, sans-serif;
	font-weight: bold;
	color:#eff;
	background: #036;
	border: 1px solid #369;
	height:30px;
	cursor:pointer;
	}
input.send:hover {
	border: 1px solid #036;
	}</pre>
<p>Then you can add the following to get the desired result:</p>
<pre>&lt;input class="send corners" type="submit" value="Send" /&gt;</pre>
<p>I&#8217;ll leave it with you to see the end result <img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<h3>Known limitations</h3>
<p>It may come as no surprise that this effect isn&#8217;t visible in Internet Explorer. At least not on any versions I&#8217;ve tried. If you believe it is please let me know what version you are running, but for any version below 8 it definitely isn&#8217;t showing.</p>
<h3>Conclusion</h3>
<p>I believe it&#8217;s a nice little extra styling option that saves you the trouble of creating graphics for some parts of your site to get the desired effect. And although it isn&#8217;t supported by all browsers and versions it falls back nicely to standard borders so there&#8217;s really nothing to worry about.</p>
<p>Please feel free to share cool effects and additional tricks if you know any. I&#8217;d love to see what can be done using only CSS!</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1152</post-id>	</item>
		<item>
		<title>Include Apple&#8217;s OS X fonts on Windows</title>
		<link>https://blog.evaria.com/2009/include-apples-os-x-fonts-on-windows/</link>
		
		<dc:creator><![CDATA[Wennichen]]></dc:creator>
		<pubDate>Sat, 11 Jul 2009 07:33:56 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Lucida]]></category>
		<category><![CDATA[OS X fonts]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/?p=1128</guid>

					<description><![CDATA[It&#8217;s common knowledge that a lot of (most) web/graphic designers uses a Mac. Consequently, they tend to use Mac fonts in their style sheets as their first options (at least &#8230; ]]></description>
										<content:encoded><![CDATA[<p>It&#8217;s common knowledge that a lot of (most) web/graphic designers uses a Mac. Consequently, they tend to use Mac fonts in their style sheets as their first options (at least quite often). Unfortunately fonts like Lucida Grande, Lucida sans etc. are NOT included in the normal Windows package.</p>
<p><img data-recalc-dims="1" fetchpriority="high" decoding="async" data-attachment-id="1129" data-permalink="https://blog.evaria.com/2009/include-apples-os-x-fonts-on-windows/windows-7-vs-mac-os-x-leopard/" data-orig-file="https://i0.wp.com/blog.evaria.com/wp-content/uploads/2009/07/windows-7-vs-mac-os-x-leopard.png?fit=500%2C264&amp;ssl=1" data-orig-size="500,264" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Finally get the OS X fonts on your Windows installation" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/blog.evaria.com/wp-content/uploads/2009/07/windows-7-vs-mac-os-x-leopard.png?fit=500%2C264&amp;ssl=1" data-large-file="https://i0.wp.com/blog.evaria.com/wp-content/uploads/2009/07/windows-7-vs-mac-os-x-leopard.png?fit=500%2C264&amp;ssl=1" class="alignnone size-full wp-image-1129" title="Finally get the OS X fonts on your Windows installation" src="https://i0.wp.com/blog.evaria.com/wp-content/uploads/2009/07/windows-7-vs-mac-os-x-leopard.png?resize=500%2C264&#038;ssl=1" alt="Finally get the OS X fonts on your Windows installation" width="500" height="264" /></p>
<p>Well know you can get it too! After a bit of googeling I finally found the best emulations of all the <a href="http://www.jonmega.com/iceman/stuff/fonts/" target="_blank">OS X system fonts</a>. If you just want to get the emulated Mac Lucida fonts <a href="http://www.jonmega.com/iceman/files/lucidas.zip" target="_blank">go here</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1128</post-id>	</item>
		<item>
		<title>Yet another IE fix</title>
		<link>https://blog.evaria.com/2008/yet-another-ie-fix/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Tue, 27 May 2008 09:14:47 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[standards]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/?p=850</guid>

					<description><![CDATA[Later this year Microsoft will release a public version of their next browser. Compared to previous versions Internet Explorer 8 will by default be set to follow web standards rather &#8230; ]]></description>
										<content:encoded><![CDATA[<p>Later this year Microsoft will release a public version of their next browser. Compared to previous versions Internet Explorer 8 will by default be set to follow web standards rather than &#8220;MS standards&#8221;. This will create the need for yet another IE fix concerning styling and layout.</p>
<p>The following <a href="http://support.microsoft.com/kb/952030" target="_blank">support article from Microsoft explains how</a> you can add a little code to the file header to keep the old behavior (emulate IE7). You can off course also assume that IE8 will behave like Opera, Safari and Firefox and just keep the rules for older IE versions (I think I prefer the latter if it turns out okay).</p>
<p>You can <a href="http://www.microsoft.com/windows/products/winfamily/ie/ie8/getitnow.mspx" target="_blank">download and test IE8 Beta here</a>.</p>
<p>Fingers crossed <img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">850</post-id>	</item>
		<item>
		<title>Another browser detection method</title>
		<link>https://blog.evaria.com/2008/another-browser-detection-method/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Fri, 25 Apr 2008 12:49:56 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[browser detection]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/?p=813</guid>

					<description><![CDATA[First let me emphasise that I&#8217;m not a big fan of making up different styling rules for the various browsers. But in some (most) cases it&#8217;s an absolute necessity. Before &#8230; ]]></description>
										<content:encoded><![CDATA[<p>First let me emphasise that I&#8217;m not a big fan of making up different styling rules for the various browsers. But in some (most) cases it&#8217;s an absolute necessity.</p>
<p>Before I continue I&#8217;d like to mention Dean Edwards <a href="http://code.google.com/p/ie7-js/" target="_blank">IE7 JavaScript library</a> which makes Microsoft Internet Explorer behave like a standards-compliant browser. It fixes many HTML and CSS issues and makes transparent PNG work correctly under IE5 and IE6. That saves you the hassle of making tons of IE specific style sheets and embedding them using these <a href="http://www.positioniseverything.net/articles/multiIE.html" target="_blank">conditional comments</a> (bottom of page).</p>
<p>So with IE out of the way there&#8217;s still a few Opera and Safari &#8220;bugs&#8221; that may need attention. Instead of relying on JavaScript, which will be ignored by some browsers or users that have disabled Java, you may try this PHP approach that I successfully implemented on one of my sites today.</p>
<p><span id="more-813"></span></p>
<p><strong>The simple approach</strong></p>
<p>Detect the Safari browser and insert your css like this:</p>
<pre>&lt;?php if (strstr($_SERVER['HTTP_USER_AGENT'], 'Safari')) : ?&gt;
    &lt;style type="text/css"&gt;
    &lt;!--
        div#safari{your-css-rules-here}
    --&gt;
    &lt;/style&gt;
&lt;?php endif; ?&gt;</pre>
<p>Detect the Opera browser and insert your css like this:</p>
<pre>&lt;?php if (strstr($_SERVER['HTTP_USER_AGENT'], 'Opera')) : ?&gt;
&lt;style type="text/css"&gt;
    &lt;!--
        div#opera{your-css-rules-here}
    --&gt;
&lt;/style&gt;
&lt;?php endif; ?&gt;</pre>
<p>Couldn&#8217;t be any easier than that could it <img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> You may off course link to an external style sheet as well if you like. The above is just meant to illustrate the method. If you got an even easier way please feel free to share!</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">813</post-id>	</item>
		<item>
		<title>CSS Naked Day 2008</title>
		<link>https://blog.evaria.com/2008/css-naked-day-2008/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Wed, 09 Apr 2008 16:08:54 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Internet stuff]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/2008/css-naked-day-2008/</guid>

					<description><![CDATA[The idea behind this event is to promote Web Standards. Plain and simple. This includes proper use of (x)html, semantic markup, a good hierarchy structure, and of course, a good &#8230; ]]></description>
										<content:encoded><![CDATA[<p>The idea behind this event is to promote Web Standards. Plain and simple. This includes proper use of (x)html, semantic markup, a good hierarchy structure, and of course, a good &#8216;ol play on words.</p>
<p>To participate you need to remove all CSS from your website, stripping it entirely of its design. However, I only noticed this today (too late for once) so I&#8217;ll be in for next year, for sure!</p>
<p>To read more about this initiative, and have a look at how a lot of your fellow bloggers look in the &#8220;nude, then you should visit <a href="http://naked.dustindiaz.com/" target="_blank">naked.dustindiaz.com</a></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">772</post-id>	</item>
		<item>
		<title>Introducing markItUp!</title>
		<link>https://blog.evaria.com/2008/introducing-markitup/</link>
		
		<dc:creator><![CDATA[Max C]]></dc:creator>
		<pubDate>Sun, 06 Apr 2008 14:59:51 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/2008/introducing-markitup/</guid>

					<description><![CDATA[markItUp! is a JavaScript plugin built on the jQuery library. It allows you to turn any textarea into a markup editor. Html, Textile, Wiki Syntax, Markdown, BBcode or even your &#8230; ]]></description>
										<content:encoded><![CDATA[<p>markItUp! is a JavaScript plugin built on the jQuery library. It allows you to turn any textarea into a markup editor. Html, Textile, Wiki Syntax, Markdown, BBcode or even your own Markup system can be easily implemented.</p>
<p><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/blog.evaria.com/wp-content/uploads/2008/04/markitup.png?w=735&#038;ssl=1" alt="markItUp!" /></p>
<p>markItUp! is not meant to be a â€œFull-Features-Out-of-the-Boxâ€-editor. Instead it is a very lightweight, customizable and flexible engine made to meet the developer&#8217;s needs in their CMSes, blogs, forums or websites.</p>
<p><strong>Note!</strong> markItUp! is not a WYSIWYG editor, and it never will be.</p>
<p>Visit <a href="http://markitup.jaysalvat.com/home/" target="_blank">Jay Salvat</a> for more information, examples and to download the source.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">767</post-id>	</item>
		<item>
		<title>Spry framework for Ajax</title>
		<link>https://blog.evaria.com/2008/spry-framework-for-ajax/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Mon, 25 Feb 2008 10:51:24 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/2008/spry-framework-for-ajax/</guid>

					<description><![CDATA[The Spry framework for Ajax is a JavaScript library that provides easy-to-use yet powerful Ajax functionality that allows designers to build pages that provide a richer experience for their users. &#8230; ]]></description>
										<content:encoded><![CDATA[<p>The Spry framework for Ajax is a JavaScript library that provides easy-to-use yet powerful Ajax functionality that allows designers to build pages that provide a richer experience for their users. It is designed to take the complexity out of Ajax and allow designers to easily create Web 2.0 pages.</p>
<p>The Spry framework is a way to incorporate XML, JSON or HTML data into pages using HTML, CSS, and a minimal amount of JavaScript, without the need for refreshing the entire page. Spry also provides easy to build and style widgets, providing advanced page elements for end users.</p>
<p>The Spry framework is HTML-centric, and easy to implement for users with basic knowledge of HTML, CSS and JavaScript. The framework was designed such that the markup is simple and the JavaScript is minimal. It can be used by anyone who is authoring for the web in their tool of choice.</p>
<p>To see what is possible using Spry, check out the <a href="http://labs.adobe.com/technologies/spry/home.html" target="_blank">Spry home page</a>, that         show the Spry framework in action.</p>
<p>The Spry prerelease download was updated today to support the shipping version of <a href="http://labs.adobe.com/wiki/index.php/AIR_Badge" target="_blank">Adobe AIR</a>. Visit Adobe Labs toÂ  <a href="http://www.macromedia.com/go/labs_spry_download" target="_blank">download</a> the new version.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">709</post-id>	</item>
		<item>
		<title>Preparing for HTML 5</title>
		<link>https://blog.evaria.com/2008/preparing-for-html-5/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Sat, 26 Jan 2008 10:16:35 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/2008/preparing-for-html-5/</guid>

					<description><![CDATA[Last year Tim Berners-Lee, director of the World Wide Web Consortium (W3C), announced that it was about time to revise the HTML (HyperText Markup Language). Version 4 came back in &#8230; ]]></description>
										<content:encoded><![CDATA[<p>Last year <a href="http://en.wikipedia.org/wiki/Tim_Berners-Lee" target="_blank">Tim Berners-Lee</a>, director of the World Wide Web Consortium (<a href="http://en.wikipedia.org/wiki/World_Wide_Web_Consortium" target="_blank">W3C</a>), announced that it was about time to revise the HTML (HyperText Markup Language). Version 4 came back in 1997, followed by a minor update  in the end of 1999 (4.01).</p>
<p>Recently W3C announced that the initial draft of HTML 5 is ready. The working draft is made by W3Cs HTML Working Group, consisting of almost 400 members from companies like AOL, Apple, Google, IBM, Microsoft, Mozilla, Nokia and Opera among others.</p>
<p>The web has changed dramatically since HTML 4 saw the day of light. Moving from static pages to advanced web applications and extensive use of multimedia.</p>
<p>W3C says Ajax and related innovations have pushed the need  for a new standard that allows developers to create web applications that works on all platforms, both stationary and mobile.</p>
<p><span id="more-629"></span></p>
<p>The initial HTML 5 draft includes several news. Among them a new interface (API) for drawing 2 dimensional graphics, integration of sound and video, administration of persistent data storage on the client side and the possibility of on-line document editing (both in parts and full).</p>
<p>Presentation of common side elements are made easier through tags like <em>section</em>, <em>footer</em>, <em>nav</em> (for navigation) and <em>figure</em>. The latter is meant to add a title or image text to photos and other integrated content.</p>
<p>Some attributes to existing tags will no longer be supported since their functionality are handled better through CSS. One example is <em>align</em>, which is used with a lot of tags today and <em>border</em> in combination with <em>table</em>, <em>img</em> and <em>object</em>.</p>
<p><a href="http://www.w3.org/TR/html5/" title="HTML 5 - A vocabulary and associated APIs for HTML and XHTML" target="_blank">This specification defines the 5th major revision of the core language of the World Wide Web, HTML</a>. In this version, new features are introduced to help Web application authors, new elements are introduced based on    research into prevailing authoring practices, and special attention has been given to defining clear conformance criteria for user agents in an effort to improve interoperability<a href="http://www.w3.org/TR/2008/WD-html5-20080122/" target="_blank"></a>. Developers may also want to read how <a href="http://www.w3.org/TR/html5-diff/" title="The differences between HTML 4 and HTML 5" target="_blank">HTML 5 differences from HTML 4</a>.</p>
<p>Developers can choose between normal HTML syntax and XML syntax when constructing pages in HTML 5.</p>
<p>The future work on HTML 5 will remain public. Let&#8217;s just hope the browser companies (especially Microsoft) manages to follow the standards and deliver updates fast and frequently.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">629</post-id>	</item>
		<item>
		<title>Web Design Survey 2007</title>
		<link>https://blog.evaria.com/2007/findings-from-the-web-design-survey/</link>
		
		<dc:creator><![CDATA[Max C]]></dc:creator>
		<pubDate>Sun, 04 Nov 2007 11:40:50 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Internet stuff]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/2007/findings-from-the-web-design-survey/</guid>

					<description><![CDATA[In April 2007, A List Apart and An Event Apart conducted a survey of people who make websites. Close to 33,000 web professionals answered the survey&#8217;s 37 questions, providing the &#8230; ]]></description>
										<content:encoded><![CDATA[<p>In April 2007, <a href="http://www.alistapart.com" target="_blank"><cite>A List Apart</cite></a> and <a href="http://www.aneventapart.com/" target="_blank"><cite>An Event Apart</cite></a> conducted a survey of people who make websites. Close to 33,000 web professionals answered the survey&#8217;s 37 questions, providing the first data ever collected on the business of web design and development as practised in the U.S. and worldwide.</p>
<p>33,000 responses is a lot of data. To make sense of it, An Event Apart commissioned statisticians Alan Brickman and Larry Yu to translate raw data into meaningful findings. The findings are now nicely presented in a 80+ pages PDF presentation.</p>
<blockquote><p>The findings we present here have never been seen before, because until now, no one has ever conducted public research to learn the facts of our profession. This report is not the last word on web work; it is only the beginning of a long conversation. Read, reflect, and let us hear from you.</p></blockquote>
<p>Read the <a href="http://www.alistapart.com/articles/2007surveyresults" target="_blank">full story</a> or skip directly to the <a href="http://www.alistapart.com/d/2007surveyresults/2007surveyresults.pdf" target="_blank">download</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">503</post-id>	</item>
		<item>
		<title>Never use Word as your Web editor</title>
		<link>https://blog.evaria.com/2007/never-use-word-as-your-web-editor/</link>
		
		<dc:creator><![CDATA[Max C]]></dc:creator>
		<pubDate>Sun, 21 Oct 2007 12:57:23 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Internet stuff]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/2007/never-use-word-as-your-web-editor/</guid>

					<description><![CDATA[I&#8217;ve written a few news stories about Roger Marris, an Englishman diagnosed with an aggressive form of incurable NHL that has no known cause &#8211; Non-Hodgkins Lymphoma (one of many &#8230; ]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve written a few news stories about Roger Marris, an Englishman diagnosed with an aggressive form of incurable NHL that has no known cause &#8211; Non-Hodgkins Lymphoma (one of many illnesses grouped under the general term â€“ cancer; Lymphoma is known as lymphatic cancer).</p>
<p>Digression: To improve the chances of people in the future finding themselves in a similar position, Rog wanted to try to raise a minimum of Â£10,000 while he felt able to do so. Mission is now accomplished! Rog has now completed this challenge and has surpassed his original target by raising more than Â£25,000 for charity. Congratulations!!</p>
<p>Anyway&#8230; He&#8217;s website, which I believe someone has created for him, are created using MS Word as the HTML editor. This has unfortunately resulted in a website being almost inaccessible for anyone using a browser not named IE.</p>
<p>Take a look at <a href="http://www.aroundwithrog.co.uk" title="Around With Rog" target="_blank">www.aroundwithrog.co.uk</a> using IE and then try it in Opera, Firefox or anything else&#8230;</p>
<p>Someone should really redo his pages! A good cause deserves better.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">468</post-id>	</item>
		<item>
		<title>Multiple versions of IE on 1 PC</title>
		<link>https://blog.evaria.com/2007/multiple-versions-of-ie-on-1-pc/</link>
		
		<dc:creator><![CDATA[Max C]]></dc:creator>
		<pubDate>Tue, 09 Oct 2007 15:00:09 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Software]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/2007/multiple-versions-of-ie-on-1-pc/</guid>

					<description><![CDATA[Ever wanted to test your website in various versions of Internet Explorer?It is possible to run Internet Explorer in standalone mode without having to over-write previous versions thanks to Joe &#8230; ]]></description>
										<content:encoded><![CDATA[<p>Ever wanted to test your website in various versions of Internet Explorer?It is possible to run Internet Explorer in standalone mode without having to over-write previous versions thanks to <a href="http://archivist.incutio.com/viewlist/css-discuss/33150" target="_blank">Joe Maddalone</a> who came up with a way of achieving that in November 2003. Basically, Internet Explorer is run by exploiting a known workaround to DLL hell &#8211; which was introduced in Windows 2000 and later versions &#8211; called DLL redirection.</p>
<p><a href="http://tredosoft.com/user/1" target="_blank">Yousif</a> over at TredoSoft has written a nice <a href="http://tredosoft.com/Multiple_IE" target="_blank">multiple IE installer</a> which includes the following versions; IE3, IE4.01, IE5, IE5.5 and IE6. Combine that with the <a href="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx" target="_blank">latest release of IE7</a> (now also for people without genuine Windows versions), and you can see how your pages looks through the eyes of Microsoft&#8217;s Internet Explorer from the early Internet ages until today.</p>
<p>Very handy but also very frustrating when you consider how far away Microsoft still are when it comes to keeping up with web standards etc.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">452</post-id>	</item>
		<item>
		<title>Lightbox Media Update</title>
		<link>https://blog.evaria.com/2007/lightbox-media-update/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Thu, 27 Sep 2007 13:58:55 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/2007/lightbox-media-update/</guid>

					<description><![CDATA[This post is just to announce the immediate availability of an updated version of my Lightbox Media add-on. The latest version fixes problems related to upper-case file names and also &#8230; ]]></description>
										<content:encoded><![CDATA[<p>This post is just to announce the immediate availability of an updated version of my <a href="https://blog.evaria.com/2007/lightbox-media/" title="Lightbox Media updated">Lightbox Media</a> add-on.</p>
<p>The latest version fixes problems related to upper-case file names and also lets you specify the size of the overlay when opening iframed content.</p>
<p><a href="https://blog.evaria.com/downloads/" title="Download Lightbox Media 1.2">Get the new code including examples from my download page</a>.</p>
<p>Tested in IE, Opera, Safari and Firefox.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">436</post-id>	</item>
		<item>
		<title>Introducing SWFObject</title>
		<link>https://blog.evaria.com/2007/introducing-swfobject/</link>
					<comments>https://blog.evaria.com/2007/introducing-swfobject/#comments</comments>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Tue, 24 Jul 2007 12:24:01 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/2007/introducing-swfobject/</guid>

					<description><![CDATA[Formerly known as FlashObject, SWFObject is a small JavaScript file used for embedding Adobe Flash content. The script can detect the Flash plug-in in all major web browsers (on Mac &#8230; ]]></description>
										<content:encoded><![CDATA[<p>Formerly known as FlashObject, <a href="http://blog.deconcept.com/swfobject/#download" target="_blank">SWFObject</a> is a small JavaScript file used for embedding Adobe Flash content. The script can detect the Flash plug-in in all major web browsers (on Mac and PC) and is designed to make embedding Flash movies as easy as possible. It is also very search engine friendly, degrades gracefully, can be used in valid HTML and XHTML 1.0 documents*, and is forward compatible, so it should work for years to come.</p>
<p>SWFObject is released under the <a href="http://www.opensource.org/licenses/mit-license.php" target="_blank">MIT License</a>.</p>
<p><a href="http://blog.deconcept.com/swfobject/#download" target="_blank">Download SWFObject</a> &#8211; Zip file, includes swfobject.js and the example html templates.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.evaria.com/2007/introducing-swfobject/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">313</post-id>	</item>
	</channel>
</rss>
