<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>CSSWAY</title><description>CSSWAY</description><link>http://www.thebigerns.com/freeway/</link><copyright>Copyright CSSWAY</copyright><generator>CSSWAY</generator><item><title>Animating CSS Rollovers</title><description><![CDATA[		<p>A freeway user was asking about flashing rollover effects like those found at the site <a href="http://www.vectorbox.es/">www.vectorbox.es</a>. Now the effects on that site appear to be Flash based, but I really couldn't see a reason why ordinary CSS and a simple animated gif couldn't do the trick. See my workpage <a href="http://www.thebigerns.com/freeway/workbench/flashing-menu/" title="use this link to my example page">here</a>.</p>

		<p>First, make a menu. I still think unordered list menus are appropriate and within the grasp of most Freeway users to make. For more on CSS List Menus visit the <a href="http://css.maxdesign.com.au/listamatic/">Listamatic</a> website, or see my previous discussions <a href="http://www.thebigerns.com/freeway/myworkbench/a-simple-css-menu/">here</a>, and <a href="http://www.thebigerns.com/freeway/workbench/artsmenu/">here</a>.&nbsp; <a href="http://www.thebigerns.com/freeway/vertical_listnav/">Here</a> too.</p>
		<p>Once you have an unordered list of links, use the CSS editor to set padding around them, especially to the left side. Next we'll use Photoshop to make and animate the image of a flashing bullet. If you don't have Photoshop, or have some different graphic program, then you'll have to translate this part.</p>
		<p>In Photoshop create a new image 30px tall by 500px wide — I wasn't trying to be precise or anything, just looking to give myself enough room. There's likely a mathmatical way to be more efficient with the size, so don't feel constrained by my measurements.</p>
		<p>Usethe type tool to create a &quot;bullet&quot; symbol (option-8 for me) size and color it, then place it at the left side of the image centered vertically. Then duplicate its layer (command–j for me) and drag it over to the right side of the image and change its color. </p>
		<p>Next bring up Photoshop's Animation palette (older Photoshop users need the separate ImageReady application) and duplicate the frame. In the second frame I then click off the visibility of the second bullet, so when I preview the animation the first bullet appears static while the second one flashes on and off. Then <strong>Save for Web</strong> as a gif file. </p>
		<p>In Freeway, edit the link style for your menu (<strong>ul.navmenu li a</strong> in mine) and add the gif as a <strong>background image</strong> with <strong>no repeat</strong>. Then add the <a href="http://www.w3schools.com/css/pr_background-position.asp">background-position</a> attribute through the Extended window to define its position behind the link (see now why I made it so wide?).</p>
		<p>By altering the background-position attribute between the <strong>a</strong> and <strong>hover</strong> states, I can shift from the &quot;static&quot; part of the image to the &quot;flashing&quot; part. It's not as smooth as the flash menu (sometimes the flashing seems to hang up on me). But it's easy and looks cool.</p>
		<p class="f-lp">&nbsp;</p>
	]]></description><pubDate>Sat, 01 Sep 2007 16:43:41 +0000</pubDate><link>http://www.thebigerns.com/freeway/myworkbench/animating-css-rollovers/</link><guid>http://www.thebigerns.com/freeway/myworkbench/animating-css-rollovers/</guid></item><item><title>Walter&#39;s Other Page Location Idea</title><description><![CDATA[<p>When it comes to those little tricks like creating a way to indicate a "you are here" look on a CSS menu, Walter Lee Davis has a few ideas. In fact, I had to add the word "other" to the title because I remembered the method I've been using and promoting also came from an idea that Walter posted.</p>



<p>Walter's first suggestion was to modify the link anchor tag of the current page through the Extended interface of the Hyperlink Dialog box. Adding a class or id selector there coupled with a style to target it is really an easy recipe to create a different look for that link. I don't mind the extra work of selecting the current link on each page and adding the selector. But some folks wanted a way around that, so Walter came up with a different idea.</p>

<p>Basically he suggested adding an id selector to the page's body tag, then setting the links up with class selectors that respond to each unique body tag. If you're setting up your menu on your master page, or copying and pasting it from page to page, the upkeep is actually minimal.</p>

