<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.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>Spider Design Ideas Factory</title>
	<link>http://spiderdesign.co.uk/blog</link>
	<description>A blog dedicated to all that is new and exciting in the web development world</description>
	<pubDate>Wed, 26 Jul 2006 10:04:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.3</generator>
	<language>en</language>
			<item>
		<title>Custom Javascript Scrollbar (works with Firefox)</title>
		<link>http://spiderdesign.co.uk/blog/custom-javascript-scrollbar-works-with-firefox</link>
		<comments>http://spiderdesign.co.uk/blog/custom-javascript-scrollbar-works-with-firefox#comments</comments>
		<pubDate>Wed, 26 Jul 2006 09:19:51 +0000</pubDate>
		<dc:creator>James Aldred</dc:creator>
		
	<category>JavaScript</category>
		<guid isPermaLink="false">http://spiderdesign.co.uk/blog/custom-javascript-scrollbar-works-with-firefox</guid>
		<description><![CDATA[Whilst it is possible to create a custom scrollbar using stylesheets, this method will only work for Internet Explorer.
This solution makes use of the script.aculo.us slider functions. All you need to do is simply create a slider and a handler (or track bar) and link the movement of that to whatever object you want to scroll through. [...]]]></description>
			<content:encoded><![CDATA[<p>Whilst it is possible to create a custom scrollbar using stylesheets, this method will only work for Internet Explorer.</p>
<p>This solution makes use of the script.aculo.us slider functions. All you need to do is simply create a slider and a handler (or track bar) and link the movement of that to whatever object you want to scroll through. In the example it is simply a div which could include text or images.</p>
<p>The colour is fully customisable using stylesheets. The only hand editing you may need to do is to the &#8220;move_up&#8221; function to to get the scroll speed working correctly for the amount of information you will be scrolling through.</p>
<p>All you need to do is link to the script.aculo.us libraries and use something similar to the example (source code below).</p>
<p><a href="http://www.spiderdesign.co.uk/blog/examples/scrollbar/" target="_blank">Example</a></p>
<p><a href="http://www.spiderdesign.co.uk/blog/examples/scrollbar/index.html" target="_blank">Source Code (right click and &#8220;Save As&#8221;)</a></p>
<p><a href="http://www.spiderdesign.co.uk/blog/examples/scrollbar/style.css" target="_blank">StyleSheet Example</a></p>
<p>If you need any help with creating this scrollbar then please get in <a href="http://www.spiderdesign.co.uk/contact.php" target="_blank">contact</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://spiderdesign.co.uk/blog/custom-javascript-scrollbar-works-with-firefox/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>JavaScript Menu (with blinds effect)</title>
		<link>http://spiderdesign.co.uk/blog/javascript_menu_with_blinds_effect</link>
		<comments>http://spiderdesign.co.uk/blog/javascript_menu_with_blinds_effect#comments</comments>
		<pubDate>Mon, 24 Jul 2006 14:27:45 +0000</pubDate>
		<dc:creator>James Aldred</dc:creator>
		
	<category>JavaScript</category>
		<guid isPermaLink="false">http://spiderdesign.co.uk/blog/6</guid>
		<description><![CDATA[The following menu will work with Internet Explorer, Firefox, Safari and Opera.
The included javascript code will create a menu, with submenus, that use the blindsdown effect from script.aculo.us. It will also leave the menu entry for the currently viewed page expanded (if you include the same menu script on every page). Obviously to achieve the blinds effect you will [...]]]></description>
			<content:encoded><![CDATA[<p>The following menu will work with Internet Explorer, Firefox, Safari and Opera.</p>
<p>The included javascript code will create a menu, with submenus, that use the blindsdown effect from <a title="script.aculo.us javascript library" href="http://script.aculo.us" target="_blank">script.aculo.us</a>. It will also leave the menu entry for the currently viewed page expanded (if you include the same menu script on every page). Obviously to achieve the blinds effect you will have to include the script.aculo.us javascript files in the head of you html before including menu.js.</p>
<p>Many people seemed to have trouble with using the blinddown / blindup effect and part of the menu disappearing. This has been fixed in this version of the menu code. </p>
<p><strong><strong><strong>EDITING THE SUPPLIED JAVASCRIPT</strong></strong></strong></p>
<p>You will need to do some editing of your own, the two easy changes are on lines 43 and 105. You simply need to replace &#8220;http://www.your_url.com/&#8221; with the root location of your site (&#8221;http://www.spiderdesign.co.uk/&#8221; for example).</p>
<p>The only other change you MAY need to make is on line 51 and this will all depend on the structure of your site. This line simply does a check of the users current location against the menu entry links. If the two are equal we know to expand that particular parent node (menu entry). This may just work straight away, with the current values. However if not then it is useful to put an alert in the code to tell you what the values of &#8220;loc_array&#8221; and &#8220;link_loc_array&#8221; are, so that you know which index of each array you should be comparing to expand the correct menu node, (if you need help with this then please get in <a href="http://www.spiderdesign.co.uk/contact.php">contact</a>).</p>
<p><strong>HOW TO CREATE THE MENU</strong></p>
<p>The menu is then simply populated using a list, Parents (nodes with children) will not link anywhere they will simply show or hide the children.</p>
<p>&lt;ul id=&#8221;menu&#8221;&gt;</p>
<p> &lt;li&gt;&lt;a href=&#8221;http://spiderdesign.co.uk/#&#8221; mce_href=&#8221;http://spiderdesign.co.uk/#&#8221; &gt;Parent Menu Entry Which Won&#8217;t Link&lt;/a&gt;</p>
<p>  &lt;ul&gt;</p>
<p>   &lt;li&gt;&lt;a href=&#8221;link_1&#8243; mce_href=&#8221;link_1&#8243; &gt;Menu Entry That Will Link 1&lt;/a&gt;&lt;/li&gt;</p>
<p>   &lt;li&gt;&lt;a href=&#8221;link_2&#8243; mce_href=&#8221;link_2&#8243; &gt;Menu Entry That Will Link 1&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;/ul&gt;</p>
<p> &lt;/li&gt;</p>
<p> &lt;li&gt;</p>
<p>  &lt;a href=&#8221;link_will work&#8221;&gt;Link Will Work&lt;/a&gt;</p>
<p> &lt;/li&gt;</p>
<p>&lt;/ul&gt;</p>
<p>It really is as easy as that, you can customise the look of the menu with the use of stylesheets or use images as the links and add mouse over effects to lighten and darken the image, and also have the currently selected link hightlighted.</p>
<p>A basic stylesheet file is included to get you started.</p>
<p>For an example please <a href="http://spiderdesign.co.uk/blog/examples/menu/" target="_blank">click here.</a></p>
<p>Download <a href="http://spiderdesign.co.uk/blog/examples/menu/menu.js">menu.js.</a></p>
<p>Download <a href="http://spiderdesign.co.uk/blog/examples/menu/style.css">style.css.</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://spiderdesign.co.uk/blog/javascript_menu_with_blinds_effect/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Welcome To The Spider Design Ideas Factory</title>
		<link>http://spiderdesign.co.uk/blog/test</link>
		<comments>http://spiderdesign.co.uk/blog/test#comments</comments>
		<pubDate>Tue, 04 Jul 2006 10:13:39 +0000</pubDate>
		<dc:creator>James Aldred</dc:creator>
		
	<category>General</category>
		<guid isPermaLink="false">http://spiderdesign.co.uk/bblog/test</guid>
		<description><![CDATA[Check back for exciting news about Spider Design and the work that we are doing.

]]></description>
			<content:encoded><![CDATA[<p>Check back for exciting news about Spider Design and the work that we are doing.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://spiderdesign.co.uk/blog/test/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
