<?xml version="1.0" encoding="UTF-8"?>
<rss version="0.92"><channel><title>Developers Den</title><link>http://developers-den.blog.co.uk/</link><description></description><language>en-UK</language><docs>http://backend.userland.com/rss092</docs><image><title>Developers Den</title><link>http://developers-den.blog.co.uk/</link><url>http://data5.blog.de/design/preview/e8/1841e8a6a4e53cfb2bffaf9b2ac56b_160x200.jpg</url></image><item><title>How to Show only the alpha layer of a png</title><description>	&lt;p&gt;Yay here it goes!&lt;/p&gt;
	&lt;p&gt;obviously i have substituted square for jagged parethesis&lt;/p&gt;
	&lt;p&gt;Ok the compiler has also decided to put smiley faces where my semi colons should have gone arrrrghhh!&lt;/p&gt;
	&lt;p&gt;[span style="width:415px;height:98px;display:inline-block;&lt;br&gt;
/* the height and width should match those of the image */&lt;br&gt;
filter&lt;img src="/img/smilies/icon_razz.gif" alt=":p" class="middle" border="0"&gt;rogid&lt;img src="/img/smilies/icon_biggrin.gif" alt=":D" class="middle" border="0"&gt;XImageTransform.Microsoft.AlphaImageLoader(src='images/mobile_graphics/uplands_logo_mob.png');&lt;br&gt;
/* apply the background image with Alpha in IE5.5/Win. The src should match that of the image */&lt;br&gt;
"][img style="&lt;br&gt;
filter&lt;img src="/img/smilies/icon_razz.gif" alt=":p" class="middle" border="0"&gt;rogid&lt;img src="/img/smilies/icon_biggrin.gif" alt=":D" class="middle" border="0"&gt;XImageTransform.Microsoft.Alpha(opacity=0);&lt;br&gt;
/* make the real image fully transparent in IE5.5/Win, so the Alpha image can show through */&lt;br&gt;
" src="images/mobile_graphics/uplands_logo_mob.png" width="415" height="98" border="0" alt="][/span]
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://developers-den.blog.co.uk/2007/06/13/how_to_show_only_the_alpha_layer_of_a_pn~2444658/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</description><link>http://developers-den.blog.co.uk/2007/06/13/how_to_show_only_the_alpha_layer_of_a_pn~2444658/</link><pubDate>Wed, 13 Jun 2007 11:35:37 +0200</pubDate></item><item><title>Randomly Try this for size</title><description>	Firefox
	&lt;p&gt;Firefox is unbelievably strict.&lt;/p&gt;
	&lt;p&gt;Never put two of the same type of attribute in a tag&lt;/p&gt;
	&lt;p&gt;If you want to load an external style, or for that matter any in the header sectionb of your document; ensure that you dont apply any inline styles.&lt;/p&gt;
	&lt;p&gt;Peace out&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://developers-den.blog.co.uk/2007/05/02/randomly_try_this_for_size~2196667/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</description><link>http://developers-den.blog.co.uk/2007/05/02/randomly_try_this_for_size~2196667/</link><pubDate>Wed, 02 May 2007 14:15:54 +0200</pubDate></item><item><title>Revelation</title><description>	&lt;p&gt;To get a color value to work in css it has to be sharped first&lt;/p&gt;
	&lt;p&gt;eg #b355f2 it will then yeild every border you have set! hahaha&lt;/p&gt;
	&lt;p&gt;Also make sure the border is set to solid otherwise it will show the nasty 80s style microsoft borders with a jagged and fake 3d effect
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://developers-den.blog.co.uk/2007/05/01/revelation~2190981/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</description><link>http://developers-den.blog.co.uk/2007/05/01/revelation~2190981/</link><pubDate>Tue, 01 May 2007 14:41:22 +0200</pubDate></item><item><title>OK Here We Go</title><description>	A land of intrigue
	&lt;p&gt;I finally convinced the MD of my company to let me do some work on the companys website.&lt;/p&gt;
	&lt;p&gt;Mostly graphical stuff.&lt;/p&gt;
	&lt;p&gt;There was a web design company that offered a full ASP and SQL driven site but he thought it would be a waste of time and 4 grand.&lt;/p&gt;
	&lt;p&gt;As any newbee web designer looking to become a fully fledged webmaster could tell you, it would be a walk in the park to learn dynamic HTML if not for the lousy lack of compliance between browsers. &lt;/p&gt;
	&lt;p&gt;In fact the majority of my recent learning curve has been in the fundamental differences between what style one browser will accept whilst it is rejected by another browser. &lt;/p&gt;
	&lt;p&gt;This means that creating a dynamic website takes twice as long as it should because implementation takes a heck of a lot of debugging in order to make it compliant with every browser type.  &lt;/p&gt;
	The Problem
	&lt;p&gt;Any way&lt;/p&gt;
	&lt;p&gt;I started doin pretty little drop downs and the drop options were st to a opacity of 60%. I wanted to create a function so that when each cell in the drop down was hovered over it would have a opacity of 100% &lt;/p&gt;
	&lt;p&gt;This time i have discovered a sick and twisted truth about internet explorer. &lt;/p&gt;
	&lt;p&gt;If you wish to use css to perform hover features over elements in Ie, it will only work for anchors. &lt;/p&gt;
	&lt;p&gt;The funny thing is that in mozilla and netscape browsers the hover feature will work for any element. Just proves that there is still a lot of incompatibility.&lt;/p&gt;
	The Solution
	&lt;p&gt;I got around this problem by using javascript and DOM commands.&lt;/p&gt;
	&lt;p&gt;instead of class="my element" &lt;/p&gt;
	&lt;p&gt;i had to use onmouseover="hovermode()" onmouseout="hoveroffmode()"&lt;br&gt;