<p>Here's a link to <a href="http://www.thebigerns.com/freeway/workbench/vic-currentpage/" title="see my sample">my sample page</a>. Download is included.</p>]]></description><pubDate>Sat, 11 Aug 2007 22:13:49 +0000</pubDate><link>http://www.thebigerns.com/freeway/myworkbench/walters-other-page-location-idea/</link><guid>http://www.thebigerns.com/freeway/myworkbench/walters-other-page-location-idea/</guid></item><item><title>A Simple CSS Menu</title><description><![CDATA[<p>Prompted by some recent discussion on the Freewaytalk boards, here is an outline of a simple way to create and style a list menu using CSS in Freeway 4 Pro. The example page and file download are available <a href="http://www.thebigerns.com/freeway/workbench/artsmenu/" title="link to example page">here</a>.</p>



<p><strong>First, draw a layered box the width you want your menu to be, then type in each location for the menu on its own line.</strong></p>

<p>I like my menus to be made from lists because I think lists maintain a meaningful structure in the absence of styling. For me, this means the content is preserved in worst case scenarios. So, to make the list structure, create a New Style from the cog in the Styles Palette and name it <strong>menulist</strong>.</p>

<p>In the Paragraph attributes set the List style to Round Bullets. We don't really want bullets, but we do want Freeway to to set this style as an <a href="http://www.w3schools.com/html/html_lists.asp" title="learn more about unordered lists…">unordered list</a>. To get rid of the bullets, we will over-ride it with an Extended attribute, so click the Extended button and create the attribute <strong>list-style-type</strong> with a value of <strong>none</strong>. While we're there, let's add two more extended attributes, <strong>margin-left</strong> and <strong>padding-left</strong>, both with values of <strong>zero</strong>. </p>

<p>Before we're finished with this style, let's set our basic type style for our menu. <strong>Font</strong>, <strong>size</strong>, and <strong>color</strong> are all allowable for this style. Now go back to the page and apply the style to the menu text. Freeway still shows bullets in the work view, but won't appear in preview or your browser.</p>

<p><strong>Next, create your hyperlinks for each item in the list.</strong> The default link style is ugly blue with underlines — to change it we will need to target just the items in our list with Tag styles to cover the Link and Hover states. </p>

<p>Browsers use the names of styles to target or select the items they apply to. Our earlier style for the menu is a &quot;class&quot; style because it uses a user-selectable name to define a class of objects or spans of text that we then single out to be affected. Styles can also select their targets by their structural tags, alleviating the need for us to identify the object or texts they apply to. Ordinary paragraph &lt;p&gt; and header &lt;h1&gt; styles are examples of what I call &quot;tag&quot; styles.</p>

<p><strong>Create a new style from the Styles Inspector cog.</strong> To make it a Tag style for the Link state of our menu items, we would put the name for it in the Tag field of the New Style window, so put <strong>ul.menulist&nbsp;li&nbsp;a</strong> into the Tag field – spaces and all. This is the same as saying &quot;this style affects hyperlinks in list items that belong only to unordered lists with the class style 'menulist'&quot;. </p>

<p>Set the Character Color attribute to White… this of course changes the link's ugly blue color back to the white we originally set for our menu's list items. To get rid of the underline we need to click the Extended button and create the attribute <strong>text-decoration</strong> with a value of <strong>none</strong>. </p>

<p><strong>Now create another new style, this time for the Hover state of our menu links.</strong> In the Tag field, name it <strong>ul.menulist&nbsp;li&nbsp;a:hover</strong> — which still targets only the list item links in our specific menu list — but now only when the mouse pointer is hovering over them. In other words, a rollover.</p>

<p>This time we're interested in setting the Character Background Color attribute so that when the mouse pointer is over our menu link, the background color behind the type changes to highlight the link. Unless we want the type Color to also change, we don't need to re-apply it because it is an inherited attribute. The same goes for the text-decoration attribute. </p>

<p><strong>Now preview the page.</strong> You'll notice that our menu looks pretty normal except for two things: the type is flush against the left side of the window, and when we put the mouse cursor over any of our menu links the background color is just barely visible. Let's fix that.</p>

<p><strong>Choose Edit Styles from the Style Inspector cog and select </strong>our menu link state style <strong>ul.menulist&nbsp;li&nbsp;a</strong>. To make the background extend across the width of box we drew, click the Extended button and create the attribute <strong>display</strong> with a value of <strong>block</strong>. To get the background to extend slightly above and below our link, we will &quot;pad&quot; the area around the link a bit. </p>

