<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>FUblog</title>
			<link>http://developer.fusium.com/fublog/</link>
			<description>Fusium Blog </description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 17:27:44 -0400</pubDate>
			<lastBuildDate>Tue, 29 May 2007 00:00:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>info@Fusium.com</managingEditor>
			<webMaster>info@Fusium.com</webMaster>
			
			
			
			
			
			<item>
				<title>Moving On</title>
				<link>http://developer.fusium.com/fublog//2007/5/29/Moving-On</link>
				<description>
				
				As you can see, there&apos;s not much activity here anymore.

You can find more of Nat&apos;s wisdom at &lt;a href=&quot;http://www.webapper.net/&quot;&gt;webapper&lt;/a&gt;. 

Erik is now blogging at &lt;a href=&quot;http://www.psykel.com/blog/&quot;&gt;psykel&lt;/a&gt;. 

Happy Trails,
grumps
				
				</description>
				
				<category>Server</category>
				
				<category>General</category>
				
				<category>CSS</category>
				
				<category>Java</category>
				
				<category>ColdFusion</category>
				
				<category>FUsebox</category>
				
				<category>Minaret</category>
				
				<category>Hardware</category>
				
				<category>Database</category>
				
				<category>CommonSnot</category>
				
				<pubDate>Tue, 29 May 2007 00:00:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog//2007/5/29/Moving-On</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>&amp;lt;TBODY&amp;gt; is handy</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=DDAD7CC8-E933-3CAE-6225549DDD9F44AB</link>
				<description>
				
				TBODY?  I never used it before.  I thought it was just something Dreamweaver put in HTML for some reason.

But the other day, TBODY came in handy.  I used it to make a quick and dirty blowout user interface like this:

&lt;script language=&quot;Javascript&quot;&gt;
function toggle(theID) {
foo = document.getElementById(theID);
if (foo.style.display == &apos;none&apos;) foo.style.display = &apos;&apos;;
else foo.style.display = &apos;none&apos;;
return;
}
&lt;/script&gt;

&lt;table&gt;
&lt;tr&gt;
&lt;Td&gt;
&lt;A href=&quot;javascript:toggle(&apos;thing1&apos;)&quot;&gt;[+]&lt;/A&gt;
Thing 1
&lt;/td&gt;
&lt;/tr&gt;
&lt;tbody style=&quot;display:none;&quot; id=&quot;thing1&quot;&gt;
&lt;tr&gt;&lt;td&gt;Sub Thing 1&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;Sub Thing 2&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


The code is very simple - and I got to finally use TBODY:
				 [More]
				</description>
				
				<category>General</category>
				
				<category>CSS</category>
				
				<pubDate>Wed, 08 Mar 2006 22:12:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=DDAD7CC8-E933-3CAE-6225549DDD9F44AB</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Adding Line Breaks for Printed Media</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=362B40A6-AFF6-ED62-58A131B635F548B7</link>
				<description>
				
				CSS gives us a nice way to insert line breaks into HTML with page-break-before and page-break-after.

Here&apos;s a pretty self explanitory example below.  Looks normal in the browser, but when you print the HTML, line breaks are there.  

&lt;div class=&quot;code&quot;&gt;&lt;FONT COLOR=NAVY&gt;&amp;lt;html&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&lt;FONT COLOR=NAVY&gt;&amp;lt;head&amp;gt;&lt;/FONT&gt;&lt;FONT COLOR=NAVY&gt;&amp;lt;/head&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&lt;FONT COLOR=NAVY&gt;&amp;lt;body&amp;gt;&lt;/FONT&gt;&lt;br&gt;
This is the first page&lt;br&gt;
&lt;FONT COLOR=NAVY&gt;&amp;lt;br style=&lt;FONT COLOR=BLUE&gt;&quot;page-break-before:always;&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;br&gt;
This is the second page&lt;br&gt;
&lt;FONT COLOR=NAVY&gt;&amp;lt;br style=&lt;FONT COLOR=BLUE&gt;&quot;page-break-after:always;&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;br&gt;
This is the last page&lt;br&gt;
&lt;FONT COLOR=NAVY&gt;&amp;lt;/body&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&lt;FONT COLOR=NAVY&gt;&amp;lt;/html&amp;gt;&lt;/FONT&gt;&lt;/div&gt;
				
				</description>
				
				<category>CSS</category>
				
				<pubDate>Fri, 16 Dec 2005 16:39:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=362B40A6-AFF6-ED62-58A131B635F548B7</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>oswd</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=BEEE3737-A557-6160-2361DD2688824DF5</link>
				<description>
				
				Have you checked out Open Source Web Design at &lt;a href=&quot;http://www.oswd.org&quot;&gt;oswd.org&lt;/a&gt;? It&apos;s rad. The only complaint I have is that too many of the designs are for bl0gs, not the kinda stuff we do.

It usually takes me a little over an hour to find a design suitable for my needs. So far I&apos;ve ripped &lt;a href=&quot;http://oswd.org/viewdesign.phtml?id=1870&quot;&gt;one&lt;/a&gt; for a personal site and I just finished ripping &lt;a href=&quot;http://oswd.org/viewdesign.phtml?id=2054&quot;&gt;one&lt;/a&gt; for The Bug Jar.
				
				</description>
				
				<category>General</category>
				
				<category>CSS</category>
				
				<pubDate>Mon, 27 Jun 2005 10:48:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=BEEE3737-A557-6160-2361DD2688824DF5</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>TITLE is cool, part 2</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=ABAB4C55-CCC5-BDB1-1F37EE628B896A74</link>
				<description>
				
				David Huyck posted a comment about Javascript tool tips being a good alternative to the CSS/Title solution.  

I&apos;ve never used them before, but they proved to be quite handy.  Here&apos;s a &lt;a href=&quot;http://www.dynamicdrive.com/dynamicindex5/dhtmltooltip.htm&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt; to the one I decided to use in a project where I needed response time to be immediate.  

Not as elegant as a CSS only solution, but it works, and you can modify the CSS to customize the appearance of the tips.
				
				</description>
				
				<category>CSS</category>
				
				<pubDate>Thu, 23 Jun 2005 17:01:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=ABAB4C55-CCC5-BDB1-1F37EE628B896A74</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>TITLE is cool</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=A797E407-FC30-4005-92CD288A361A805C</link>
				<description>
				
				In IE, when you mouse over an image with an ALT parameter, you&apos;ll see that text pop up after a brief delay.

CSS lets you do something similar with just about anything - a table cell, span tag, link, etc.  Here&apos;s a simple example:
				 [More]
				</description>
				
				<category>CSS</category>
				
				<pubDate>Wed, 22 Jun 2005 22:00:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=A797E407-FC30-4005-92CD288A361A805C</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>CSS and you</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=A5B3A54B-ADA3-F619-751589F7FD9AF35D</link>
				<description>
				
				I think this is as good a post as any to begin a blog category on CSS.  If you haven&apos;t yet embraced CSS yet in full, you might want to read on.

About a year ago, I started a small project and decided to completely dive in to CSS, making all code output completely with DIV, SPAN and P tags.  Though the temptation to use a table here and there was strong, I used CSS to control the layout.  I&apos;d of course used CSS before, but only for trivial things like link colors, font settings, element borders, etc.  

If you&apos;re thinking of diving in, here&apos;s a few observations that might make your life easier:
				 [More]
				</description>
				
				<category>CSS</category>
				
				<pubDate>Wed, 22 Jun 2005 13:10:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=A5B3A54B-ADA3-F619-751589F7FD9AF35D</guid>
				
			</item>
			
		 	
			</channel></rss>
	

