<?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>Thesis Hacker &#187; byline</title>
	<atom:link href="http://www.thesishacker.com/category/byline/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thesishacker.com</link>
	<description>Customize Thesis</description>
	<lastBuildDate>Thu, 21 May 2009 16:22:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add a date stamp with an icon on your post</title>
		<link>http://www.thesishacker.com/add-a-date-stamp-with-an-icon-on-your-post</link>
		<comments>http://www.thesishacker.com/add-a-date-stamp-with-an-icon-on-your-post#comments</comments>
		<pubDate>Wed, 20 May 2009 16:00:24 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[byline]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[add date stamp]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[date icon]]></category>
		<category><![CDATA[date stamp]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1882</guid>
		<description><![CDATA[Check out the little icon with the date of the post in the top right corner. Here&#8217;s how I made it&#8230;
The first thing to do is gather the php code that will generate the time of the post&#8230;
 the_time(&#8217;M') gets the month of the date
 the_time(&#8217;j') gets the day of the date
 the_time(&#8217;Y') gets the [...]]]></description>
			<content:encoded><![CDATA[<p>Check out the little icon with the date of the post in the top right corner. Here&#8217;s how I made it&#8230;</p>
<p>The first thing to do is gather the php code that will generate the time of the post&#8230;</p>
<p> the_time(&#8217;M') <em>gets the month of the date</em><br />
 the_time(&#8217;j') <em>gets the day of the date</em><br />
 the_time(&#8217;Y') <em>gets the year of the date</em></p>
<p>For more info on the date code <a href="http://codex.wordpress.org/Formatting_Date_and_Time">check out this</a></p>
<p>Next, I made the little icon in photoshop. You can make your own or find free icons by doing a search. I uploaded the image to my custom/images file</p>
<p>Next, I created a function, added the image, wrapped it in div tags, and gave it a class name&#8230;</p>
<p class="alert">
function calendar (){ ?&gt;<br />
	&lt;div class=&quot;calendaricon&quot;&gt;<br />
        &lt;? echo &#8216;&lt;img src=&quot;http://www.thesishacker.com/wp-content/themes/thesis/custom/images         /calendar.png&quot; /&gt;&#8217;; ?&gt;<br />
	&lt;/div&gt;<br />
&lt;?<br />
}</p>
<p>Next, I added the date code, and gave each one a class name so I could style each one separately in my css</p>
<p class="alert">function calendar (){ ?&gt;<br />
	&lt;div class=&quot;calendaricon&quot;&gt;<br />
		&lt;? echo &#8216;&lt;img src=&quot;http://www.thesishacker.com/wp-content/themes/thesis/custom/images/calendar.png&quot; /&gt;&#8217;; ?&gt;<br />
		&lt;div class=&quot;month&quot;&gt;&lt;? the_time(&#8217;M') ?&gt;&lt;/div&gt;<br />
		&lt;div class=&quot;day&quot;&gt;&lt;? the_time(&#8217;j') ?&gt;&lt;/div&gt;<br />
		&lt;div class=&quot;year&quot;&gt;&lt;? the_time(&#8217;Y') ?&gt;&lt;/div&gt;<br />
&lt;/div&gt;</p>
<p>Finally, I added the whole thing with a hook&#8230;</p>
<p class="alert">function calendar (){ ?&gt;<br />
	&lt;div class=&quot;calendaricon&quot;&gt;<br />
		&lt;? echo &#8216;&lt;img src=&quot;http://www.thesishacker.com/wp-content/themes/thesis/custom/images/calendar.png&quot; /&gt;&#8217;; ?&gt;<br />
		&lt;div class=&quot;month&quot;&gt;&lt;? the_time(&#8217;M') ?&gt;&lt;/div&gt;<br />
		&lt;div class=&quot;day&quot;&gt;&lt;? the_time(&#8217;j') ?&gt;&lt;/div&gt;<br />
		&lt;div class=&quot;year&quot;&gt;&lt;? the_time(&#8217;Y') ?&gt;&lt;/div&gt;<br />
	&lt;/div&gt;<br />
&lt;?<br />
}<br />
add_action(&#8217;thesis_hook_before_headline&#8217;, &#8216;calendar&#8217;);</p>
<p>Now in my custom.css I can style each part of the date stamp including the day, month, year, and the image&#8230;</p>
<p class="alert">
.custom .calendaricon {float: right;<br />
                                             margin-top: -1em;}<br />
.custom .month {text-transform: uppercase;<br />
                           font-family: arial;<br />
                           margin-top: -5.5em;<br />
                           margin-left: 2.2em;}<br />
.custom .day {font-family: arial;<br />
                       margin-left: 2.99em;<br />
                       padding-top: .3em;<br />
                       padding-bottom: 2.2em;}<br />
.custom .year {font-family: arial;<br />
                        margin-left: 2.1999em;<br />
                        margin-top: -2.2em;}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/add-a-date-stamp-with-an-icon-on-your-post/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Change the font of the byline</title>
		<link>http://www.thesishacker.com/change-byline-font</link>
		<comments>http://www.thesishacker.com/change-byline-font#comments</comments>
		<pubDate>Fri, 30 Jan 2009 20:32:09 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[byline]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[change font]]></category>
		<category><![CDATA[meta data]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=904</guid>
		<description><![CDATA[To change the font of your byline go to&#8230;
Dashboard &#8212;-&#62; Appearance &#8212;-&#62; Thesis Options&#8230;.

Pick your choices from the drop down menus. Hit the save button.
]]></description>
			<content:encoded><![CDATA[<p>To change the font of your byline go to&#8230;</p>
<p>Dashboard &#8212;-&gt; Appearance &#8212;-&gt; Thesis Options&#8230;.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-905" style="border: 1px solid black;" title="67" src="http://www.thesishacker.com/wp-content/uploads/2009/01/67.png" alt="67" width="299" height="168" /></p>
<p>Pick your choices from the drop down menus. Hit the save button.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-byline-font/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the headline meta styles</title>
		<link>http://www.thesishacker.com/change-the-headline-meta-styles</link>
		<comments>http://www.thesishacker.com/change-the-headline-meta-styles#comments</comments>
		<pubDate>Mon, 26 Jan 2009 23:32:36 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[byline]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[headline and title]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[change headline meta]]></category>
		<category><![CDATA[custom.css]]></category>
		<category><![CDATA[headline]]></category>
		<category><![CDATA[headline meta]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=848</guid>
		<description><![CDATA[Change the headline meta styles]]></description>
			<content:encoded><![CDATA[<p>There are four headline meta styles that come with thesis. You can add more or remove some if you want to.</p>
<p>In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your descripton between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*headline meta styles*/</span><br />
.custom .headline_meta {color: #888888  ;}<br />
.custom .headline_meta {font-style: italic  ;}<br />
.custom .headline_meta {line-height: 1.8em  ;}<br />
.custom .headline_meta {font-size: 1em   ;}</p>
<p>Change these or add more styles to get your desired effect</p>
<p>To learn more about these styles <a href="http://www.w3schools.com/default.asp">check out W3schools</a></p>
<p><a href="http://www.febooti.com/products/iezoom/online-help/online-color-chart-picker.html"><img class="aligncenter size-full wp-image-849" title="colorchart4" src="http://www.thesishacker.com/wp-content/uploads/2009/01/colorchart4.jpg" alt="colorchart4" width="133" height="121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-the-headline-meta-styles/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove byline or headline meta data</title>
		<link>http://www.thesishacker.com/remove-headline-meta</link>
		<comments>http://www.thesishacker.com/remove-headline-meta#comments</comments>
		<pubDate>Thu, 22 Jan 2009 22:12:19 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[byline]]></category>
		<category><![CDATA[headline and title]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[headline]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[remove headline meta]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=673</guid>
		<description><![CDATA[Remove byline or headline meta data]]></description>
			<content:encoded><![CDATA[<p>If you want to remove the headline meta shown below&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-676 aligncenter" style="border: 1px solid black;" title="48" src="http://www.thesishacker.com/wp-content/uploads/2009/01/48.png" alt="48" width="247" height="27" /></p>
<p>Go to your dashboard &#8212;&gt; appearance &#8212;&gt; thesis options and find the section below&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-677 aligncenter" style="border: 1px solid black;" title="49" src="http://www.thesishacker.com/wp-content/uploads/2009/01/49.png" alt="49" width="294" height="300" /></p>
<p>Check or uncheck which ones give you the desired effect. Hit the save button.</p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/remove-headline-meta/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add an avatar or picture next to your title and byline</title>
		<link>http://www.thesishacker.com/add-an-avatar-or-picture-next-to-your-title-and-byline</link>
		<comments>http://www.thesishacker.com/add-an-avatar-or-picture-next-to-your-title-and-byline#comments</comments>
		<pubDate>Thu, 08 Jan 2009 08:10:31 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[avatars]]></category>
		<category><![CDATA[byline]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[avatar]]></category>
		<category><![CDATA[avatar next to title byline]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=208</guid>
		<description><![CDATA[You can put any image you want next to your posts.  Here's how...]]></description>
			<content:encoded><![CDATA[<p>Before each post that I write on this site there&#8217;s a picture of the man, the legend, my fav,  the ass-kickin&#8217; NastyCanasta.  You can put any image you want next to your posts.  Here&#8217;s how&#8230;</p>
<p>In your custom_functions.php file add this code. You can put it anywhere you want but I recommend putting it at the top after the &lt;?php tag. Always describe the function and put it between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*avatar next to title and byline*/</span><br />
function <span style="color: #ff0000;">FunctionName</span>() {<br />
echo &#8216;&lt;img src=&#8221;the directory where your image is located/nastycanasta.jpg&#8221; <span style="color: #ff0000;">class=&#8221;pick a name</span>&#8221; /&gt;&#8217;;<br />
}<br />
add_action(&#8217;<span style="color: #ff0000;">thesis_hook_before_headline</span>&#8216;, &#8216;<span style="color: #ff0000;">FunctionName</span>&#8216;);</p>
<p>Note some key points here:</p>
<p>Name your function</p>
<p>Assign it a class name whatever you want</p>
<p>Place your function with a hook, this case before the headline, and hang on the hook what function you want there</p>
<p>Now you want to style the image so in your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Always describe what you&#8217;re doing by putting your descripton between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*avatar styles*/</span><br />
.<span style="color: #0000ff;">custom</span> .&#8221;<span style="color: #ff0000;">the class name you gave it</span>&#8221; { float: left; }</p>
<p>Some points here:</p>
<p>You want to float the image to the left so its moved over as far as possible and the title and byline wrap around it</p>
<p>If you want to move the image down a little or give more space between the image and the title and byline you can add a margin-top Xem, margin-right Xem,  where X=numerical value of whatever you want.</p>
<p>You can add margins, borders, colors, anything else you want to style it within those brackets</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/add-an-avatar-or-picture-next-to-your-title-and-byline/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