<p>To do this, create another extended attribute for this style and name it <strong>padding</strong>. The shortcut way to define padding is to do it all at once, describing values for the top, right, bottom, and left sides in clockwork fashion. So a value of <strong>3px 0 4px 20px</strong> will expand the space above our menu links <strong>3px</strong> and below them by <strong>4px</strong>. The <strong>display:block</strong> attribute takes care of our horizontal space so those measurements can be set to <strong>zero</strong>, except for the left setting which has the effect of moving our link type over <strong>20px</strong> while keeping our rollover effect. You can alternately move the type over by moving the left edge of the menu box over, but remember the background-color  would also move over.</p>

<p class="f-lp">There you have it, a simple but stylish menu using only CSS.</p>

]]></description><pubDate>Fri, 06 Jul 2007 13:06:02 +0000</pubDate><link>http://www.thebigerns.com/freeway/myworkbench/a-simple-css-menu/</link><guid>http://www.thebigerns.com/freeway/myworkbench/a-simple-css-menu/</guid></item><item><title>Fake Overlapping Text and Graphics (with Runarounds)</title><description><![CDATA[<p>As a designer, I like the idea of overlapping images and text, and in such cases the text should wrap around the images. We all know this is easily achieved with CSS by adding a margin around inline images but what about images that <em>aren’t</em> inline? You know — images that lay partly over a block of text and partly outside of it… is there a way to make html text runaround in that situation? The short answer is no… but with a small amount of devious CSS we can create the <em>appearance</em> of overlapping items and keep the inline runaround we need.</p>

<p><img src="Resources/runaroundfwy.jpeg" width="257" height="327" alt="runaroundfwy" style="float:right; margin-left:10px"/>First we set up the basic structure – a layered div/box with some text in it. Next we insert an image into the flow of text at whatever vertical level we want the final image to reside at, then size it and set the alignment to <strong>float left</strong>. Finally we give it a little margin on the top, right, and bottom edges so the text will flow around it.</p>

<p>To make the image seem to overlap the box of text we need to apply a negative left margin. Since Freeway won’t let us do that the 'normal' way (via the Inspector) then we will try applying it as a <strong>class style</strong>. We can’t do that “normally” either as Freeway won’t let us apply a class style to images. *Sigh*</p>

<p>So to move things along we select our inline image and choose the menu »Item »Extended… and add the class attribute in the <samp>&lt;img&gt;</samp> pane there.</p>

<p><img src="Resources/runaroundxray.jpeg" width="240" height="310" alt="runaroundxray" style="float:left; margin-right:9px"/>Now go to the <strong>Edit Style</strong> window and create the style for the class declaration we just added to the image. Enter <samp>img.minus94</samp> in the tag field (<strong>minus94</strong> being the name of the class we added to the <strong>&lt;img&gt;</strong> tag) and create the margin-left attribute with an appropriate negative number.</p>

<p>This should be sufficient to achieve our intended results in pretty much every modern browser, but once again Internet Explorer needs some coercing.  Fortunately the fix is simple: create a position:relative attribute for our image class style… because the image is floated, all IE needs is to be reminded how to treat parent-child items with special needs. </p>

<p>Here is an <a href="http://www.thebigerns.com/freeway/workbench/fake-textwrap/">actual example</a>.</p>

<p><img src="Resources/runaround-ext.png" width="402" height="288" alt="runaroundext" style="float:right; margin:9px"/></p>

<p class="f-lp"><img src="Resources/runaroundcss.jpeg" width="537" height="416" alt="runaroundcss" style="float:right; margin:9px"/></p>

<hr />
<div class="clear"></div>
]]></description><pubDate>Mon, 30 Apr 2007 02:52:51 +0000</pubDate><link>http://www.thebigerns.com/freeway/myworkbench/fake-overlapping-text-and-graphics-with-runarounds/</link><guid>http://www.thebigerns.com/freeway/myworkbench/fake-overlapping-text-and-graphics-with-runarounds/</guid></item><item><title>Testing a new Template</title><description><![CDATA[<p>Recently on the <a href="http://www.freewaytalk.net/">Freewaytalk</a> boards, I hinted that I was working on a new Freeway template that I am calling <strong>Son of Satin</strong>. I am still tweaking it – but you can check my progress <a href="http://www.thebigerns.com/freeway/-templates/son-of-satin/">here</a>. </p>

