<?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>Literary Spring Designs &#187; css</title>
	<atom:link href="http://blog.literaryspring.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.literaryspring.com</link>
	<description></description>
	<lastBuildDate>Thu, 17 May 2012 22:14:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Fun with Drop Caps</title>
		<link>http://blog.literaryspring.com/2012/05/fun-with-drop-caps/</link>
		<comments>http://blog.literaryspring.com/2012/05/fun-with-drop-caps/#comments</comments>
		<pubDate>Wed, 02 May 2012 17:23:33 +0000</pubDate>
		<dc:creator>Rebecca</dc:creator>
				<category><![CDATA[designing a website]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://blog.literaryspring.com/?p=1574</guid>
		<description><![CDATA[Example 1 #Section p:first-letter{ float:left; margin: 4px 1px 0px 4px; color:#000; font-size: 4.4em; font-weight: 400; font-family: Georgia, serif; text-shadow: 2px 2px 1px #CDB7B5; } Example 2 #Section p:first-letter{ float:left; margin:4px 2px 0px 4px; color:#000; font-size:4.4em; font-family: 'Uncial Antiqua', Georgia, serif; &#8230; <a href="http://blog.literaryspring.com/2012/05/fun-with-drop-caps/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2> Example 1</h2>
<p><img src="http://blog.literaryspring.com/wp-content/uploads/2012/04/dropcap1.jpg" alt="dropcap1" /><br />
<span id="more-1574"></span></p>
<pre class="brush:css">
#Section p:first-letter{
float:left;
margin: 4px 1px 0px 4px;
color:#000;
font-size: 4.4em;
font-weight: 400;
font-family: Georgia, serif;
text-shadow: 2px 2px 1px #CDB7B5;
}
</pre>
<h2>Example 2</h2>
<p><img src="http://blog.literaryspring.com/wp-content/uploads/2012/04/dropcap2.jpg" alt="dropcap2" /></p>
<pre class="brush:css">
#Section p:first-letter{
float:left;
margin:4px 2px 0px 4px;
color:#000;
font-size:4.4em;
font-family: 'Uncial Antiqua', Georgia, serif;
font-weight: 400;
text-shadow: 2px 2px 2px #828282;
}
</pre>
<p class="code">Add the following code to your HTML page header < link href='http://fonts.googleapis.com/css?family=Uncial+Antiqua' rel='stylesheet' type='text/css' > </p>
<h2>Example 3</h2>
<p><img src="http://blog.literaryspring.com/wp-content/uploads/2012/04/dropcap3.jpg" alt="dropcap3" /></p>
<pre class="brush:css">
#Section p:first-letter{
float:left;
margin:5px 1px 0px 5px;
color:#000;
font-size:4.4em;
font-family: 'Fredericka the Great', Georgia, serif;
font-weight: 400;
text-shadow: 2px 2px 2px #3d3d3d;
}
</pre>
<p class="code">Add the following code to your HTML page header < link href='http://fonts.googleapis.com/css?family=Fredericka+the+Great' rel='stylesheet' type='text/css' > </p>
<h2>Example 4</h2>
<p><img src="http://blog.literaryspring.com/wp-content/uploads/2012/04/dropcap4.jpg" alt="dropcap4" /></p>
<pre class="brush:css">
#Section p:first-letter{
float:left;
margin: 4px 1px 0px 4px;
color:#171717;
font-size:4.4em;
font-family: Georgia, serif;
font-weight: 400;
text-shadow: 1px -1px 1px #c0c0c0;
}
</pre>
<h2>Example 5</h2>
<p><img src="http://blog.literaryspring.com/wp-content/uploads/2012/04/dropcap5.jpg" alt="dropcap5" /></p>
<pre class="brush:css">
#Section p:first-letter{
float:left;
margin: 3px 1px 0px 3px;
color:#000;
font-size:4.8em;
font-family: 'UnifrakturMaguntia', Georgia, serif;
font-weight: 400;
text-shadow: -1px 1px 1px #3d3d3d;
}
</pre>
<p class="code">Add the following code to your HTML page header < link href='http://fonts.googleapis.com/css?family=UnifrakturMaguntia' rel='stylesheet' type='text/css' ></p>
<h2>Notes</h2>
<ul>
<li>&#8220;Section&#8221; is the name of the div where you want the drop-caps.
</li>
<li>Several of these examples use the <a href="http://www.google.com/webfonts" target="_blank">Google Font Directory</a>. For the HTML code for the fonts you can use the standard code shown above or you can go to the Google Font Directory and use the @import or javascript options.
</li>
</ul>
<p class="center"><a href="http://somedaycrafts.blogspot.com"><img src="http://3.bp.blogspot.com/_vk7b0eb36c8/S-Dt8w4FjkI/AAAAAAAAAKE/A5wquzXhr4g/s320/wgw+button.jpg"/></a></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.literaryspring.com/2012/05/fun-with-drop-caps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glass Hover CSS Effect</title>
		<link>http://blog.literaryspring.com/2012/03/glass-css-effect/</link>
		<comments>http://blog.literaryspring.com/2012/03/glass-css-effect/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 17:18:41 +0000</pubDate>
		<dc:creator>Rebecca</dc:creator>
				<category><![CDATA[designing a website]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://blog.literaryspring.com/?p=1438</guid>
		<description><![CDATA[Customizing the CSS3 I was playing around with navigation options and figured out a good method for creating a glass looking hover effect. I decided to leave the hover rectangular, but you can also adjust the border radius to make &#8230; <a href="http://blog.literaryspring.com/2012/03/glass-css-effect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>Customizing the CSS3</h1>
<p>I was playing around with navigation options and figured out a good method for creating a glass looking hover effect. I decided to leave the hover rectangular, but you can also adjust the border radius to make it rounder.</p>
<p>I am only including the css for the hover. These values assume that you are using the background color #d9d9d9 for your navigation bar. If you are using a different navigation background color replace &#8220;#d9d9d9&#8243; with the color you are using.</p>
<h2>Menu- Groove Glass</h2>
<p class="center"> <img src="http://blog.literaryspring.com/wp-content/uploads/2012/03/menu_groove.jpg" alt="groove" /></p>
<pre class="brush:css">
#navlist li a:hover
{
color: #121212;
text-shadow: 2px 2px 2px #999;
background-color: #d9d9d9;
border: 3px groove #999;
border-radius: 5px;
background-image: -moz-linear-gradient(100% 100% 90deg, #c0c0c0, #d9d9d9);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#c0c0c0), to(#d9d9d9));
-moz-box-shadow: 2px 2px 2px #bababa;
-webkit-box-shadow: 2px 2px 2px #bababa;
}
</pre>
<p><span id="more-1438"></span></p>
<h2>Menu- Ridge Glass</h2>
<p class="center"> <img src="http://blog.literaryspring.com/wp-content/uploads/2012/03/menu_ridge.jpg" alt="ridge" /></p>
<pre class="brush:css">
#navlist li a:hover
{
color: #121212;
text-shadow: 2px 2px 2px #999;
background-color: #d9d9d9;
border: 3px ridge #999;
border-radius: 5px;
background-image: -moz-linear-gradient(100% 100% 90deg, #c0c0c0, #d9d9d9);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#c0c0c0), to(#d9d9d9));
-moz-box-shadow: 2px 2px 2px #bababa;
-webkit-box-shadow: 2px 2px 2px #bababa;
}
</pre>
<h2>Menu- Inset Glass</h2>
<p class="center"> <img src="http://blog.literaryspring.com/wp-content/uploads/2012/03/menu_inset.jpg" alt="inset" /></p>
<pre class="brush:css">
#navlist li a:hover
{
color: #121212;
text-shadow: 2px 2px 2px #999;
background-color: #d9d9d9;
border: 3px inset #999;
border-radius: 5px;
background-image: -moz-linear-gradient(100% 100% 90deg, #c0c0c0, #d9d9d9);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#c0c0c0), to(#d9d9d9));
-moz-box-shadow: 2px 2px 2px #bababa;
-webkit-box-shadow: 2px 2px 2px #bababa;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.literaryspring.com/2012/03/glass-css-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shades of Grey Layout Template</title>
		<link>http://blog.literaryspring.com/2010/09/shades-of-grey-layout/</link>
		<comments>http://blog.literaryspring.com/2010/09/shades-of-grey-layout/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 18:31:15 +0000</pubDate>
		<dc:creator>Rebecca</dc:creator>
				<category><![CDATA[designing a website]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://www.blog.literaryspring.com/?p=768</guid>
		<description><![CDATA[Shades of Grey Layout Full size preview Shades of Grey Layout- right click save About the Layout Note: Internet Explorer users will not see the text shadows, box shadows, but minus these small differences the layout has been tested and &#8230; <a href="http://blog.literaryspring.com/2010/09/shades-of-grey-layout/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>Shades of Grey Layout</h1>
<h2><img src="http://www.blog.literaryspring.com/wp-content/uploads/2010/09/layout30_prev.png" alt="Shades of Grey Layout" /></h2>
<p><a href="http://simplicity.literaryspring.com/layout30/index.html" target="_blank">Full size preview</a><br />
<a href="http://www.literaryspring.com/layout30.zip">Shades of Grey Layout- right click save</a></p>
<h1>About the Layout</h1>
<p><span id="more-768"></span></p>
<p>Note: Internet Explorer users will not see the text shadows, box shadows, but minus these small differences the layout has been tested and works in Firefox, Safari, and Internet Explorer 6.0 and above.</p>
<h1>Terms of Use</h1>
<ul>
<li>You may use the css3 layout linked to above with attribution (http://www.literaryspring.com).
</li>
<li>You may use up to 80% of the css without attribution.
</li>
<li>Layouts have a clean design in order to allow for the most customization and not overwhelm the content.
</li>
<li>Credits for the images are included on the layout.
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.literaryspring.com/2010/09/shades-of-grey-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>B&amp;W Elastic CSS3 Layout</title>
		<link>http://blog.literaryspring.com/2010/06/css3layout/</link>
		<comments>http://blog.literaryspring.com/2010/06/css3layout/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 20:44:59 +0000</pubDate>
		<dc:creator>Rebecca</dc:creator>
				<category><![CDATA[designing a website]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://www.blog.literaryspring.com/?p=559</guid>
		<description><![CDATA[Black and White Elastic CSS3 Layout Full size preview Elastic CCS3 Layout- right click save (see no below) About the Layout Note: Internet Explorer does not yet support css3 drop shadows. Otherwise the layout works in Firefox, Chrome, Safari, and &#8230; <a href="http://blog.literaryspring.com/2010/06/css3layout/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>Black and White Elastic CSS3 Layout</h1>
<h2><img src="http://www.blog.literaryspring.com/wp-content/uploads/2010/09/layout27_prev_blog.png" alt="bw elastic layout preview" /></h2>
<p><a href="http://simplicity.literaryspring.com/layout27/index27.html" target="_blank">Full size preview</a><br />
<a href="http://www.literaryspring.com/layout27.zip">Elastic CCS3 Layout- right click save (see no below)</a></p>
<h1>About the Layout</h1>
<p><span id="more-559"></span></p>
<p>Note: Internet Explorer does not yet support css3 drop shadows. Otherwise the layout works in Firefox, Chrome, Safari, and Internet Explorer 6.0 and above.</p>
<h1>Terms of Use</h1>
<ul>
<li>You may use the css3 layout linked to above with attribution (http://www.literaryspring.com).
</li>
<li>You may use up to 80% of the css without attribution.
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.literaryspring.com/2010/06/css3layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Break It Down: Lengthy CSS</title>
		<link>http://blog.literaryspring.com/2010/05/long-css/</link>
		<comments>http://blog.literaryspring.com/2010/05/long-css/#comments</comments>
		<pubDate>Thu, 27 May 2010 22:57:07 +0000</pubDate>
		<dc:creator>Rebecca</dc:creator>
				<category><![CDATA[designing a website]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.blog.literaryspring.com/?p=536</guid>
		<description><![CDATA[Original Code The CSS listed below is a slight variation of the CSS I used for the quote box in this layout. As you can see the CSS that controls even a small part of the design can become quite &#8230; <a href="http://blog.literaryspring.com/2010/05/long-css/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>Original Code</h1>
<p>The CSS listed below is a slight variation of the CSS I used for the quote box in <a href="http://simplicity.literaryspring.com/layout24/index.html">this layout</a>. As you can see the CSS that controls even a small part of the design can become quite lengthy. When you add in the rest of the typography and structure and the CSS can look overwhelming.</p>
<pre class="brush:css">
p.quotebox {
color: #ffc;
font-size: 3em;
font-family: Baskerville, Garamond, Palatino, Georgia, serif;
font-weight: bold;
text-align: center;
text-shadow: 2px 2px 2px #000;
background-color: #300;
border: solid 1px #333;
-moz-box-shadow: 5px 5px 0 rgba(72, 72, 72, .5);
-webkit-box-shadow: 5px 5px 0 rgba(72, 72, 72, .5);
box-shadow: 5px 5px 0 rgba(72, 72, 72, .5);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
padding: 5px;
}
</pre>
<p><span id="more-536"></span></p>
<h1>Break It Down</h1>
<ul>
<li>CSS for the text color <code>color: #ffc;</code>
</li>
<li>CSS for the font-size: <code>font-size: 3em;</code>
</li>
<li>CSS for the font-family: <code>font-family: Baskerville, Garamond, Palatino, Georgia, serif;</code>
</li>
<li>CSS for the font-weight: <code>font-weight: bold;</code>
</li>
<li>CSS for aligning text: <code>text-align: center;</code>
</li>
<li>CSS for the text-shadow: <code>text-shadow: 2px 2px 2px #000;</code>
</li>
<li>CSS for the background color for the paragraph: <code>background-color: #300;</code>
</li>
<li>CSS for the border around the paragraph: <code>border: solid 1px #333;</code>
</li>
<li>CSS for the text shadow: <code>text-shadow: 2px 2px 2px #000;</code>
</li>
<li>CSS for the shadow around the paragraph box:<br />
<code>-moz-box-shadow: 5px 5px 0 rgba(72, 72, 72, .5);<br />
-webkit-box-shadow: 5px 5px 0 rgba(72, 72, 72, .5);<br />
box-shadow: 5px 5px 0 rgba(72, 72, 72, .5);</code>
</li>
<li>CSS for making rounded edges around the paragraph box <code><br />
-moz-border-radius: 5px;<br />
-webkit-border-radius: 5px;</code>
</li>
<li>Code for the padding between the text and the edge of the box <code>padding: 5px</code>
</li>
</ul>
<h1>Only Use the CCS You Really Need</h1>
<h2>Taking Out the CSS3</h2>
<p>If you need to design a site that looks the same in all browsers you need to take out the CSS3 which is not yet universally supported most notably by Internet Explorer. Below is the CSS without the CSS3. While CSS3 has some wonderful uses the fact it exists does not mean one always needs to use it. Look at your design and decide whether it really does need a drop shadow for the box, a shadow for the text, and rounded corners. Having made quote boxes before in some case the CSS3 helps. In other cases a drop shadow can easily be eliminated without sacrificing clarity and for some designs sharper edges look better than round ones.</p>
<pre class="brush:css">
p.quotebox {
color: #ffc;
font-size: 3em;
font-family: Baskerville, Garamond, Palatino, Georgia, serif;
font-weight: bold;
text-align: center;
background-color: #300;
border: solid 1px #333;
padding: 5px;
}
</pre>
<h2>Reevaluate the Necessities</h2>
<ul>
<li>Does the font need to be bold or is the font you are using thick enough that you can remove <code>font-weight: bold</code>
</li>
<li>Should the text be aligned to the center? Sometimes in narrow columns left aligned text is better and, thus, you can leave out <code>text-align: center</code>.
</li>
<li>If all you want is a drop quote you do not need <code>background-color: #300;</code> or <code>border: solid 1px #333;</code>
</li>
<li>For the box shadow in the original code, rgba was used in order to adjust opacity. If you prefer hex and are not adjusting opacity then use hex.
</li>
</ul>
<h2>In Conclusion: Other Methods to Handle CSS</h2>
<p>Often the best design or the best design for an element is complicated and takes a substantial amount of CSS to accomplish. There are a lot of websites and it pays (often literally) to stand out. However, especially when you are starting out vast amounts of CSS can be intimidating. Comments in the CSS file help and the more experience you have the more you can easily find the specific CSS you needed. Clearly laid out CSS also helps. However, even with these additional tricks for both the design itself and your own sanity in dealing with the CSS it is a good idea to break down the CSS you have and only use what you actually need.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.literaryspring.com/2010/05/long-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Borders</title>
		<link>http://blog.literaryspring.com/2010/02/css-borders/</link>
		<comments>http://blog.literaryspring.com/2010/02/css-borders/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 19:17:02 +0000</pubDate>
		<dc:creator>Rebecca</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.blog.literaryspring.com/?p=316</guid>
		<description><![CDATA[CSS borders are a nice way to add a little something extra to a picture. The trick is to set the image apart from the rest of the article or post without the border overwhelming the image. Border Properties border-width: &#8230; <a href="http://blog.literaryspring.com/2010/02/css-borders/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>CSS borders are a nice way to add a little something extra to a picture. The trick is to set the image apart from the rest of the article or post without the border overwhelming the image.</p>
<h2>Border Properties</h2>
<ul>
<li> border-width: This is the width of your border (ie 5px)
</li>
<li>border-style: none (no border), solid, dotted, dashed, double, groove, ridge, inset, outset
</li>
<li>border-color: You can use a color name, hex value (ie #369), or RGB value (ie rgb(0,0,255))
</li>
<li>To make a border with different styles on each side use: border-top-style, border-right-style, border-bottom-style, border-left-style
</li>
</ul>
<p><span id="more-316"></span></p>
<h2>Thick Brown Border</h2>
<p><img src="http://www.blog.literaryspring.com/wp-content/uploads/2010/02/brownborder.jpg" alt="nameofimage" /></p>
<h3>The CSS</h3>
<pre class="brush:css">img.nameofclass {
border: 3px solid #300;
padding: 5px;
background: #630;
}</pre>
<p><em>The xhtml</em>: </p>
<pre class="brush:xhtml">
<img class="nameofclass" src="image.jpg" alt="nameofimage" />
</pre>
<h2>Blue Double Border</h2>
<p><img src="http://www.blog.literaryspring.com/wp-content/uploads/2010/02/doubleblueborder.jpg" alt="nameofimage" /></p>
<p><em>The css</em>: </p>
<pre class="brush:css">
img.nameofclass {
border: 5px double #399;
padding: 3px;
background: #9cc;
}</pre>
<p><em>The xhtml</em>: </p>
<pre class="brush:xhtml">
<img class="nameofclass" src="image.jpg" alt="nameofimage" /></pre>
<h2>Orange Inset Border</h2>
<p><img src="http://www.blog.literaryspring.com/wp-content/uploads/2010/02/orangeinsetborder.jpg" alt="nameofimage" /></p>
<p><em>The css</em>:</p>
<pre class="brush:css">
 img.nameofclass {
border: 5px inset #fc6;
padding: 3px;
background: #c30;
}
</pre>
<p><em>The xhtml</em>: </p>
<pre class="brush:xhtml">
<img class="nameofclass" src="image.jpg" alt="nameofimage" />
</pre>
<h2>Green Ridge Border</h2>
<p><img src="http://www.blog.literaryspring.com/wp-content/uploads/2010/02/greenborder.jpg" alt="nameofimage" /></p>
<p><em>The css</em>:</p>
<pre class="brush:css">
img.nameofclass {
border: 8px ridge #cf9;
padding: 2px 2px;
background: #063;
}
</pre>
<p><em>The xhtml</em>: </p>
<pre class="brush:xhtml">
<img class="nameofclass" src="image.jpg" alt="nameofimage" />
</pre>
<h2>Blue Variable Border</h2>
<p><img src="http://www.blog.literaryspring.com/wp-content/uploads/2010/02/blueborder.jpg" alt="nameofimage" /></p>
<p><em>The css</em>: </p>
<pre class="brush:css">
img.nameofclass {
border-top: 8px groove #399;
border-right: 5px solid #063;
border-bottom: 8px groove #399;
border-left: 5px solid #063;
padding: 2px;
background: #fff;
}
</pre>
<p><em>The xhtml</em>: </p>
<pre class="brush:xhtml">
<img class="nameofclass" src="image.jpg" alt="nameofimage" />
</pre>
<h2>How to use the code listed above</h2>
<ul>
<li>Replace &#8220;nameofclass&#8221; with whatever name you want to use for the type of images you want to have a particular border. If you wanted a certain border for all pictures of buildings you might use img.buildingpics. It is best not to use the name of the picture (ie TowerofLondon.jpg) unless you will only be using a specific border for one picture.
</li>
<li>&#8220;Name of Image&#8221; is usually the name of the file or a very <em>brief</em> description of it  (ie TowerofLondon)
</li>
<li>The xhtml will be used in the part of your document where you want the image with the border. On this page I used the xhtml in the body of the document in div with the main content just below the h2 heading.
</li>
<li> The CSS portion will go in your stylesheet.
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.literaryspring.com/2010/02/css-borders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

