<?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>Dear Christina &#187; Themes</title>
	<atom:link href="http://christina-nelson.com/category/themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://christina-nelson.com</link>
	<description>Commonsense solutions to Wordpress problems</description>
	<lastBuildDate>Thu, 26 Aug 2010 17:35:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Add external links in WordPress navigation</title>
		<link>http://christina-nelson.com/add-external-links-in-wordpress-navigation/</link>
		<comments>http://christina-nelson.com/add-external-links-in-wordpress-navigation/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 12:43:24 +0000</pubDate>
		<dc:creator>christinavos</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://christina-nelson.com/?p=599</guid>
		<description><![CDATA[Dear Christina,

Is there a way to connect a Wordpress blog to a Wordpress website? I'd like to create a blog tab on the website which when clicked on will open up a WP blog which has a separate domain.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristina-nelson.com%2Fadd-external-links-in-wordpress-navigation%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fchristina-nelson.com_2Fadd-external-links-in-wordpress-navigation_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristina-nelson.com%2Fadd-external-links-in-wordpress-navigation%2F&amp;source=ChristinaVOS&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="color: #000080;"><strong><em>Dear Christina,</em></strong></span></p>
<p><span style="color: #000080;"><strong><em>Is there a way to connect a WordPress blog to a WordPress website?  I&#8217;d like to create a blog tab on the website which when clicked on will open up a WP blog which has a separate domain.</em></strong></span></p>
<p><span style="color: #000080;"><strong><em><span id="more-599"></span><br />
</em></strong></span></p>
<p><span style="color: #000080;"><strong><em>Thank you.</em></strong></span></p>
<p><strong><em> </em></strong><span style="color: #000080;"><em><strong>Janine -<a href="http://www.yourvirtualwizard.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.yourvirtualwizard.com/?referer=');">Your Virtual Wizard</a></strong></em></span></p>
<p><span style="color: #000080;"><span style="color: #000000;">Dear Janine,</span></span></p>
<p><span style="color: #000080;"><span style="color: #000000;">There are actually two ways to add external links to your WordPress sites navigation.</span></span></p>
<p><span style="color: #000080;"><span style="color: #000000;">The easy way is to install the plugin <a href="http://wordpress.org/extend/plugins/page-links-to/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/plugins/page-links-to/?referer=');">PageLinksTo.</a> I have not personally used this plugin but I have seen good reviews on it.</span></span></p>
<p><span style="color: #000080;"><span style="color: #000000;"> Please use with caution and backup everything first.</span></span></p>
<p><span style="color: #000080;"><span style="color: #000000;"><br />
</span></span></p>
<p><span style="color: #000080;"><span style="color: #000000;">My preferred way is manually. It involves jumping into the code of your theme but it&#8217;s painless, I promise.</span></span></p>
<p><span style="color: #000080;"><span style="color: #000000;">First you&#8217;ll need to go into Appearance-&gt;Editor and then click on header.php (this is the usual place for the code but you may have a separate file named nav.php, in that case you&#8217;ll be opening it instead)</span></span></p>
<p><span style="color: #000080;"><span style="color: #000000;">You are looking for something like this: </span></span>&lt;?php wp_list_pages( ); ?&gt;</p>
<p><span style="color: #800000;">Let me point out that some themes choose to list categories in the navigation instead of pages- if that is what your theme does you&#8217;ll be looking for &lt;?php wp_list_categories( ); ?&gt;</span></p>
<p>Now to add your external link you&#8217;ll add the following directly under that code:</p>
<p>&lt;li&gt;&lt;a href=&#8221;http://<em>yourdomain.com</em>&#8220;&gt;<em>External link name</em>&lt;/a&gt;&lt;/li&gt;</p>
<p>If you have more than one external link to add you&#8217;d just add another line like the one above. remember, the links you add will show at the <strong><span style="text-decoration: underline;">end</span></strong> of your navigation bar.</p>
<p>So your final code will look like:</p>
<p>&lt;?php wp_list_pages(&#8216;title_li=&#8217;); ?&gt; <span style="color: #800000;">(or &lt;?php wp_list_categories( ); ?&gt;)</span></p>
<p>&lt;li&gt;&lt;a href=&#8221;http://<em>yourdomain.com</em>&#8220;&gt;<em>External link name 1</em>&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;http://<em>yourdomain.com</em>&#8220;&gt;<em>External link name</em> 2&lt;/a&gt;&lt;/li&gt;</p>
<p>Be sure to save all changes and refresh your WordPress site to see your handiwork.</p>
<p>~Christina</p>
<p><img class="alignleft size-thumbnail wp-image-502" title="create-theme" src="http://christina-nelson.com/wp-content/uploads/2009/08/create-theme-150x150.jpg" alt="create-theme" width="2" height="2" /></p>
]]></content:encoded>
			<wfw:commentRss>http://christina-nelson.com/add-external-links-in-wordpress-navigation/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Removing RSS icon in address bar on WordPress Website</title>
		<link>http://christina-nelson.com/removing-urlrss-icon-in-wordpress/</link>
		<comments>http://christina-nelson.com/removing-urlrss-icon-in-wordpress/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 12:04:56 +0000</pubDate>
		<dc:creator>christinavos</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://christina-nelson.com/?p=593</guid>
		<description><![CDATA[Dear Christina, I&#8217;ve c hange my blog to a website with help from your instructions in one of your previous posts. I&#8217;ve disabled RSS but would like to remove the RSS icon in the address bar. How can I do this? Kirsty Dear Kirsty, I&#8217;m so glad my instructions were helpful in turning your Worpress [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristina-nelson.com%2Fremoving-urlrss-icon-in-wordpress%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fchristina-nelson.com_2Fremoving-urlrss-icon-in-wordpress_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristina-nelson.com%2Fremoving-urlrss-icon-in-wordpress%2F&amp;source=ChristinaVOS&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://christina-nelson.com/wp-blog-to-website/" target="_blank"><span style="color: #800000;"><span style="color: #000000;"> </span></span></a><span style="color: #000080;"><strong><em>Dear Christina,</em></strong></span></p>
<p><a href="http://christina-nelson.com/wp-blog-to-website/" target="_blank"><span style="color: #800000;"><span style="color: #000000;"> </span></span></a><span style="color: #000080;"><strong><em>I&#8217;ve c</em></strong></span><a href="http://christina-nelson.com/wp-blog-to-website/" target="_blank"><span style="color: #800000;"> </span></a><span style="color: #000080;"><strong><em>hange my blog to a website with help from your instructions in one of your previous posts.  I&#8217;ve disabled RSS but would like to remove the RSS icon in the address bar.  How can I do this?</em></strong></span></p>
<p><span style="color: #000080;"><strong><em><span id="more-593"></span><br />
</em></strong></span></p>
<p><a href="http://christina-nelson.com/wp-blog-to-website/" target="_blank"></a><span style="color: #000080;"><strong><em>Kirsty</em></strong></span><a href="http://christina-nelson.com/wp-blog-to-website/" target="_blank"></a></p>
<p><span style="color: #000080;"><span style="color: #000000;">Dear Kirsty,</span></span></p>
<p><span style="color: #000080;"><span style="color: #000000;">I&#8217;m so glad<a href="http://christina-nelson.com/wp-blog-to-website/" target="_blank"> my i</a></span></span><a href="http://christina-nelson.com/wp-blog-to-website/" target="_blank"></a><span style="color: #000080;"><span style="color: #000000;"><a href="http://christina-nelson.com/wp-blog-to-website/" target="_blank">nstructions</a> were helpful in turning your Worpress blog into a website. </span></span></p>
<p><span style="color: #000080;"><span style="color: #000000;">Removing the RSS icon from the address bar is quite simple, really.</span></span><br />
You&#8217;ll need to go into your header.php file and remove all of the following (you may not have all listed):</p>
<p><span style="color: #800000;">&lt;link rel=&#8221;alternate&#8221; type=&#8221;application/rss+xml&#8221; title=&#8221;RSS 2.0&#8243; href=&#8221;&lt;?php bloginfo(&#8216;rss2_url&#8217;); ?&gt;&#8221;/&gt;<br />
&lt;link rel=&#8221;alternate&#8221; type=&#8221;text/xml&#8221; title=&#8221;RSS .92&#8243; href=&#8221;&lt;?php bloginfo(&#8216;rss_url&#8217;); ?&gt;&#8221;/&gt;<br />
&lt;link rel=&#8221;alternate&#8221; type=&#8221;application/atom+xml&#8221; title=&#8221;Atom 0.3&#8243; href=&#8221;&lt;?php bloginfo(&#8216;atom_url&#8217;); ?&gt;&#8221;/&gt;</span></p>
<p><span style="color: #800000;"><span style="color: #000000;">Be sure to &#8220;save changes&#8221; and that&#8217;s it. RSS icon is gone!</span></span></p>
<p><span style="color: #800000;"><span style="color: #000000;">~Christina</span></span></p>
<p><span style="color: #800000;"><span style="color: #000000;"><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://christina-nelson.com/removing-urlrss-icon-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Blog to Business Website</title>
		<link>http://christina-nelson.com/wp-blog-to-website/</link>
		<comments>http://christina-nelson.com/wp-blog-to-website/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 17:06:40 +0000</pubDate>
		<dc:creator>christinavos</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://christina-nelson.com/?p=564</guid>
		<description><![CDATA[Dear Christina,
I have a wordpress theme that is normally used for a blog but I am changing it to become a website.
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristina-nelson.com%2Fwp-blog-to-website%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fchristina-nelson.com_2Fwp-blog-to-website_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristina-nelson.com%2Fwp-blog-to-website%2F&amp;source=ChristinaVOS&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><strong><span style="color: #000080;"><em>Dear Christina,<br />
I have a wordpress theme that is normally used for a blog but I am changing it to become a website.</em></span></strong></p>
<p><span style="color: #000080;"><strong><em>Do you have any resources you can suggest which will help me to make as many changes so that the theme looks more like a website and less like a blog. I don&#8217;t write CSS.</em></strong></span></p>
<p><span style="color: #000080;"><strong><em>Do you know what changes I should make in my WP dashboard which will aid in creating a website rather than a blog?</em></strong></span></p>
<p><span style="color: #000080;"><strong><em><span id="more-564"></span><br />
</em></strong></span></p>
<p><span style="color: #000080;"><strong><em>Thank you for your help!</em></strong></span></p>
<p><strong><em> </em></strong><span style="color: #000080;"><em><strong>Janine -<a href="http://www.yourvirtualwizard.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.yourvirtualwizard.com/?referer=');">Your Virtual Wizard</a></strong></em></span></p>
<p><span style="color: #ff0000;"><em>****This is only a general outline of my personal experience with the themes I am familiar with. Read your theme documentation or hire a professional, if none of the following applies to your theme or if you do not understand code.<br />
</em></span></p>
<p><span style="color: #000000;">Dear Janine,</span></p>
<p><span style="color: #000000;">I&#8217;m so glad you asked.  I run into people all the time who don&#8217;t understand how a &#8220;blog&#8221; can look less like a blog and more like a professional website. My daily job is explaining it to them and showing examples.</span></p>
<p><span style="color: #000000;">This site, <a href="http://christina-nelson.com" target="_blank">Dear Christina</a>, is a blog. It&#8217;s a blog template, it has all the features of a blog and it allows commenting.</span></p>
<p><span style="color: #000000;">My <a href="http://vitalofficesolutions" target="_blank" onclick="pageTracker._trackPageview('/outgoing/vitalofficesolutions?referer=');">company site</a> is a Professional website. It&#8217;s a blog template with all of the &#8220;bloggy&#8221; things removed &amp;  no comments allowed.</span></p>
<p><span style="color: #000000;">To change a blog template into a more professional looking Business site you need to start with your Dashboard.</span></p>
<p><span style="color: #000000;">-You won&#8217;t be using &#8220;posts&#8221;, only &#8220;pages&#8221; (be sure to add a new page before you continue)<br />
</span></p>
<p><span style="color: #000000;">Change the following under &#8220;Settings&#8221;:</span></p>
<ol>
<li><span style="color: #000000;">under &#8220;reading&#8221; click dot next to &#8220;static page&#8221; and choose what page you want as your home page. Save blog setting for when you are ready to incorporate a blog.</span></li>
<li><span style="color: #000000;">Under &#8220;permalinks&#8221; click &#8220;custom&#8221; and enter &#8220;</span><span style="color: #800000;">/%pagename%/</span>&#8221; in the box (this shows your URL as <span style="color: #008000;"><em>www.yourdomain.com/contact</em></span> instead of <em><span style="color: #008000;">www.yourdomain.com/pg=4</span></em>)</li>
</ol>
<p><span style="color: #000000;">- Install the following plug-ins to make it easier to maintain your site (links are to explanations, grab plugin by searching in &#8220;add new plugins&#8221;):<br />
</span></p>
<ol>
<li><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/plugins/all-in-one-seo-pack/?referer=');"><strong>All in One SEO Pack</strong></a></li>
<li><a href="http://ideasilo.wordpress.com/2007/04/30/contact-form-7/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/ideasilo.wordpress.com/2007/04/30/contact-form-7/?referer=');"><strong>Contact Form 7</strong></a></li>
<li><a href="http://xavisys.com/2007/02/wordpress-google-analytics-plugin/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/xavisys.com/2007/02/wordpress-google-analytics-plugin/?referer=');"><strong>WP Google Analytics</strong></a></li>
<li><a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/?referer=');"><strong>Google XML Sitemaps</strong></a></li>
</ol>
<p>I also like to have these:</p>
<ol>
<li><a href="http://wordpress.org/extend/plugins/exclude-pages/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/plugins/exclude-pages/?referer=');"><strong>Exclude Pages from Navigation</strong></a></li>
<li><a href="http://joelstarnes.co.uk/blog/pagemash/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/joelstarnes.co.uk/blog/pagemash/?referer=');"><strong>pageMash</strong></a></li>
<li><a href="http://www.samburdge.co.uk/plugins/wp-post-columns-plugin-2" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.samburdge.co.uk/plugins/wp-post-columns-plugin-2?referer=');"><strong>WP Post Columns</strong></a></li>
</ol>
<p>Now, once those are all installed, it&#8217;s time to dive into your code files.</p>
<p>Don&#8217;t be scared, repeat after me:</p>
<p><span style="text-decoration: underline;">&#8220;We always take precautions before touching code!&#8221;</span></p>
<p>and again</p>
<p><strong>&#8220;WE ALWAYS TAKE PRECAUTIONS BEFORE TOUCHING CODE!&#8221;</strong></p>
<p>Thank you, now save your original template/theme files somewhere on your computer so you have them to refer back to, or if there is need to reinstall clean.</p>
<p>First, we want to remove the meta data on each page/post. That&#8217;s the little area where author, date, comments, etc is shown under heading or at the bottom of the content. Only blogs need that info.</p>
<p>Each theme is different as to where you will find the exact code but check each php file to find all instances of these:<br />
<img class="size-full wp-image-566 alignnone" title="wp-meta" src="http://christina-nelson.com/wp-content/uploads/2009/09/wp-meta1.jpg" alt="wp-meta" width="250" height="300" /></p>
<p><span style="color: #000000;">Once you find them you can (<strong><span style="color: #800000;">if you are brave</span></strong>) delete them.</span></p>
<p><span style="color: #000000;">I recommend the other method of &#8220;commenting out&#8221; the offending code.</span></p>
<p><span style="color: #000000;">To do that, you would add an asterisk (*) and backslash (/) at the beginning and end of the piece of code like this:</span></p>
<p><span style="color: #000000;">*/ &lt;?php the_category() ?&gt; */</span></p>
<p><span style="color: #000000;">simple.</span></p>
<p><span style="color: #000000;">That way if you ever want any of it to show, you can just remove the */ and the code is active again.</span></p>
<p><span style="color: #000000;">If you don&#8217;t want the page name to show above your content (as it does with blog posts) you&#8217;ll be removing this code from your php files as well: </span>*/   <span style="color: #800000;">&lt;?php the_title(); ?&gt;</span> */</p>
<p>If you are uncomfortable messing with your code please ask someone who knows what they are doing to help you. Without looking at each individual theme and it&#8217;s coding it&#8217;s hard to say 100% that all of my suggestions will work.</p>
<p>~Christina</p>
<p><img class="alignleft size-thumbnail wp-image-504" title="redesign-wireframe" src="http://christina-nelson.com/wp-content/uploads/2009/08/redesign-wireframe-150x150.gif" alt="redesign-wireframe" width="6" height="6" /></p>
]]></content:encoded>
			<wfw:commentRss>http://christina-nelson.com/wp-blog-to-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Work on new WordPress theme while old theme still active? Pt.2</title>
		<link>http://christina-nelson.com/old-theme-new-theme-pt2/</link>
		<comments>http://christina-nelson.com/old-theme-new-theme-pt2/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 13:15:05 +0000</pubDate>
		<dc:creator>christinavos</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://christina-nelson.com/?p=558</guid>
		<description><![CDATA[Dear Christina,

I would like to create a new site using a new theme, however I don’t want to take my current site down.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristina-nelson.com%2Fold-theme-new-theme-pt2%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fchristina-nelson.com_2Fold-theme-new-theme-pt2_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristina-nelson.com%2Fold-theme-new-theme-pt2%2F&amp;source=ChristinaVOS&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I received a question recently and felt it was better to reply in two parts.</p>
<p>You can read the question and Part 1 <a href="http://christina-nelson.com/old-theme-new-theme-pt1/">here</a>.</p>
<p><span id="more-558"></span></p>
<p><span style="color: #000000;">To work on a new theme, while keeping your current site active, you can install WordPress locally, which means you install it on your computer to work on. The downside is, you can’t share it with others except as a screenshot.</span></p>
<p><span style="color: #000000;">First step in installing WP locally is to download the <a href="http://www.wampserver.com/en/index.php" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.wampserver.com/en/index.php?referer=');">Wamp Server</a> </span><em> </em><span style="color: #000000;"> app which does most of the work for you.</span></p>
<p><span style="color: #000000;">Once downloaded you want to install it, preferably into a second hard drive, external hard drive or on a drive with lots of room. <span style="color: #ff0000;">**Do not install into your Programs folder**</span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">Leave all default settings during the installation process.</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">Once installed you will see something that looks like a speedometer in your lower-right taskbar. Should be red &amp; white.<br />
</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">Click once on it (left-click) and choose &#8220;start all services&#8221;.</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">Next you&#8217;ll need to download <a href="http://wordpress.org/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/wordpress.org/?referer=');">WordPress</a> and manually install into the &#8220;www&#8221; folder of your wamp installation.</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">Just follow WP&#8217;s thorough <a href="http://codex.wordpress.org/Installing_WordPress" target="_blank" onclick="pageTracker._trackPageview('/outgoing/codex.wordpress.org/Installing_WordPress?referer=');">instructions</a> and you&#8217;ll be fine.</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">Now go find some themes you want to try out and upload them to your <em>wp-content/themes</em> folder.</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">Easy as that!</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">More questions? Submit yours to be answered in a new post <strong><span style="color: #000080;">&#8212;&#8212;-&gt;&gt;&gt;&gt;&gt;</span></strong></span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;"><span style="color: #000000;">~Christina</span><strong><span style="color: #000080;"><br />
</span></strong></span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;"><img class="alignleft size-thumbnail wp-image-502" title="create-theme" src="http://christina-nelson.com/wp-content/uploads/2009/08/create-theme-150x150.jpg" alt="create-theme" width="4" height="4" /><br />
</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;"><br />
</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #ff0000;"><br />
</span></span></p>
<p><span style="color: #000000;"><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://christina-nelson.com/old-theme-new-theme-pt2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work on new WordPress theme while old theme still active? Pt.1</title>
		<link>http://christina-nelson.com/old-theme-new-theme-pt1/</link>
		<comments>http://christina-nelson.com/old-theme-new-theme-pt1/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 17:09:11 +0000</pubDate>
		<dc:creator>christinavos</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://christina-nelson.com/?p=550</guid>
		<description><![CDATA[Dear Christina,

I would like to create a new site using a new theme, however I don't want to take my current site down.

]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristina-nelson.com%2Fold-theme-new-theme-pt1%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fchristina-nelson.com_2Fold-theme-new-theme-pt1_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristina-nelson.com%2Fold-theme-new-theme-pt1%2F&amp;source=ChristinaVOS&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="color: #000080;"><strong><em>Dear Christina,</em></strong></span></p>
<p><span style="color: #000080;"><strong><em>I would like to create a new site using a new theme, however I don&#8217;t want to take my current site down.</em></strong></span></p>
<p><span style="color: #000080;"><strong><em>How can I work on my new site, while the old one is still active?<br />
Is there a way that I can let others look at my new site to offer their opinion, again while the old site is still active?</em></strong></span></p>
<p><span style="color: #000080;"><strong><em><span id="more-550"></span><br />
</em></strong></span></p>
<p><span style="color: #000080;"><strong><em>Heather</em></strong></span></p>
<p><span style="color: #000000;">Dear Heather,</span></p>
<p><span style="color: #000000;">There are a few ways to test out &amp; customize a new template without taking your current site down.</span></p>
<p><span style="color: #000000;">I have two preferences: </span></p>
<p><span style="color: #000000;"><span style="color: #800000;"><strong>1-</strong></span> Install WordPress locally, which means you install it on your computer to work on. The downside is, you can&#8217;t share it with others except as a screenshot.</span></p>
<p><span style="color: #000000;"><strong><span style="color: #800000;">2-</span></strong> Add a second installation of WordPress to your current site. For example: your site is <span style="color: #800000;"><em>yourdomain.com</em></span> so you&#8217;d add a new directory in your root directory (either public_html or www or root) labeled &#8220;test&#8221;. This would be accessible online as <span style="color: #800000;"><em>yourdomain.com/test.</em></span></span></p>
<p><span style="color: #000000;">I&#8217;ll address option 2 in this post because you mentioned you want to be able to show others. I&#8217;ll be doing a follow-up post in the next couple days to explain option 1.</span></p>
<p><span style="color: #000000;">So go add the new directory to your root folder and name it &#8220;test&#8221; or whatever you prefer. Something obscure is better so it won&#8217;t &#8220;accidentally&#8221; be found. </span></p>
<p><span style="color: #000000;">Next you need to install WordPress into that directory, same way you installed it the first time. Be sure you check/uncheck the option during installation that asks if you want this blog to be found by search engines. You DO NOT want it to be indexed. This will keep it private.</span></p>
<p><span style="color: #000000;">Now you&#8217;ll need to upload any templates you want to play around with by FTP into the themes folder on that installation. </span></p>
<p><span style="color: #000000;">Ta-Da! </span></p>
<p><span style="color: #000000;">You can switch themes, change colors/images, etc. and no one will see anything until you provide the URL. Visitors you allow access to can click &amp; navigate to test all areas of the site.<br />
</span></p>
<p><span style="color: #000000;">When you are happy with your new theme, download the <span style="text-decoration: underline;">folder</span> for that theme to your computer by FTP (save a copy on your computer for backup) and then upload into your themes folder on the root directory.</span></p>
<p><span style="color: #000000;">Your new site is now live and updated. Congratulations!</span></p>
<p><span style="color: #000000;">Keep checking back for Option 1 instructions.</span></p>
<p><span style="color: #000000;">~Christina<br />
</span></p>
<p><span style="color: #000000;"><img class="alignleft size-thumbnail wp-image-506" title="wordpress" src="http://christina-nelson.com/wp-content/uploads/2009/08/wordpress-150x150.jpg" alt="wordpress" width="10" height="10" /><br />
</span></p>
<p><span style="color: #000000;"><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://christina-nelson.com/old-theme-new-theme-pt1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Where do I get GOOD WordPress themes?</title>
		<link>http://christina-nelson.com/where-do-i-get-good-themes/</link>
		<comments>http://christina-nelson.com/where-do-i-get-good-themes/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 13:34:32 +0000</pubDate>
		<dc:creator>christinavos</dc:creator>
				<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://christina-nelson.com/?p=533</guid>
		<description><![CDATA[Dear Christina,

Where do you find all the themes you use?]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristina-nelson.com%2Fwhere-do-i-get-good-themes%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fchristina-nelson.com_2Fwhere-do-i-get-good-themes_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristina-nelson.com%2Fwhere-do-i-get-good-themes%2F&amp;source=ChristinaVOS&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="color: #000080;"><em><strong>Dear Christina,</strong></em></span></p>
<p><span style="color: #000080;"><em><strong>Where do you find all the themes you use?</strong></em></span></p>
<p><span style="color: #000080;"><em><strong>Signed,</strong></em></span></p>
<p><span style="color: #000080;"><em><strong>&#8220;Ted&#8221;</strong></em></span></p>
<p>Dear &#8220;Ted&#8221;,</p>
<p>WordPress themes are everywhere, all you have to do is Google &#8220;wordpress themes&#8221; and you&#8217;ll see what I mean.</p>
<p>There are an abundance of free and paid themes for you to use if you want to try your hand at picking, installing &amp; customizing one but, always be sure the theme you choose is <span id="don_program_text"><a href="http://validator.w3.org/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/validator.w3.org/?referer=');">W3C compliant</a>. That means it has passed testing by the <a href="http://www.w3.org/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.w3.org/?referer=');">Worldwide Web Consortium</a> and has clean code.</span></p>
<p><span>Free themes can be found:</span></p>
<p><a href="http://www.wicked-wordpress-themes.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.wicked-wordpress-themes.com/?referer=');">Wicked WordPress Themes</a></p>
<p><a href="http://www.wpthemedesigner.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.wpthemedesigner.com/?referer=');">WordPress Theme Designer</a></p>
<p><a href="http://wordpress.org/extend/themes/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/themes/?referer=');">WordPress&#8217; own Theme List</a></p>
<p><a href="http://www.smashingmagazine.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.smashingmagazine.com?referer=');">Smashing Magazine</a></p>
<p><a href="http://designdisease.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/designdisease.com/?referer=');">Design Disease</a></p>
<p><span>Paid themes can be found:</span></p>
<p><span><a href="http://www.sitemile.com/index.php?ref=christinavos" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.sitemile.com/index.php?ref=christinavos&amp;referer=');">SiteMile</a></span></p>
<p><span><a href="http://themeforest.net?ref=ChristinaVOS" target="_blank" onclick="pageTracker._trackPageview('/outgoing/themeforest.net?ref=ChristinaVOS&amp;referer=');">ThemeForest</a> &#8211; they have a &#8220;free file of the month&#8221; which may or may not be a theme</span></p>
<p><span><a href="http://www.woothemes.com/amember/go.php?r=14761&amp;i=l0" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.woothemes.com/amember/go.php?r=14761_amp_i=l0&amp;referer=');">WooThemes</a></span></p>
<p><span><a href="http://www.solostream.com/category/wordpress-blog-themes/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.solostream.com/category/wordpress-blog-themes/?referer=');">SoloStream</a></span></p>
<p><span>Good Luck finding the theme that &#8220;speaks&#8221; to you.</span></p>
<p><span>If you&#8217;d rather have someone else do the customizing, I&#8217;m always ready to help. <a href="http://vitalofficesolutions/contact-us" target="_blank" onclick="pageTracker._trackPageview('/outgoing/vitalofficesolutions/contact-us?referer=');">Contact me</a></span></p>
<p><span>~Christina</span></p>
<p><span><img class="alignleft size-thumbnail wp-image-504" title="redesign-wireframe" src="http://christina-nelson.com/wp-content/uploads/2009/08/redesign-wireframe-150x150.gif" alt="redesign-wireframe" width="5" height="5" /><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://christina-nelson.com/where-do-i-get-good-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modify WordPress Header image?</title>
		<link>http://christina-nelson.com/modify-header-image/</link>
		<comments>http://christina-nelson.com/modify-header-image/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 00:12:34 +0000</pubDate>
		<dc:creator>christinavos</dc:creator>
				<category><![CDATA[Images]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://christina-nelson.com/?p=491</guid>
		<description><![CDATA[Changing the header image is easier than you think]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristina-nelson.com%2Fmodify-header-image%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fchristina-nelson.com_2Fmodify-header-image_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristina-nelson.com%2Fmodify-header-image%2F&amp;source=ChristinaVOS&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>HELPFUL HINT!! -<em>When getting a new a template/theme through WordPress, try to remember to download the actual files to your computer as well as using the auto install on WP. Saves headaches in the long run.</em></p>
<p>If you&#8217;d like to change the header image in a template you&#8217;ll need to first go into the template files (on your computer) and find the &#8220;images&#8221; folder. Usually the header is labeled &#8220;header&#8221; but don&#8217;t rely on that fact.</p>
<p>Find the image that looks the same as the header and open in Photoshop, or whatever image program you may have. (see below)</p>
<p>This is your template- always a good idea to save the original, just in case. I prefer adding &#8220;-orig&#8221; to the original file name.</p>
<p>Now grab a picture you&#8217;d like to use and size it to fit into the current header image, or pick and choose whatever color you&#8217;d like. Add text, fancy stamps, random shapes, whatever you want.</p>
<p>When you&#8217;re happy with it, you&#8217;ll need to use Filezilla or another FTP program to upload back into your wp files online.</p>
<p><strong><span style="color: #257da6;">~Christina</span></strong></p>
<p><em><strong><span style="color: #800000;">Photoshop alternatives:</span></strong></em></p>
<p><em><strong><span style="color: #800000;"><a href="http://www.gimp.org/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.gimp.org/?referer=');">Gimp</a>- </span></strong></em>a freely distributed piece of software for such tasks as photo retouching, image composition and image authoring.  It works on many operating systems, in many languages.</p>
<p><strong><em><a href="http://www.gimpshop.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.gimpshop.com/?referer=');">Gimp Shop</a></em></strong>- If you hate the interface of GIMP, you might want to try GIMPshop</p>
<p><em><strong><a href="http://www.koffice.org/krita/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.koffice.org/krita/?referer=');">Krita</a>-</strong></em> graphics application for everyone who wants to get creative with images.</p>
<p><a href="http://www.getpaint.net/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.getpaint.net/?referer=');"><em><strong>Paint.net </strong></em></a>- free image and photo editing software for computers that run Windows</p>
<p><img class="alignleft size-full wp-image-503" title="images" src="http://christina-nelson.com/wp-content/uploads/2009/08/rainbowbrush.gif" alt="images" width="18" height="26" /></p>
]]></content:encoded>
			<wfw:commentRss>http://christina-nelson.com/modify-header-image/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