<p>One of the few comments I've had so far indicated that my images and background colors weren’t blending well. Of course, things look fine on my monitors, so I went to <a href="http://browsershots.org/">browsershots.org</a> to get an idea how things looked in other browsers and platforms. The result, <a href="http://www.thebigerns.com/freeway/-templates/son-of-satin/screenshots/">here</a>, still looks great to me.</p> 

<p>So, how can I be sure everything is looking as it should? That’s where you come in – if you have some extra time, take <a href="http://www.thebigerns.com/freeway/-templates/son-of-satin/">a look</a> at the SOS page(s) and <a href="http://www.thebigerns.com/freeway/contact/" title="contact me">let me know</a> what you think. I really want to see if I’m capable of turning out a decent template. (Hint: more templates could follow). </p>]]></description><pubDate>Wed, 11 Apr 2007 16:43:03 +0000</pubDate><link>http://www.thebigerns.com/freeway/home/testing-a-new-template/</link><guid>http://www.thebigerns.com/freeway/home/testing-a-new-template/</guid></item><item><title>Centering Pages in Explorer 5.5</title><description><![CDATA[<p>When you choose to center-align your pages, Freeway properly uses the <samp>auto</samp> setting on the side margins. This works in modern browsers, but breaks most notably in the Windows <abbr title="Internet Explorer">IE 5.5</abbr> browser. This is due to IE 5.5. not having a clue what <samp>auto</samp> means. There is however a flaw in IE 5.5 that can be exploited to force that paleolithic browser to do our bidding again. It goes like this:</p>



<p><img src="Resources/ie5centered1thmb.jpeg" width="196" height="136" alt="image of Edit Styles window" usemap="#map1" style="float:right; margin-left:10px"/>First, we define the <strong>body</strong> element with the attribute <samp>text-align</samp> and a value of <samp>center</samp>. This is the hack, and will center all our text, and the page along with it. One way to do this is to create a new tag style – named <strong>body</strong> in the Tag field of the <strong>Edit Styles</strong> window. When you’ve done that, select the Align attribute from the Paragraph section and choose the centered button. </p>

<p>Sometimes Freeway doesn’t seem inclined to follow through when the only attribute of a style is the Align attribute. One way to trick Freeway into publishing a style it thinks isn’t really needed is to duplicate that attribute in the <strong>Extended</strong> style portion of the Edit Style window. </p>

<p><img src="Resources/ie5centered2thmb.jpeg" width="132" height="97" alt="image of Extended Styles window" usemap="#map2" style="float:left; margin-right:10px"/>Press the <strong>Extended</strong> button to open the extended attributes for this style. Create a new attribute with the name <strong>text-align</strong> and give it a value of <strong>center</strong>. This mirrors what we have already done through the main Edit window. Since Freeway cannot know what we have added here, it cannot decide if the style is needed or not and should publish it for sure.</p>

<p>This will now fool IE 5.5 into centering the page in the browser window. However, all our non-aligned text is now centered too. We need a fix to counter the hack. </p>
<p>We could go item by item and create new styles to re-align our text, but there is an easier way to put it all back to rights. On a Freeway page, all text is placed in containers of one sort or another. Whether your page is layered (divs) or not (tables), Freeway 4 writes at least one div element to enclose the whole page (PageDiv). So instead of writing styles for every text element, we can just target that div with a style that should re-align our text to left. Granted it will also target every other div on the page, but that first one is what will really count. We can do it like this:</p>

<p>Just like we did for the hack, now create a new tag style named <strong>div</strong> in the Tag field and set its paragraph alignment to <strong>left</strong>. Mirror this in the Extended attributes like we did previously. The successful result of this is all non-aligned text should align left, which is the normal state of things. Any other text that we have aligned differently should not be affected.</p>

<h3>Another Approach…</h3>

<p>After describing this method in some detail, I should let you know there is a shorter, easier way to do accomplish this same thing. But don’t get upset — if I had told it to you about it straight away then you’d have had no fun in learning <em>why</em> it works. </p>

