<?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>FLYHYPERSONIC &#187; Wordpress</title>
	<atom:link href="http://www.flyhypersonic.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flyhypersonic.com</link>
	<description></description>
	<lastBuildDate>Thu, 11 Aug 2011 16:54:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress Child Theme</title>
		<link>http://www.flyhypersonic.com/wordpress-child-theme/</link>
		<comments>http://www.flyhypersonic.com/wordpress-child-theme/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 23:56:19 +0000</pubDate>
		<dc:creator>RickHap</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Simplistix]]></category>

		<guid isPermaLink="false">http://www.flyhypersonic.com/?p=87</guid>
		<description><![CDATA[I&#8217;ve had this domain for a few years and have mainly used it to make pages to share with friends. The main tool that I used was Homesite or just hand rolled a page (Lightroom has an excellent export function for photo webpages). I&#8217;ve used WordPress for a number of sites that I developed for [...]]]></description>
			<content:encoded><![CDATA[<p>
<img src="http://www.flyhypersonic.com/wp-content/uploads/2009/02/mysimplistixdirectory.png" alt="mysimplistixdirectory" title="mysimplistixdirectory" width="208" height="260" class="alignright size-full wp-image-91" /></p>
<p>I&#8217;ve had this domain for a few years and have mainly used it to make pages to share with friends.  The main tool that I used was Homesite or just hand rolled a page (Lightroom has an excellent export function for photo webpages).  I&#8217;ve used WordPress for a number of sites that I developed for my work but never set WP up on this domain.    </p>
<p>As with any theme, you are going to want to make changes.   The nice thing about WordPress 2.7 is that it can handle child themes.    Using a Child Theme will help you localize and organize the changes that you make to your WordPress site theme.   Sam didn&#8217;t include a child theme to his theme but I&#8217;m sure he will add this feature in his next rev.  Using a Child theme will help when the Parent theme has an update, you would simply update/upgrade the files within the parent theme.     </p>
<p>Let me show you the steps to create the Child Theme.</p>
<p>Read<br />
<span id="more-87"></span></p>
<p>1.<a href="http://www.samburdge.co.uk/wordpress/simplistix-and-76-digital-orange-themes-now-available-wordpressorg<br />
">Simplistix theme</a>. is my Parent Theme for my WordPress site (using version 2.7 at this time).</p>
<p>2. Create a directory within the wordpress themes directory.  I named the directory mysimplistix for my Child Theme files.</p>
<p>wordpress/wp-content/themes/mysimplistix</p>
<p>3. Create and open a file named style.css within your child theme directory.   I posted the full code for this style.css file below.    The header to this file contains information which will let wordpress know that this is a child theme.   The style.css contains a line that imports the characteristics from the parent theme.</p>
<p><code><br />
@import url("../wp-simplistix/style.css");<br />
</code></p>
<p>4. Edit and save the style.css file.  If you look at my style.css you will see the specific changes that I made for my site.    You can modify, delete or add any elements that you want for your site.   </p>
<p>5.  Within your WordPress administrator panel you will now see that the child theme is now present in the available themes.   In the style.css file I name the theme Son of Simplistix so that is the theme that I will tell WordPress to use for the site.     (note that the Child theme does not show a thumbnail of the site, that&#8217;s OK for now, we can work on this extra in the future).</p>
<p>The image is a  shot of my wordpress theme directory:</p>
<p>You can see the style.css file within the mysimplistix theme directory.    </p>
<p>Making additions and changes within the style.css file let&#8217;s me make changes to the &#8220;chrome&#8221; of the parent theme.</p>
<p>Did you notice that I have other files within the mysimpistix directory?   Those files let me make my specific changes to the overall behavior of the theme and specific page layouts.    I will put up another post that talks about these specific changes and tweaks, all easily tracked and located with the child theme function of WordPress.</p>
<p>&nbsp;&nbsp;</br><br />
&nbsp;&nbsp;</br></p>
<p>BONUS:<br />
<a href="http://codex.wordpress.org/The_Loop">THE LOOP</a> is a good page to read about how WordPress works.</p>
<p>style.css that is located in wordpress/wp-content/themes/mysimplistix<br />
<code><br />
/*<br />
Theme Name:	Son of Simplistix Child Theme<br />
Theme URI: 	http://www.samburdge.co.uk<br />
Description: 	Child theme for Simplistix. Make all your custom changes in the <code>themes/mysimplistix</code> folder.<br />
Author:		RickHap<br />
Author URI:	http://www.flyhypersonic.com<br />
Template: wp-simplistix</p>
<p>An extension to the Simplistix Theme created by Sam Burdge  http://www.samburdge.co.uk<br />
*/</p>
<p>/* Import Stylesheets, don't remove these.<br />
-----------------------------------------------------------*/</p>
<p>@import url("../wp-simplistix/style.css");</p>
<p>/* Required WordPress Classes, don't remove these.<br />
-----------------------------------------------------------*/<br />
.aligncenter {<br />
	display: block;<br />
	margin-left: auto;<br />
	margin-right: auto;<br />
  }<br />
.alignleft { float: left; }<br />
.alignright { float: right; }</p>
<p>/* Make all custom CSS changes BELOW this line<br />
-----------------------------------------------------------*/<br />
/* Example: Background Color<br />
#rap {style.css<br />
background:#FFFFFF none repeat scroll 0 0;<br />
color:#333333;<br />
margin:0 auto;<br />
padding:20px;<br />
text-align:left;<br />
width:88em;<br />
}<br />
*/<br />
#rap {style.css<br />
background:#FFFFFF none repeat scroll 0 0;<br />
color:#FFFFFF;<br />
border:0px solid #FFFFFF;<br />
margin:0 auto;<br />
padding:20px;<br />
text-align:left;<br />
width:88em;<br />
}</p>
<p>body {<br />
	background: #FFFFFF;<br />
}</p>
<p>.textarea, textarea {<br />
	width: 400px;<br />
	margin: 0;<br />
	background: #ffffff;<br />
	color: #333333;<br />
}</p>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyhypersonic.com/wordpress-child-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simplistix Theme and Multiple Columns in a WordPress Page</title>
		<link>http://www.flyhypersonic.com/simplistix-theme-and-multiple-columns-in-a-wordpress-page/</link>
		<comments>http://www.flyhypersonic.com/simplistix-theme-and-multiple-columns-in-a-wordpress-page/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 23:51:16 +0000</pubDate>
		<dc:creator>RickHap</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Simplistix]]></category>

		<guid isPermaLink="false">http://www.flyhypersonic.com/?p=92</guid>
		<description><![CDATA[Sam Burge is a developer in the UK who created a WordPress plug-in which allows one to make posts with multiple columns. wp post columns 2.0. This is a very useful plugin if you want to separate information into multiple columns (you could use html table tags, not recommended, use tables for data). I did [...]]]></description>
			<content:encoded><![CDATA[<p>Sam Burge is a developer in the UK who created a WordPress plug-in which allows one to make posts with multiple columns.  <a href="http://www.samburdge.co.uk/wordpress/wp-post-columns-plugin-2">wp post columns 2.0</a>.    This is a very useful plugin if you want to separate information into multiple columns (you could use html table tags, not recommended, use tables for data).    </p>
<p>I did give Sam a nudge to develop version 2.0.   His first version was just two columns and I wanted three.   I did a modification and sent it to him,  he liked it and generalized to any number of columns.    It was a good exercise for me since I was able learn more details about WordPress.</p>
<p>The plug-in uses simple tags to create columns. Here are some examples:<div style="width:40%; float: left; padding-right: 5%; display: inline;" class="post_column_1"><p>Two Columns in a WordPress Page</div>[column width="40%" padding="5%"]Two Columns in a WordPress Post[/column]<div style="clear: both;"></div> </p>
<div style="width:30%; float: left; padding-right: 5%; display: inline;" class="post_column_1"><p>Three Columns in a WordPress Page</div>[column width="30%" padding="5%"]Three Columns in a WordPress Post[/column]<div style="width:30%; float: left; padding-right: 0; display: inline;" class="post_column_1"><p>Three Columns in a WordPress Page</div>[end_columns]
<div style="width:20%; float: left; padding-right: 5%; display: inline;" class="post_column_1"><p>Multiple Columns in a WordPress Page</div>[column width="20%" padding="5%"]Multiple Columns in a WordPress Post[/column]<div style="width:20%; float: left; padding-right: 5%; display: inline;" class="post_column_1"><p>Multiple Columns in a WordPress Page</div>[column width="20%" padding="0%"]Multiple Columns in a WordPress Post[/column]<div style="clear: both;"></div>
<p>Sam released his Simplistix theme a few days after my endeavor into multiple columns.  Good timing!  I really like the layout of the theme and he has some great features.</p>
<p>Get his theme here:<br />
<a href="http://www.samburdge.co.uk/wordpress/simplistix-and-76-digital-orange-themes-now-available-wordpressorg<br />
">Simplistix theme</a>.   </p>
<p>Note:  There is a bug within WordPress with the Visual Editor.  The editor adds extra &#8220;p&#8221; tags when you save pages or posts with the visual editor.     You might notice that the Visual Editor puts extra lines in your posts.   Welcome to the p tag issue!  Read about it here:<a href="http://wordpress.org/support/topic/178765">Unwanted tags in HTML</a>  <a href="http://wordpress.org/extend/ideas/topic.php?id=437">Idea: Trust me when I edit HTML</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyhypersonic.com/simplistix-theme-and-multiple-columns-in-a-wordpress-page/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