and obviously manipulate these functions in a javascript&lt;/p&gt;
	&lt;p&gt;this is an example&lt;/p&gt;
	&lt;p&gt;function hovermode(x)&lt;br&gt;
{&lt;br&gt;
manipulatedelement = document.GetElementById(x).style&lt;br&gt;
manipulatedelement.WhateverStyleFeatureHappensonHover&lt;br&gt;
mainpulatedelement.ditto&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;I think Microsoft are short changing everyone by creating severely non standards compliant browsers but hey. Im just a beginner!&lt;/p&gt;
	&lt;p&gt;I reckon that If you want to make awesome looking sites it's in your advantage to use DOM over standard CSS because at least it can save you the hassle.&lt;/p&gt;
	&lt;p&gt;Its a shame because CSS is a really handy feature of web design and saves a lot of needless text.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://developers-den.blog.co.uk/2007/05/01/ok_here_we_go~2190330/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</description><link>http://developers-den.blog.co.uk/2007/05/01/ok_here_we_go~2190330/</link><pubDate>Tue, 01 May 2007 12:31:09 +0200</pubDate></item><item><title>Fundamentals</title><description>	&lt;p&gt;There are many beatuful things out there in cyberspace. &lt;/p&gt;
	&lt;p&gt;I personally think that we can all learn from taking a breather and surfing for stuff that has been produced with a creative eye.&lt;/p&gt;
	&lt;p&gt;If you ever fancy seeing the creative side to the web, check out&lt;br&gt;
&lt;a href="http://www.csszengarden.com/"&gt;Css Zen Garden&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;This thing will blow your mind and really is the way forward for the modern artist.&lt;/p&gt;
	&lt;p&gt;Chencuie!
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://developers-den.blog.co.uk/2007/04/26/fundamentals~2165528/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</description><link>http://developers-den.blog.co.uk/2007/04/26/fundamentals~2165528/</link><pubDate>Thu, 26 Apr 2007 16:37:10 +0200</pubDate></item><item><title>The Fundamentals</title><description>&lt;p&gt; &lt;small&gt; &lt;a href="http://developers-den.blog.co.uk/2007/04/26/the_fundamentals~2165505/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</description><link>http://developers-den.blog.co.uk/2007/04/26/the_fundamentals~2165505/</link><pubDate>Thu, 26 Apr 2007 16:32:31 +0200</pubDate></item><item><title>Welcome Welcome Welcome</title><description>	 What Is All Of This All About? 
	&lt;p&gt;I have started writing this thingy because I want to document my progress as a wannabe developer.&lt;/p&gt;
	&lt;p&gt;I also want to write because I havn't been afforded the opportunity to do so for some great deal of time.&lt;/p&gt;
	&lt;p&gt;Im on some kind of crazy journey and at the age of 22 have now realised that I have to pick a direction and just follow it. &lt;/p&gt;
	Who the Hell Am I?
	&lt;p&gt;After graduating with a degree in Philosophy and social Anthropology I did what any self serving graduate would do and I went and got myself a job in a call centre.&lt;/p&gt;
	&lt;p&gt;By some stroke of luck I ended up managing a website and in the end I would up wanting to learn web based languages.&lt;/p&gt;
	 &lt;i&gt;Pretty Boring You May say&lt;/i&gt;
 &lt;/p&gt;
	&lt;p&gt;We I kinda have this theory that all art begins in humble origins and If people can learn to use this new medium in a totally creative way then we will be all the better. &lt;/p&gt;
	&lt;p&gt;Finally I am here to paint a philosophical view of the web, some 15 years into its advent.&lt;img src="/img/smilies/icon_arrow.gif" alt="=&gt;" class="middle" border="0"&gt;&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://developers-den.blog.co.uk/2007/04/26/welcome_welcome_welcome~2165474/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</description><link>http://developers-den.blog.co.uk/2007/04/26/welcome_welcome_welcome~2165474/</link><pubDate>Thu, 26 Apr 2007 16:25:39 +0200</pubDate></item></channel></rss>
