<?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>inLine Minimal WordPress Theme</title>
	<atom:link href="http://inline.thomasgriffinmedia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://inline.thomasgriffinmedia.com</link>
	<description>A Refreshingly Clean, Simple and Minimal WordPress Theme</description>
	<lastBuildDate>Thu, 19 Apr 2012 06:42:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>inLine Adds Localization Support!</title>
		<link>http://inline.thomasgriffinmedia.com/188/inline-adds-localization-support/</link>
		<comments>http://inline.thomasgriffinmedia.com/188/inline-adds-localization-support/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 03:49:47 +0000</pubDate>
		<dc:creator>Thomas Griffin</dc:creator>
				<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://inline.thomasgriffinmedia.com/?p=188</guid>
		<description><![CDATA[I have just submitted inLine Version 1.2.6.1 which contains a few bug fixes and support for localization! inLine now loads its own textdomain (&#8216;inline&#8217;) and offers localization support via .po/.mo files. These files are located in the lib/languages directory of the theme. Along with this update will come a changelog that will be posted on [...]]]></description>
			<content:encoded><![CDATA[<p>I have just submitted inLine Version 1.2.6.1 which contains a few bug fixes and support for localization!</p>
<p>inLine now loads its own textdomain (&#8216;inline&#8217;) and offers localization support via <code>.po/.mo</code> files. These files are located in the <code>lib/languages</code> directory of the theme.</p>
<p>Along with this update will come a changelog that will be posted on this site for future reference for anyone using or wanting to customize the theme. <img src='http://inline.thomasgriffinmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Enjoy the new updates, and be sure to contact me with feature requests!</p>
]]></content:encoded>
			<wfw:commentRss>http://inline.thomasgriffinmedia.com/188/inline-adds-localization-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Social Media Buttons Underneath the Header</title>
		<link>http://inline.thomasgriffinmedia.com/180/how-to-add-social-media-buttons-underneath-the-header/</link>
		<comments>http://inline.thomasgriffinmedia.com/180/how-to-add-social-media-buttons-underneath-the-header/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 15:28:55 +0000</pubDate>
		<dc:creator>Thomas Griffin</dc:creator>
				<category><![CDATA[inLine Tutorials]]></category>
		<category><![CDATA[social buttons]]></category>

		<guid isPermaLink="false">http://inline.thomasgriffinmedia.com/?p=180</guid>
		<description><![CDATA[I have had a couple requests from people wanting me to show them how to get the social media buttons underneath the header like I have on this site. This will make for a good tutorial, so follow along to learn how you can do this and your site too. We will be using both [...]]]></description>
			<content:encoded><![CDATA[<p>I have had a couple requests from people wanting me to show them how to get the social media buttons underneath the header like I have on this site. This will make for a good tutorial, so follow along to learn how you can do this and your site too. <img src='http://inline.thomasgriffinmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  We will be using both your child theme&#8217;s <code>functions.php</code> file and <code>style.css</code> file.</p>
<p>First of all, you will need to download the image. Unzip the file and find the image titled &#8220;social.png&#8221;. Upload that image into the <code>images</code> folder of your child theme. If you haven&#8217;t already downloaded that, click on the &#8220;Sample Child Theme&#8221; link in the navigation menu above to get the sample child theme.</p>
<h3>Instructions for your functions.php file</h3>
<p>Copy and paste the following code into your <code>functions.php</code> file:</p>
<pre class="brush:php">// add social icons to the right of the secondary nav menu
add_action( 'inline_secondary_nav', 'tgm_social_icons' );
function tgm_social_icons() {
	echo '&lt;div class="social-icons"&gt;';
		echo '&lt;ul class="social"&gt;';
			echo '&lt;li&gt;&lt;a class="rss" href="http://feeds.feedburner.com/inlinetheme" title="RSS Feed" target="_blank"&gt;RSS Feed&lt;/a&gt;&lt;/li&gt;';
			echo '&lt;li&gt;&lt;a class="twitter" href="http://twitter.com/jthomasgriffin" title="Twitter" target="_blank"&gt;Twitter&lt;/a&gt;&lt;/li&gt;';
			echo '&lt;li&gt;&lt;a class="facebook" href="http://facebook.com/thomasgriffinmedia" title="Facebook" target="_blank"&gt;Facebook&lt;/a&gt;&lt;/li&gt;';
			echo '&lt;li class="last"&gt;&lt;a class="google" href="https://plus.google.com/117070403922420030160/posts" title="Google+" target="_blank"&gt;Google+&lt;/a&gt;&lt;/li&gt;';
		echo '&lt;/ul&gt;&lt;!--end .social--&gt;';
	echo '&lt;/div&gt;&lt;!--end .social-icons--&gt;';
}</pre>
<p>Change the links with the href=&#8221;" to match your own. It may be that you only want to use a couple of these buttons. If this is the case, remove the list items that you do not want, and make sure that you add the class of &#8220;last&#8221; to the very last list item in your unordered list. This will keep the styling in check.</p>
<h3>Instructions for the style.css file</h3>
<p>Next, copy and paste the following code into your <code>style.css</code> file:</p>
<pre class="brush:css">/* :..[ Social Icons ]..: */

.social-icons { float: right; display: inline; width: auto; height: auto; margin: 7px 0 0; padding: 0; }
.social-icons .social { list-style: none; margin: 0; padding: 0; }
.social-icons .social li { float: left; margin-right: 5px; width: 24px; height: 24px; }
.social-icons .social li.last { margin-right: 0; }
.social-icons .social li a { display: block; outline: none; width: 24px; height: 24px; text-indent: -9999px; }
.social-icons .social li a.rss { background: url('images/social.png') no-repeat scroll 0 0; }
.social-icons .social li a.twitter { background: url('images/social.png') no-repeat scroll -24px 0; }
.social-icons .social li a.facebook { background: url('images/social.png') no-repeat scroll -48px 0; }
.social-icons .social li a.google { background: url('images/social.png') no-repeat scroll -72px 0; }</pre>
<p>That will display the icons exactly in the same way as on this site. If you have removed any of the icons from the list, you can remove the subsequent CSS related to it in here as well if you would like (although it is not necessary).</p>
<p>That should wrap it up! Let me know if you have any questions. <img src='http://inline.thomasgriffinmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://inline.thomasgriffinmedia.com/180/how-to-add-social-media-buttons-underneath-the-header/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Add Your Own Logo to the inLine Theme</title>
		<link>http://inline.thomasgriffinmedia.com/174/how-to-add-your-own-logo-to-the-inline-theme/</link>
		<comments>http://inline.thomasgriffinmedia.com/174/how-to-add-your-own-logo-to-the-inline-theme/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 15:04:53 +0000</pubDate>
		<dc:creator>Thomas Griffin</dc:creator>
				<category><![CDATA[inLine Tutorials]]></category>
		<category><![CDATA[logo]]></category>

		<guid isPermaLink="false">http://inline.thomasgriffinmedia.com/?p=174</guid>
		<description><![CDATA[In this tutorial, we will learn how to add in your own custom logo to the inLine theme. Follow the instructions below: Make sure you have created a child theme. You can get instructions and the sample child theme here. Title your logo &#8220;logo.png&#8221; and place it in the images folder of your child theme. [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial, we will learn how to add in your own custom logo to the inLine theme. Follow the instructions below:</p>
<ol>
<li>Make sure you have created a child theme. You can get instructions and the sample child theme <a title="Sample Child Theme" href="http://inline.thomasgriffinmedia.com/sample-child-theme/">here</a>.</li>
<li>Title your logo &#8220;logo.png&#8221; and place it in the <code>images</code> folder of your child theme.</li>
<li>Add the following code to your child theme&#8217;s style.css file:
<pre class="brush:css">#logo { text-indent: -9999px; width: 121px; height: 26px; background: url('images/logo.png') no-repeat scroll 0 0; }
#logo a { display: block; outline: none; width: 121px; height: 26px; }</pre>
</li>
<li>Save your <code>style.css</code> file and reload your site! Your logo will now appear in place of the text.</li>
</ol>
<p>Change the width and height of the above to the width and height of your own logo. You may need to adjust the padding in the navigation menu based on the height of your logo to get everything aligned correctly. You could place the following in your <code>style.css</code> file as well:</p>
<pre class="brush:css">#navigation .menu li a { padding-bottom: 30px; }</pre>
<p>Just change the padding at the bottom so that it will align the with bottom of the header. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://inline.thomasgriffinmedia.com/174/how-to-add-your-own-logo-to-the-inline-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Change the Comment Avatar Size</title>
		<link>http://inline.thomasgriffinmedia.com/167/how-to-change-the-comment-avatar-size/</link>
		<comments>http://inline.thomasgriffinmedia.com/167/how-to-change-the-comment-avatar-size/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 22:54:00 +0000</pubDate>
		<dc:creator>Thomas Griffin</dc:creator>
				<category><![CDATA[inLine Tutorials]]></category>
		<category><![CDATA[comments]]></category>

		<guid isPermaLink="false">http://inline.thomasgriffinmedia.com/?p=167</guid>
		<description><![CDATA[This is another simple tutorial that shows you just how easy it is to customize the inLine theme for WordPress. Today we are going to learn how to change the comment avatar size. By default, the avatar size is 48 x 48 pixels. In order to change this, paste the following into your child theme&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>This is another simple tutorial that shows you just how easy it is to customize the inLine theme for WordPress. Today we are going to learn how to change the comment avatar size. By default, the avatar size is 48 x 48 pixels. In order to change this, paste the following into your child theme&#8217;s <code>functions.php</code> file:</p>
<pre class="brush:php">add_filter( 'inline_get_avatar', 'tgm_custom_avatar_size' );
function tgm_custom_avatar_size( $avatar ) {
	global $comment;
	$avatar = get_avatar( $comment, $size = '64' );
	return $avatar;
}</pre>
<p>Change the number 64 to whatever size you want your avatar to be. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://inline.thomasgriffinmedia.com/167/how-to-change-the-comment-avatar-size/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Change the Read More Link Text</title>
		<link>http://inline.thomasgriffinmedia.com/126/how-to-change-the-read-more-link-text/</link>
		<comments>http://inline.thomasgriffinmedia.com/126/how-to-change-the-read-more-link-text/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 17:19:41 +0000</pubDate>
		<dc:creator>Thomas Griffin</dc:creator>
				<category><![CDATA[inLine Tutorials]]></category>
		<category><![CDATA[Read More]]></category>

		<guid isPermaLink="false">http://inline.thomasgriffinmedia.com/?p=126</guid>
		<description><![CDATA[This simple tutorial will show you how to change the default &#8216;Continue Reading →&#8217; text for post excerpts. Copy and paste the following code into your child theme&#8217;s functions.php file: add_filter( 'inline_get_avatar', 'tgm_custom_avatar_size' ); function tgm_custom_avatar_size( $avatar ) { global $comment; $avatar = get_avatar( $comment, $size = '64' ); return $avatar; } Edit &#8220;Read More&#8230;&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>This simple tutorial will show you how to change the default &#8216;Continue Reading →&#8217; text for post excerpts. Copy and paste the following code into your child theme&#8217;s <code>functions.php</code> file:</p>
<pre class="brush:php">add_filter( 'inline_get_avatar', 'tgm_custom_avatar_size' );
function tgm_custom_avatar_size( $avatar ) {
	global $comment;
	$avatar = get_avatar( $comment, $size = '64' );
	return $avatar;
}</pre>
<p>Edit &#8220;Read More&#8230;&#8221; to whatever you would like it to say!</p>
]]></content:encoded>
			<wfw:commentRss>http://inline.thomasgriffinmedia.com/126/how-to-change-the-read-more-link-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The inLine Minimal WordPress Theme</title>
		<link>http://inline.thomasgriffinmedia.com/28/the-inline-minimal-wordpress-theme/</link>
		<comments>http://inline.thomasgriffinmedia.com/28/the-inline-minimal-wordpress-theme/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 19:13:58 +0000</pubDate>
		<dc:creator>Thomas Griffin</dc:creator>
				<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://inline.thomasgriffinmedia.com/?p=28</guid>
		<description><![CDATA[inLine is a gorgeous free minimal WordPress theme. I am a minimalist nut. I keep my places organized, accounts in order, bills in check and keep everything clean. It&#8217;s just in my nature. I also like minimal design, and the inLine theme is a product of that minimal nature within me. There is nothing fancy [...]]]></description>
			<content:encoded><![CDATA[<p><strong>inLine is a gorgeous free minimal WordPress theme.</strong></p>
<p>I am a minimalist nut. I keep my places organized, accounts in order, bills in check and keep everything clean. It&#8217;s just in my nature.</p>
<p>I also like minimal design, and the inLine theme is a product of that minimal nature within me. There is nothing fancy about inLine other than its simple and beautiful layout. Every part of this theme has been crafted delicately to ensure that the idea of &#8220;minimal&#8221; is riddled all the way through, from design to code.</p>
<p>I have put much thought, time, effort and ability into this minimal WordPress theme, so I encourage you to study it and use it. Is it perfect? By all means no, but I will continue to work towards that goal with the help of you, the WordPress community.</p>
<p>So go ahead, <a href="http://wordpress.org/extend/themes/inline"><strong>grab a copy of inLine from the WordPress theme repository today</strong></a>, and enjoy the beauty, functionality and minimalism of inLine!</p>
]]></content:encoded>
			<wfw:commentRss>http://inline.thomasgriffinmedia.com/28/the-inline-minimal-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc (Feed is rejected)
Page Caching using disk: enhanced
Database Caching using apc
Object Caching 431/520 objects using apc

Served from: inline.thomasgriffinmedia.com @ 2012-05-18 07:50:15 -->