<p>Instead of writing these new styles into the common stylesheet when we only need to apply them to people using IE5.x, what I like to do is to wrap them in a <strong>conditional comment</strong>, like so:</p>

<p class="code">&lt;!--&gt;<br/>&lt;style type=&quot;text/css&quot;&gt;<br/>body { text-align: center; }<br/>div { text-align: left; }<br/>&lt;/style&gt;<br/>&lt;!--&gt;&nbsp;</p>

<p><a href="http://www.quirksmode.org/css/condcom.html" title="Learn more about Conditional Comments here...">Conditional Comments</a> are a way of distinguishing between versions of Internet Explorer — as far as I know, conditional comments only work with Internet Explorer. By inserting this conditional comment into the <strong>Before /HEAD</strong> section of the menu <strong>Page</strong> » <strong>HTML Markup…</strong> we are adding the styles defined within only to versions of IE <strong>less than</strong> (lt) 6 — essentially 5.5 and below. Version 6 and 7 shall ignore it altogether. </p>

<p>I also usually add a slightly smaller base <samp>font-size</samp> attribute to the <strong>body</strong> style, as IE 5.x seems to me to make fonts much larger than necessary. </p>

<h3>Centering within Elements</h3>

<p>If your page is not centered, but you have used the <samp>margin:auto</samp> setting to center an item within another item, the same principle applies, only in a different way.</p>

<p>Instead of applying the hack to the body of the page, you must apply it to the <strong>containing element of the auto centered item</strong>. If the containing item is a div/box then select it and open the menu <strong>Item</strong> » <strong>Extended…</strong> Choose the <strong>&lt;DIV Style&gt;</strong> pane and create the attribute <strong>text-align</strong> with a value of <strong>center</strong>. Then go to the item being centered and apply a paragraph alignment value of <strong>left</strong>. How that is done will depend on the kind of item it is. If it is another div, then use the same extended method only applying a value of <strong>left</strong>.</p>

<p class="f-lp">Finding the proper containing element is sometimes a challenge. In the case of <samp>margin:auto</samp> centered items on <strong>width-flexible pages</strong>, I would create a style that targeted the <strong>div</strong> tag with the <samp>text-align:center</samp> setting, then create a tag style for the <samp>text-align:left</samp> correction and name it <strong>div div</strong>. Yes, that’s <strong>div</strong> followed by a <strong>space</strong> followed by another <strong>div</strong>. What this method does is correctly target the invisible Freeway-generated PageDiv for the hack, and then all of it’s descendant divs with the correction. </p>

<hr/>

<map id="map1" name="map1"><area alt="image of Edit Styles window" coords="0,0,188,128" href="Resources/ie5-centered1.gif" title="View of the Edit Styles window"/></map>

<map id="map2" name="map2"><area alt="image of Extended Styles window" coords="0,0,124,89" href="Resources/ie5-centered2.gif" title="View the Extended Styles window"/></map>
]]></description><pubDate>Mon, 26 Mar 2007 15:34:20 +0000</pubDate><link>http://www.thebigerns.com/freeway/hacks-exploits/centering-pages-in-explorer-55/</link><guid>http://www.thebigerns.com/freeway/hacks-exploits/centering-pages-in-explorer-55/</guid></item><item><title>Tabbed Content using Target Pseudo Class</title><description><![CDATA[<p> below</p>

<p>There have been a few recent <a href="http://freewaytalk.net/viewtopic.php?t=1515">Freewaytalk threads</a> discussing how to create a ‘tabbed’ info area on a single page. The ongoing discussion has been very interesting, and master actioneer <a href="http://freewaytalk.net/profile.php?mode=viewprofile&amp;u=3">Paul Dunning</a> was even able to produce <a href="http://freewaytalk.net/viewtopic.php?t=1576">an action</a> for it.</p>



<p><img src="Resources/thmbstoogexample.gif" width="372" height="303" alt="thumbnail image of my tabbed target example page" usemap="#map1" style="float:right; margin-left:10px; margin-bottom:5px"/>I’ve been tinkering for a while now with a CSS method to get this type of functionality. Here is an <a href="http://www.thebigerns.com/freeway/examples/pseudo-target/index.html#download">example</a> that I made… It is only one page — no frames or any trickery like that — and was built entirely using <strong>Freeway 4 Pro</strong>.</p>

