<?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>seafoid.org &#187; Web Development</title>
	<atom:link href="http://seafoid.org/category/webdev/feed/" rel="self" type="application/rss+xml" />
	<link>http://seafoid.org</link>
	<description>os x applications, electronics, cocoa development</description>
	<lastBuildDate>Tue, 30 Mar 2010 12:58:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How Internet Explorer Handles Lists (ul and ol)</title>
		<link>http://seafoid.org/2009/05/how-internet-explorer-handles-list-ul-and-ol/</link>
		<comments>http://seafoid.org/2009/05/how-internet-explorer-handles-list-ul-and-ol/#comments</comments>
		<pubDate>Mon, 11 May 2009 18:47:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://seafoid.org/?p=131</guid>
		<description><![CDATA[Microsoft Internet Explorer (at least versions prior to 7) seems to have some annoying bugs concerning lists in HTML. Problem: Margin between list items (&#8220;li&#8221;). If you set the margin of a list item to 0px in CSS, IE will still show a gap between the list items. Fix: Set a width for the list [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Internet Explorer (at least versions prior to 7) seems to have some annoying bugs concerning lists in HTML.</p>
<ol>
<li><strong>Problem:</strong> Margin between list items (&#8220;li&#8221;). If you set the margin of a list item to 0px in CSS, IE will still show a gap between the list items.<br />
<strong>Fix: </strong>Set a width for the list item (&#8220;li&#8221;) and the list itself (&#8220;ul&#8221;, &#8220;ol&#8221;). 100% will do the trick in most cases.<br />
The margin issue is fixed by this but it leads us to the next problem:</li>
<li><strong>Problem: </strong>When you set a width for a list item in an ordered, that is, numbered list (&#8220;ol&#8221;), Internet Explorer won&#8217;t count properly anymore.<br />
<strong>Fix: </strong>I don&#8217;t know any.</p>
<p><img class="alignnone" title="Internet Explorer list issues" src="http://seafoid.org/wp-content/uploads/2009/05/iexplorelists.png" alt="" width="194" height="156" /></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://seafoid.org/2009/05/how-internet-explorer-handles-list-ul-and-ol/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress: Display Recent Posts Anywhere</title>
		<link>http://seafoid.org/2009/05/wordpress-display-recent-posts-anywhere/</link>
		<comments>http://seafoid.org/2009/05/wordpress-display-recent-posts-anywhere/#comments</comments>
		<pubDate>Sun, 10 May 2009 15:50:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://seafoid.org/?p=117</guid>
		<description><![CDATA[I wanted to display the titles of recent blog entries on my start page. Here&#8217;s the solution I came up with: &#60;ul id="recent_entries"&#62; &#60;?php get_archives('postbypost', '5', 'html', '', '', FALSE); ?&#62; &#60;/ul&#62; '5' specifies the number of posts to be displayed. Just a little CSS styling for the list (#recent_entries li {...}) and that&#8217;s it.]]></description>
			<content:encoded><![CDATA[<p>I wanted to display the titles of recent blog entries on my start page.<br />
Here&#8217;s the solution I came up with:</p>
<p><code>&lt;ul id="recent_entries"&gt;<br />
&lt;?php get_archives('postbypost', '5', 'html', '', '', FALSE); ?&gt;<br />
&lt;/ul&gt;</code></p>
<p><code>'5'</code> specifies the number of posts to be displayed.<br />
Just a little CSS styling for the list (<code>#recent_entries li {...}</code>) and that&#8217;s it.</p>
<p><img class="alignnone size-full wp-image-124" title="WordPress: Recent Posts" src="http://seafoid.org/wp-content/uploads/2009/05/latestentries.png" alt="WordPress: Recent Posts" width="341" height="132" /></p>
]]></content:encoded>
			<wfw:commentRss>http://seafoid.org/2009/05/wordpress-display-recent-posts-anywhere/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make Container div Grow With Floating divs</title>
		<link>http://seafoid.org/2009/05/make-container-div-grow-with-floating-divs/</link>
		<comments>http://seafoid.org/2009/05/make-container-div-grow-with-floating-divs/#comments</comments>
		<pubDate>Sun, 10 May 2009 14:52:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://seafoid.org/?p=104</guid>
		<description><![CDATA[A thing I just discovered when doing the new design for seafoid.org: If you have a div that acts as a container for floating divs, it won&#8217;t grow with them. The trick is the following: insert this piece of code to the CSS of the container. overflow: auto; width: 100% The width attribute is necessary [...]]]></description>
			<content:encoded><![CDATA[<p>A thing I just discovered when doing the new design for seafoid.org:<br />
If you have a div that acts as a container for floating divs, it won&#8217;t grow with them.</p>
<p><img class="alignnone size-full wp-image-107" title="Growing with floating divs" src="http://seafoid.org/wp-content/uploads/2009/05/picture-7.png" alt="Growing with floating divs" width="337" height="267" /></p>
<p>The trick is the following: insert this piece of code to the CSS of the container.</p>
<p><code>overflow: auto;<br />
width: 100%</code></p>
<p>The width attribute is necessary for Internet Explorer versions prior to 7.</p>
<p>Hope that helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://seafoid.org/2009/05/make-container-div-grow-with-floating-divs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
