<?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>andymadge.com &#187; CSS</title>
	<atom:link href="http://www.andymadge.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andymadge.com</link>
	<description>Nothing to see here, move along…</description>
	<lastBuildDate>Sun, 23 Aug 2009 20:37:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Code to allow Image Float in WordPress Themes</title>
		<link>http://www.andymadge.com/2007/01/ccs-code-to-allow-image-float-in-wordpress-themes/</link>
		<comments>http://www.andymadge.com/2007/01/ccs-code-to-allow-image-float-in-wordpress-themes/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 15:48:39 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/web-design/2007/01/29/ccs-code-to-allow-image-float-in-wordpress-themes/</guid>
		<description><![CDATA[To enable the ability to float images left or right, add the following code to the CSS stylesheet.
Obviously this works for any web page, I just happen to be doing it for this blog on WordPress.

pre, code {
font-size: 1.2em;
}

pre {
width: 100%;
overflow: auto;
border: 1px solid #e5e5e5;
padding: 5px;
}

img.right {
padding: 4px;
margin: 0 0 2px 7px;
/*    [...]]]></description>
			<content:encoded><![CDATA[<p>To enable the ability to float images left or right, add the following code to the CSS stylesheet.</p>
<p>Obviously this works for any web page, I just happen to be doing it for this blog on WordPress.</p>
<p><span id="more-35"></span></p>
<pre>pre, code {
font-size: 1.2em;
}

pre {
width: 100%;
overflow: auto;
border: 1px solid #e5e5e5;
padding: 5px;
}

img.right {
padding: 4px;
margin: 0 0 2px 7px;
/*    display: inline; */
}

img.left {
padding: 4px;
margin: 0 7px 2px 0;
/*    display: inline; */
}

img.centered {
display: block;
margin-left: auto;
margin-right: auto;
}

.right { float: right; }
.left { float: left; }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2007/01/ccs-code-to-allow-image-float-in-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