<p>For this piece, the ‘tabs’ are an unordered list of links —using similar CSS for styling horizontal menus to create a simple <strong>tabbed</strong> look. Depending on how much time and effort are involved, you can make these tabs look as fancy as you like. That's because CSS is all about appearance.</p>

<p>The functionality is provided by a member of a special group of CSS modifiers known as <a href="http://www.w3schools.com/css/css_pseudo_classes.asp">Pseudo Classes</a>. The most well known pseudo class modifiers are the Anchor modifiers -- <samp>:hover</samp>, <samp>:active</samp>, <samp>:link</samp>, and <samp>:visited</samp>. The pseudo class modifier used in my example is the <a href="http://www.w3.org/TR/2001/CR-css3-selectors-20011113/#target-pseudo">:target pseudo class</a>. </p>

<p>Perhaps you noticed that my initial link ended with an anchor identifier. The trickery that I am attempting is not to take you to a location on the page, but to use that identifier to trigger the visibility of a div that is hidden until triggered.</p>

<h3>Caveats</h3>

<p>My example uses an <strong>inline div structure</strong> to handle the appearing and disappearing of content. I’m not sure this structure is necessary, but it is what I am most familiar with when it comes to flexible content. </p>

<p>I have no working solution for displaying the <strong>current tab</strong> at this time. </p>

<p>It tests well in Mac <strong>Safari</strong> and <strong>Firefox</strong> —but I’m not sure what the WinIE functionality is like. If IE supports this particular pseudo class, then I imagine some hacking may still be necessary. </p>

<h3></h3>

<p>At first blush it turns out that no version of Internet Explorer can access the hidden elements because <samp>:target</samp> is a CSS3 specification. Not even the newest version is able to use it. Damn my eyes! Just when I’m thinking that I am ahead of the curve, it turns out that I’m just using the wrong browser. And by ‘wrong browser’, I mean the ‘right browser’. *Sigh*</p>

<h3></h3>

<p>Apperently <strong>Netscape 7</strong> honors the target selector… Here’s a <a href="http://devedge-temp.mozilla.org/viewsource/2003/target-selector/index_en.xml">2003 article</a> by Eric Meyer explaining and illustrating the selector. If Netscape has been on top of this since 2003, then maybe other Mozilla based browsers will be too. Win Firefox anyone?</p>

<p><strong>HTML Dog</strong> has a <a href="http://www.htmldog.com/articles/suckerfish/target/">Suckerfish javascript emulation</a> of <samp>:target</samp> for IE browsers… and I thought I was trying to use CSS to get away from having to use javascript to do this?</p>

<p class="f-lp">Now that I think of it, IE doesn’t even support the <samp>:hover</samp> pseudo class, does it? We will have all evolved to use telepathy by the time Microsoft gets with the program... Jeesh!</p>


<hr/>

<map id="map1" name="map1">
<area alt="thumbnail image of my tabbed target example page" coords="0,0,364,295" href="http://www.thebigerns.com/freeway/examples/pseudo-target/index.html#download"/>
</map>

]]></description><pubDate>Thu, 15 Mar 2007 02:52:08 +0000</pubDate><link>http://www.thebigerns.com/freeway/special-projects/tabbed-content-using-target-pseudo-class/</link><guid>http://www.thebigerns.com/freeway/special-projects/tabbed-content-using-target-pseudo-class/</guid></item><item><title>Old Articles</title><description><![CDATA[<p>While I am migrating to the new format, here are a list of links to many previously published articles and examples:</p>

