<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Captious</title>
	
	<link>http://captious.net</link>
	<description>I may be right, but I'm perfectly good at it</description>
	<lastBuildDate>Tue, 21 Feb 2012 15:00:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Captious" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="captious" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Captious Headway 3.0 Author Block Release</title>
		<link>http://captious.net/2012/02/21/captious-headway-3-0-author-block-release/</link>
		<comments>http://captious.net/2012/02/21/captious-headway-3-0-author-block-release/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 15:00:37 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Headway]]></category>
		<category><![CDATA[Headway Block]]></category>

		<guid isPermaLink="false">http://captious.net/?p=380</guid>
		<description><![CDATA[My tutorial about adding author info to the end of a post is very popular but I know many users of Headway do not want to have to create a child theme to add this feature. So I&#8217;ve decided to release my first Headway Block which allows you to have an about the author block [...]]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://captious.net/2012/01/03/tutorial-add-author-info-to-the-end-of-a-post-in-headway-3-0/">tutorial about adding author info to the end of a post</a> is very popular but I know many users of Headway do not want to have to create a child theme to add this feature.</p>
<p>So I&#8217;ve decided to release my first Headway Block which allows you to have an about the author block at the end of a post.</p>
<p><strong>Things To Keep In Mind</strong></p>
<ul>
<li>This if the first release so the features at this time are limited (meaning there are no options).</li>
<li>This block is only <em>meant to go on a single post/page layout in the Visual Editor</em></li>
</ul>
<p>So if you want to download this very limited, basic block, please do so below!</p>
<a href="http://captious.net/wp-content/plugins/download-monitor/download.php?id=3" title="Downloaded 0 times" class="download">Captious Headway Author Block (0)</a>
<p>If you have any questions or problems, I&#8217;d be happy to attempt to help you out, just post below.</p>
]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/02/21/captious-headway-3-0-author-block-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Site title outside the wrapper in Headway 3.0</title>
		<link>http://captious.net/2012/02/15/tutorial-site-title-outside-the-wrapper-in-headway-3-0/</link>
		<comments>http://captious.net/2012/02/15/tutorial-site-title-outside-the-wrapper-in-headway-3-0/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 15:00:47 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Headway]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://captious.net/?p=347</guid>
		<description><![CDATA[As you can see with this design, it is possible to put your site title (and/or tagline) outside the wrapper with Headway 3.0. In the current version of Headway (3.0.5) and below, this is not possible with the Visual Editor and requires a child theme and some coding. Steps Create a child theme by using [...]]]></description>
			<content:encoded><![CDATA[<p>As you can see with this design, it <strong>is</strong> possible to put your site title (and/or tagline) outside the wrapper with Headway 3.0.  In the current version of Headway (3.0.5) and below, this is not possible with the Visual Editor and requires a child theme and some coding.</p>
<h3>Steps</h3>
<ol>
<li>Create a child theme by using the steps located <a href="http://codex.headwaythemes.com/index.php/Child_Theme_Creation_101">here</a>. Activate the Child Theme you created.</li>
<li>In your functions.php for the child theme you created in Step 1, add the following code:<br />
<pre class="crayon-plain-tag"><code>&lt;?php function add_title_before_wrapper() { ?&gt;
&lt;div class=&quot;site-title&quot;&gt;&lt;span class=&quot;banner&quot;&gt;
&lt;a href=&quot;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot; title=&quot;&lt;?php bloginfo('name'); ?&gt;&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/span&gt;
&lt;h1 class=&quot;tagline&quot;&gt;&lt;?php bloginfo('description'); ?&gt;&lt;/h1&gt;
&lt;/div&gt;
&lt;?php } add_action ('headway_before_wrapper', 'add_title_before_wrapper'); ?&gt;</code></pre><p>And then save if you are editing in the theme editor in WordPress, or upload the functions.php via FTP.
</li>
<li>Edit the html above (after the { ?>) to reflect the div classes you want. I mirrored the div classes that appear when you use a header block just for consistency. The tags I used display the site title you have set in Settings > General and the description (tagline) you also have there.</li>
<li>In the Visual Editor, you no longer need a header block on the grid because you have created it with the above code so either don&#8217;t use one, or delete it from your grid.</li>
<li>In the Live CSS editor (If you are not sure where that is, please <a href="http://codex.headwaythemes.com/index.php/Live_CSS">see this link</a>), you can now style your header and tagline. An example of what I have in my Live CSS editor is:</p><pre class="crayon-plain-tag"><code>div.site-title {text-align: center; padding-top: .85em;}</code></pre><p></li>
</ol>
<p>For those who don&#8217;t want to mess with the coding at all, I have put the steps above into a child theme that you can download below.  If you just use the zip file, then you just upload it in the Appearance > Themes area (just like any other theme) activate and voila!  Your header and tagline appear outside the wrapper.</p>
<p>You also can still use the Headway Visual Editor as you normally would.</p>
<a href="http://captious.net/wp-content/plugins/download-monitor/download.php?id=2" title="Downloaded 6 times" class="download">Captious - Header outside Wrapper (6)</a>
<h3>Any questions, problems, comments?</h3>
]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/02/15/tutorial-site-title-outside-the-wrapper-in-headway-3-0/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>30 Books in 2012</title>
		<link>http://captious.net/2012/02/11/30-books-in-2012/</link>
		<comments>http://captious.net/2012/02/11/30-books-in-2012/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 02:34:30 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Entertain Me]]></category>
		<category><![CDATA[Books in 2012]]></category>

		<guid isPermaLink="false">http://captious.net/?p=317</guid>
		<description><![CDATA[I want to read more. I got a Nook for Christmas but haven&#8217;t read a complete book on it yet. That&#8217;s going to change. Thus, I present, my 30 books to read in 2012. There are going to be at least 5 books that Emily Rose and I both read. The list will include at [...]]]></description>
			<content:encoded><![CDATA[<p>I want to read more. I got a Nook for Christmas but haven&#8217;t read a complete book on it yet.  That&#8217;s going to change.  Thus, I present, my 30 books to read in 2012.  There are going to be at least 5 books that <a href="http://emily-rose.net">Emily Rose</a> and I both read.</p>
<p>The list will include at least 1:</p>
<ul>
<li>Book by a political figure I disagree with</li>
<li>Biography of a historical figure</li>
<li>Book I read in high school</li>
<li>Book that I have no interest in reading</li>
<li>Book about a city I would love to travel to but haven&#8217;t</li>
<li>Book that is the most popular in the world (ha, ha)
</ul>
<h2>Key</h2>
<p><img src="http://captious.net/images/joint.png"> Joint read with <a href="http://emily-rose.net">Emily</a><br />
<img src="http://captious.net/images/check.png"> Satisfies one of the requirements above<br />
<img src="http://captious.net/images/joint-check.png"> Joint read with <a href="http://emily-rose.net">Emily</a> and satisfies one of the requirements above<br />
<img src="http://captious.net/images/current_bullet.png"> Currently Reading<br />
<img src="http://captious.net/images/next.png"> Next Up</p>
<ul class="books">
<li class="current"><em>Native Son</em> by Richard Wright * </li>
<li class="next"><em>The Help</em> by Kathryn Stockett</li>
<li><em>Secrets in the Cellar</em> by John Glatt</li>
<li><em>A Lesson Before Dying</em> by Ernest J. Gaines</li>
<li><em>Picking Cotton</em> by Jennifer Thompson-Cannino</li>
<li class="joint"><em>Extremely Loud and Incredibly Close</em> by Jonathan Safran Foer</li>
<li><em>The Things They Carried</em> by Tim O&#8217;Brien</li>
<li class="joint"><em>Defending Jacob</em> by William Landay</li>
<li class="joint"><em>Night</em> by Elie Wiesel</li>
<li><em>In Cold Blood</em> by Truman Capote</li>
<li><em>On Killing</em> by Dave Grossman</li>
<li><em>The Color Purple</em> by Alice Walker</li>
<li class="joint"><em>Helter Skelter</em> by Vincent Bugliosi</li>
<li class="joint"><em>Notes from a Small Island</em> by Bill Bryson **</li>
<li class="joint-check"><em>His Excellency: George Washington</em> by Joseph J. Ellis</li>
<li class="joint-check"><em>Hidden Dublin </em> by Frank Hopkins</li>
<li class="joint-check"><em>Harry Potter and the Sorcerer&#8217;s Stone</em> by J.K. Rowling</li>
<li class="joint-check"><em>Broke</em> by Glenn Beck</li>
<li class="joint-check"><em>A Tale of Two Cities</em> by Charles Dickens</li>
</ul>
<p><strong>Current Count:</strong> 19<br />
<strong>Read:</strong> 0<br />
<em>Still in the works. I will be adding to the list as I find more books to read.</em></p>
<h3>Do you have any suggestions?</h3>
]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/02/11/30-books-in-2012/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Top 5 Favorite Past Athletes</title>
		<link>http://captious.net/2012/02/08/top-5-favorite-past-athletes/</link>
		<comments>http://captious.net/2012/02/08/top-5-favorite-past-athletes/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 15:00:18 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Entertain Me]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[NBA]]></category>
		<category><![CDATA[NFL]]></category>

		<guid isPermaLink="false">http://captious.net/?p=286</guid>
		<description><![CDATA[I already posted about my favorite current athletes, so I thought I would also post my top 5 favorite past athletes. Michael Jordan &#8211; He will always be #1 for me. Always. GOAT. Walter Payton &#8211; I love, love, love this man. He was an extraordinary talent and he was taken way too soon. Penny [...]]]></description>
			<content:encoded><![CDATA[<p>I already posted about my <a href="http://captious.net/?p=282">favorite current athletes</a>, so I thought I would also post my top 5 favorite past athletes.</p>
<ol>
<li><strong>Michael Jordan</strong> &#8211; He will <em>always</em> be #1 for me. Always. GOAT.</li>
<li><strong>Walter Payton</strong> &#8211; I love, love, love this man.  He was an extraordinary talent and he was taken way too soon.</li>
<li><strong>Penny (Anfernee) Hardaway</strong> &#8211; Man, I loved this kid. I loved his name, his nickname, and his commercials. Man, I miss the commercials and Lil&#8217; Penny.</li>
<li><strong>BJ Armstrong</strong> &#8211; He was the Bulls point guard in the 90s and I just enjoyed watching him play.</li>
<li><strong>Scottie Pippen</strong> &#8211; This list wouldn&#8217;t be complete without MJ&#8217;s right hand-man and a great athlete in his own right.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/02/08/top-5-favorite-past-athletes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>February Goals</title>
		<link>http://captious.net/2012/02/04/february-goals/</link>
		<comments>http://captious.net/2012/02/04/february-goals/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 05:41:50 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Just Another Day In Paradise]]></category>

		<guid isPermaLink="false">http://captious.net/?p=295</guid>
		<description><![CDATA[I am going to start making a list of goals that I have each month. What can I say, I&#8217;m a list person. Workout 6 days a week &#8211; I NEED to do this. I WANT to do this but actually doing this? We&#8217;ll see. Get up earlier &#8211; Same as above. I just love [...]]]></description>
			<content:encoded><![CDATA[<p>I am going to start making a list of goals that I have each month.  What can I say, I&#8217;m a list person.</p>
<ul>
<li><strong>Workout 6 days a week</strong> &#8211; I NEED to do this. I WANT to do this but actually doing this? We&#8217;ll see.</li>
<li><strong>Get up earlier</strong> &#8211; Same as above. I just love sleep, obviously too much.</li>
<li><strong>Clean the dining room</strong> &#8211; so it is actually usable. Right now it&#8217;s collecting junk, still from the move</li>
</ul>
<p>Wish me luck with this list <img src='http://captious.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/02/04/february-goals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 Favorite Current Athletes</title>
		<link>http://captious.net/2012/02/01/top-5-favorite-current-athletes/</link>
		<comments>http://captious.net/2012/02/01/top-5-favorite-current-athletes/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 05:00:22 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Entertain Me]]></category>
		<category><![CDATA[NBA]]></category>
		<category><![CDATA[NFL]]></category>
		<category><![CDATA[Olympics]]></category>

		<guid isPermaLink="false">http://captious.net/?p=282</guid>
		<description><![CDATA[I am a huge sports nut.  I love athletes that are good people and work hard for what they achieve. Derrick Rose - He&#8217;s the point guard of the Chicago Bulls.  He&#8217;s only 22 years old and not only is he a spectacular talent but he remains humble, selfless, and grounded. When he sets his mind [...]]]></description>
			<content:encoded><![CDATA[<p>I am a huge sports nut.  I love athletes that are good people and work hard for what they achieve.</p>
<ol>
<li><strong>Derrick Rose</strong> - He&#8217;s the point guard of the Chicago Bulls.  He&#8217;s only 22 years old and not only is he a spectacular talent but he remains humble, selfless, and grounded. When he sets his mind to something, he does it.</li>
<li><strong>Shaun White</strong> - He can skate board and he can snowboard and he&#8217;s fantastic at both.  He is the most decorated winter athlete in the U.S.  He has a great personality and he&#8217;s the best at what he does. I&#8217;m not sure what else there is to say.</li>
<li><strong>Apolo Ohno</strong> - You may remember him from the Winter Olympics Short Track Speed Skating.  He has been pretty dominant.  While I don&#8217;t think he is currently competing regularly, he, at least the last I knew, hasn&#8217;t ruled out competing in the Winter Olympics in 2014 so I still consider him current.</li>
<li><strong>Brian Urlacher</strong> - I loved this man since he first stepped foot onto the football field. I feel like I grew up with him. My favorite thing about him is that when he makes a great play, there is no excessive celebration, he just smiles.  He also is very rarely called for any penalties and is just a good, smart football player.</li>
<li><strong>Michael Phelps</strong> - There is no one better in swimming than Mr. Phelps.  He made history in 2008.  I&#8217;m sure he will do it again in 2012.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/02/01/top-5-favorite-current-athletes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Loving at the moment…</title>
		<link>http://captious.net/2012/01/30/loving-at-the-moment/</link>
		<comments>http://captious.net/2012/01/30/loving-at-the-moment/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 09:12:08 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Entertain Me]]></category>
		<category><![CDATA[hot chocolate]]></category>
		<category><![CDATA[Kinect]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[popcorn]]></category>

		<guid isPermaLink="false">http://captious.net/?p=275</guid>
		<description><![CDATA[hot chocolate &#8211; this is not surprising. I love this year round. popcorn &#8211; same as above. Eric Church &#8211; I am loving his latest album Chief and I find him incredibly good looking The Big Bang Theory &#8211; I&#8217;m not sure that there is a funnier show out there (well, of course, The Golden Girls [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>hot chocolate &#8211; this is not surprising. I love this year round.</li>
<li>popcorn &#8211; same as above.</li>
<li>Eric Church &#8211; I am loving his latest album <em>Chief</em> and I find him incredibly good looking</li>
<li>The Big Bang Theory &#8211; I&#8217;m not sure that there is a funnier show out there (well, of course, The Golden Girls always is #1 in my eyse)</li>
<li>The Kinect (seriously? too much fun)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/01/30/loving-at-the-moment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rediscovering an old love</title>
		<link>http://captious.net/2012/01/28/rediscovering-an-old-love/</link>
		<comments>http://captious.net/2012/01/28/rediscovering-an-old-love/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 03:50:25 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Entertain Me]]></category>
		<category><![CDATA[Bulls]]></category>
		<category><![CDATA[Derrick Rose]]></category>
		<category><![CDATA[NBA]]></category>

		<guid isPermaLink="false">http://captious.net/?p=54</guid>
		<description><![CDATA[Back in the MJ glory days, I was a huge NBA fan. I loved Michael Jordan first and foremost but also just enjoyed the game. I played basketball all the time and loved the game entirely. After MJ left, it completely took my love for the game out of it. In my opinion, I was [...]]]></description>
			<content:encoded><![CDATA[<p>Back in the MJ glory days, I was a huge NBA fan. I loved Michael Jordan first and foremost but also just enjoyed the game. I played basketball all the time and loved the game entirely. After MJ left, it completely took my love for the game out of it. In my opinion, I was able to witness the GOAT (Greatest of All Time) and when the GOAT leaves, it&#8217;s kind of hard to keep the love there. I tried to watch a few games after that and even managed to watch a whole NBA game but that was in the NBA finals. I didn&#8217;t watch basketball regularly.</p>
<p>Fast forward to January 2011 when I began listening to sports radio (shoutout 670thescore) and I heard incessant talking about the Bulls and more specifically, Derrick Rose.  I had no idea who Derrick was but after about a week of listening to sports radio, I decided to watch a Bulls game for the first time since MJ left.</p>
<p>I haven&#8217;t looked back.  Although I started watching because of Derrick (MVP!), I keep watching because I have come to love this Bulls team.  This is a team that cares about one thing: winning.  They are unselfish.  And I love their personality.  I think the team takes the lead first from Coach Thibodeau but also from Derrick, who while a superstar, remains humble and always strives to do better.   This is a kid who never makes excuses for himself but instead, puts the blame on his shoulders alone.  He is the type of superstar you WANT on your team. (I&#8217;d take Derrick over LeBron ANY day).</p>
<p>I can&#8217;t really thank Derrick and the rest of the Bulls more because I have rediscovered my love for basketball.  I even bought a basketball this past summer and shot around for the first time in at least 5 years.  There&#8217;s nothing like rediscovering an old love.</p>
]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/01/28/rediscovering-an-old-love/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Worst National Anthem Ever</title>
		<link>http://captious.net/2012/01/23/worst-national-anthem-ever/</link>
		<comments>http://captious.net/2012/01/23/worst-national-anthem-ever/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 09:00:49 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Entertain Me]]></category>
		<category><![CDATA[Hilarity]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://captious.net/?p=262</guid>
		<description><![CDATA[I don&#8217;t know how you butcher it this badly, but the face of the guy at about :32 makes it all worth it.]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know how you butcher it this badly, but the face of the guy at about :32 makes it all worth it.</p>
<p><a href="http://www.youtube.com/watch?v=8SHnpWohrg0"><img src="http://img.youtube.com/vi/8SHnpWohrg0/2.jpg"></a></p>
<p><a href="http://www.youtube.com/watch?v=8SHnpWohrg0">Click here</a> to view the video on YouTube.</p>

]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/01/23/worst-national-anthem-ever/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Headway 3.0 Fluid Header and Footer Child Theme</title>
		<link>http://captious.net/2012/01/21/headway-3-0-fluid-header-and-footer-child-theme/</link>
		<comments>http://captious.net/2012/01/21/headway-3-0-fluid-header-and-footer-child-theme/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 20:55:39 +0000</pubDate>
		<dc:creator>Jme</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Headway]]></category>

		<guid isPermaLink="false">http://captious.net/?p=48</guid>
		<description><![CDATA[This child theme basically takes this tutorial and puts it in child theme form, with some changes. You need to download the file below and install it as a theme, activate it. Please note: I have not inserted anything in the header and footer. This is a very basic child theme and assumes that you [...]]]></description>
			<content:encoded><![CDATA[<p>This child theme basically <a href="http://headwaythemes.com/screencast-tuesday-fluid-headers-and-footer/">takes this tutorial</a> and puts it in child theme form, with some changes. </p>
<p>You need to download the file below and install it as a theme, activate it. Please note: I have not inserted anything in the header and footer.  This is a very basic child theme and assumes that you know a little bit about PHP and CSS.</p>
<p>If you want to make changes to what is displayed in the header and footer, you will need to edit the functions.php file.</p>
<p>If you want to make changes to styling, you will edit the stylesheet (style.css) or use the Live CSS editor.</p>
<p>If you have specific questions about how to do something, please comment below!<br />
<a href="http://captious.net/wp-content/plugins/download-monitor/download.php?id=1" title="Downloaded 1 times" class="download">Captious Fluid Header & Footer (1)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://captious.net/2012/01/21/headway-3-0-fluid-header-and-footer-child-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