<ol>
	<li><a href="http://www.thebigerns.com/freeway/zoomy/" class="article">Page Zooming</a></li>
	<li><a href="http://www.thebigerns.com/freeway/link_icons/" class="article">Link Icons</a></li>
	<li><a href="http://www.thebigerns.com/freeway/sortables/" class="article">Sortable Tables</a></li>
	<li><a href="http://www.thebigerns.com/freeway/vertical_listnav/" class="article">CSS Vertical List Navigation</a></li>
	<li><a href="http://www.thebigerns.com/freeway/list-styling/" class="article">Styling Lists</a></li>
	<li><a href="http://www.thebigerns.com/freeway/new_window_linkstyles/" class="article">Styling Links (Text Link to New Window Action)</a></li>
	<li><a href="http://www.thebigerns.com/freeway/rollnavbar/index.html" class="article">CSS Horizontal List Navigation</a></li>
	<li><a href="http://www.thebigerns.com/freeway/bigernsmokun/" class="article">Dynamic Image Sizing</a></li>
	<li><a href="http://www.thebigerns.com/freeway/BWD_indestructible-boxes/" class="article">BWD Flexible Round Corners</a></li>
	<li><a href="http://www.thebigerns.com/freeway/flexitable/" class="article">Flexible Tables</a></li>
	<li><a href="http://www.thebigerns.com/freeway/footer/" class="article">Bottom-Aligned Footer</a></li>
	<li><a href="http://www.thebigerns.com/freeway/freewaycolors/eminemcolors.html" class="article">M&amp;M Candy Colors</a></li>
	<li><a href="http://www.thebigerns.com/freeway/goofy/" class="article">Flexible Layout Proof-of-Concept</a></li>
	<li><a href="http://www.thebigerns.com/freeway/inline_v_parent/" class="article">Vertical Flexibility Demonstration</a></li>
	<li><a href="http://www.thebigerns.com/freeway/mybasicstyles/" class="article">My Basic Styles and Colors</a></li>
	<li><a href="http://www.thebigerns.com/freeway/neverendingpage/" class="article">20,000 Pixels Wide</a></li>
	<li><a href="http://www.thebigerns.com/freeway/scroll_box_fix/" class="article">Scroll Box Workaround</a></li>
	<li><a href="http://www.thebigerns.com/freeway/shrinky/" class="article">Another Flexible Width Demonstration</a></li>
	<li><a href="http://www.thebigerns.com/freeway/simple_fake_page/" class="article">Simple Fake Page</a></li>
	<li><a href="http://www.thebigerns.com/freeway/simplepageback/" class="article">Simple Fake Page 2</a></li>
	<li><a href="http://www.thebigerns.com/freeway/notables/" class="article">Table-less Stretchable Fake Page</a></li>
	<li><a href="http://www.thebigerns.com/freeway/stretchilina/" class="article">3-Column Flexible Layout</a></li>
	<li><a href="http://www.thebigerns.com/freeway/tablehover/" class="article">Tables Elements and the :hover Pseudo Class</a></li>
	<li><a href="http://www.thebigerns.com/freeway/thickbox/" class="article">Thickbox Gallery Test</a></li>
</ol>
<hr/>]]></description><pubDate>Mon, 19 Feb 2007 12:43:15 +0000</pubDate><link>http://www.thebigerns.com/freeway/special-projects/old-articles/</link><guid>http://www.thebigerns.com/freeway/special-projects/old-articles/</guid></item><item><title>Finally, putting things back together…</title><description><![CDATA[<p>After several weeks of revamping and pest control, I'm finally getting around to putting my blog all back together. There's a new <abbr title="content managemant system">cms</abbr> engine, but it's all still put together with <strong>Freeway 4 Pro</strong>.</p>



<p>I'm trying some new things, so drop by often to check me out. For example, I am experimenting with moving the Freeway inline div styles to a second external stylesheet &mdash; a strategy that I first outlined in a posting on the <a href="http://freewaytalk.net/viewtopic.php?p=7800" title="link to the article">Freewaytalk forum</a>. And I'm even experimenting with an <a href="http://www.thebigerns.com/freeway/rss/" title="subscribe to my rss feed">RSS Feed</a>.</p>

<p>Older articles can be accessed <a href="http://www.thebigerns.com/freeway/special-projects/old-articles/" title="old cssway articles">here</a> while things are being updated.</p>

<p>Comments are moderated, so expect a short delay before they post. If you want to get in touch with me, try the <a href="http://www.thebigerns.com/freeway/contact/" title="send me a note">Contact</a> link.</p>]]></description><pubDate>Mon, 19 Feb 2007 03:17:52 +0000</pubDate><link>http://www.thebigerns.com/freeway/home/finally-putting-things-back-together/</link><guid>http://www.thebigerns.com/freeway/home/finally-putting-things-back-together/</guid></item></channel></rss>