<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Build A Better Niche Store</title>
	
	<link>http://www.buildabetternichestore.com</link>
	<description />
	<pubDate>Sat, 17 Jan 2009 20:24:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BuildABetterNicheStore" /><feedburner:info uri="buildabetternichestore" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Creating Simple HTML Drop Down Menus</title>
		<link>http://feedproxy.google.com/~r/BuildABetterNicheStore/~3/e8CFPuOmKAo/</link>
		<comments>http://www.buildabetternichestore.com/creating-simple-html-drop-down-menus/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 04:16:13 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
		
		<guid isPermaLink="false">http://www.buildabetternichestore.com/?p=242</guid>
		<description><![CDATA[Using HTML drop down menus is a great way to break your site&#8217;s content down and help visitors to your site navigate around a little easier.  I have used these on a few of my sites and usually included them at the end of my header.php file.  On the site they show up right below [...]]]></description>
			<content:encoded><![CDATA[<p>Using HTML drop down menus is a great way to break your site&#8217;s content down and help visitors to your site navigate around a little easier.  I have used these on a few of my sites and usually included them at the end of my header.php file.  On the site they show up right below the header and right above the content.</p>
<p>Here is a <strong><a href="http://www.nichestoretemplates.info/dropdownmenu.html" target="_blank">demo link</a></strong> with examples of a couple different menu options.  You are free to copy the code from the demos or I will be explaining more about the code below.</p>
<p>First, I will explain how to add a single drop down menu to your site.  Here is an example of what the code will look like.</p>
<blockquote>
<pre id="line1"><strong>&lt;<span class="start-tag">form</span><span class="attribute-name"> name</span>=<span class="attribute-value">"<span style="color: #ff0000;">Demo</span>"</span>&gt;
&lt;<span class="start-tag">select</span><span class="attribute-name"> style</span>=<span class="attribute-value">"margin-top:10px; margin-right:20px; margin-left:10px;
font-size:12px;color:#000000;font-weight:bold;font-family:verdana;
background-color:#ffffff;"</span><span class="attribute-name">name</span>=<span class="attribute-value">"menu" </span><span class="attribute-name">onChange</span>=<span class="attribute-value">"location=document.
<span style="color: #ff0000;">Demo</span>.menu.options[document.<span style="color: #ff0000;">Demo</span>.menu.selectedIndex].value;"</span>&gt;
</strong></pre>
<pre><strong>&lt;option value=" "&gt;Drop Down Menu Demo&lt;/option&gt;</strong></pre>
<pre><strong>&lt;option value="http://"&gt;Demo Link&lt;/option&gt;</strong></pre>
<pre><strong>&lt;/select&gt;</strong></pre>
<pre><strong>&lt;/form&gt;</strong></pre>
</blockquote>
<p>There are a couple aspects of the code that must be addressed so it will work correctly.  The form can be named anything, however you can&#8217;t use spaces (<strong>BaseballCards </strong>= yes <strong>Baseball Cards </strong>= no).  Also make sure you include the form name in the two other locations that I highlighted in red.  When using multiple forms you will need to name them different for the menus to work correctly.</p>
<p>The first <strong>&lt;option value= </strong>is going to act as the &#8216;title&#8217; of your menu, I don&#8217;t usually add a link here.  You can add as many links as you wish.  The scrolling kicks in after 20 links are added to the menu.  The width of the menu is determined by the longest piece of text you include.  So if the title of your menu is <strong>Socks </strong>but you include a link for <strong>White Stripped Knee Hight Basketball Socks</strong>, you will have a really wide menu.  There are various options, such as font color and margins, that you can tweak to make the menu fit your site.</p>
<p>Have multiple menus is pretty easy to do.  Like I said above make sure you name each one different or it won&#8217;t work correctly.  To create multiple drop down menus in a column you simply recreate the code for the number of menus you want.  If you take a look at my <strong><a href="http://www.nichestoretemplates.info/dropdownmenu.html" target="_blank">demo link</a></strong> you can see it in action.  This would work great on siebars where horizontal space is at a minimum.</p>
<p>Having the menus in a row takes a little more code.  Here is what the code will look like for two menus in a row and here is the <strong><a href="http://www.nichestoretemplates.info/dropdownmenu.html" target="_blank">demo link</a></strong>.</p>
<blockquote>
<pre><strong>&lt;table&gt;</strong></pre>
<pre><strong>&lt;tr&gt;</strong></pre>
<pre><strong>&lt;td&gt;
</strong></pre>
<blockquote>
<pre id="line1"><strong>&lt;<span class="start-tag">form</span><span class="attribute-name"> name</span>=<span class="attribute-value">"<span style="color: #ff0000;">Demo</span>"</span>&gt;
&lt;<span class="start-tag">select</span><span class="attribute-name"> style</span>=<span class="attribute-value">"margin-top:10px; margin-right:20px; margin-left:10px;
font-size:12px;color:#000000;font-weight:bold;font-family:verdana;
background-color:#ffffff;"</span><span class="attribute-name">name</span>=<span class="attribute-value">"menu" </span><span class="attribute-name">onChange</span>=<span class="attribute-value">"location=document.
<span style="color: #ff0000;">Demo</span>.menu.options[document.<span style="color: #ff0000;">Demo</span>.menu.selectedIndex].value;"</span>&gt;
</strong></pre>
<pre><strong>&lt;option value=" "&gt;Drop Down Menu Demo&lt;/option&gt;</strong></pre>
<pre><strong>&lt;option value="http://"&gt;Demo Link&lt;/option&gt;</strong></pre>
<pre><strong>&lt;/select&gt;</strong></pre>
<pre><strong>&lt;/form&gt;</strong></pre>
</blockquote>
<pre><strong>&lt;/td&gt;</strong></pre>
<pre><strong>&lt;td&gt;
</strong></pre>
<blockquote>
<pre id="line1"><strong>&lt;<span class="start-tag">form</span><span class="attribute-name"> name</span>=<span class="attribute-value">"<span style="color: #ff0000;">Demo2</span>"</span>&gt;
&lt;<span class="start-tag">select</span><span class="attribute-name"> style</span>=<span class="attribute-value">"margin-top:10px; margin-right:20px; margin-left:10px;
font-size:12px;color:#000000;font-weight:bold;font-family:verdana;
background-color:#ffffff;"</span><span class="attribute-name">name</span>=<span class="attribute-value">"menu" </span><span class="attribute-name">onChange</span>=<span class="attribute-value">"location=document.
<span style="color: #ff0000;">Demo2</span>.menu.options[document.<span style="color: #ff0000;">Demo2</span>.menu.selectedIndex].value;"</span>&gt;
</strong></pre>
<pre><strong>&lt;option value=" "&gt;Drop Down Menu Demo&lt;/option&gt;</strong></pre>
<pre><strong>&lt;option value="http://"&gt;Demo Link&lt;/option&gt;</strong></pre>
<pre><strong>&lt;/select&gt;</strong></pre>
<pre><strong>&lt;/form&gt;</strong></pre>
</blockquote>
<pre><strong>&lt;/td&gt;</strong></pre>
<pre><strong>&lt;/tr&gt;
</strong></pre>
<pre><strong>&lt;/table&gt;</strong></pre>
</blockquote>
<p>The two menus are wrapped in a &lt;table&gt; &lt;tr&gt; and a the menus in a &lt;td&gt;.  If you would like to add aditional menus to this you will need to copy from the <strong>&lt;td&gt;</strong> to the <strong>&lt;/td&gt;</strong> and pasted it before the &lt;/tr&gt; at the bottom.</p>
<p>If you have any questions or problems feel free to post any coments below or contact me directly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buildabetternichestore.com/creating-simple-html-drop-down-menus/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.buildabetternichestore.com/creating-simple-html-drop-down-menus/</feedburner:origLink></item>
		<item>
		<title>BANS WordPress Template - Revolution Church (Modified)</title>
		<link>http://feedproxy.google.com/~r/BuildABetterNicheStore/~3/aWCRcFN-Sm4/</link>
		<comments>http://www.buildabetternichestore.com/bans-wordpress-template-revolution-church-modified/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 16:26:22 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
		
		<guid isPermaLink="false">http://www.buildabetternichestore.com/?p=231</guid>
		<description><![CDATA[Don&#8217;t want to install the template yourself?  Check out my installation services.
Revolution Lifestyle BANS conversion can be found here.
This is a modified version of the Revolution Church template converted to work with BANS (Build A Niche Store).  The template is designed for WordPress to be installed in the root and BANS to be [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;">Don&#8217;t want to install the template yourself?  Check out my <a href="http://www.buildabetternichestore.com/bans-services/">installation services</a>.</span></p>
<p>Revolution Lifestyle <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> conversion can be found <a href="http://www.buildabetternichestore.com/bans-wordpress-template-revolution-lifestyle-modified/"><strong>here</strong></a>.</p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/revolution_church.jpg" rel="lightbox"><img class="alignleft size-medium wp-image-232" style="margin: 5px;" title="BANS WordPress Template - Revolution Church" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/revolution_church-300x255.jpg" alt="" width="219" height="186" /></a>This is a modified version of the Revolution Church template converted to work with <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> (Build A Niche Store).  The template is designed for WordPress to be installed in the root and <a title="Build A Niche Store" href="http://bryan0514.nichestore.hop.clickbank.net/">BANS</a> to be installed in a subfolder.</p>
<p>I have modified the &#8216;headline&#8217; section of the home.php file in the Revoltuion Lifestyle theme.  I liked the look or the Lifestyle &#8216;headline&#8217; feature but was looking for something a little different for my <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> sites.</p>
<p>To create a post for the &#8216;headline&#8217; area you need create a category named <strong>Headline</strong> and apply it to your post.  To add an image to the Headline story you need to use the <strong>Custom Fields </strong>section.  You will need to name the Key &#8220;Image&#8221; (with a capital &#8220;I&#8221;) and the Value will be the file name of the image.  There are a couple parameters to follow in order for image function to work properly.  First the size of the image must be 300px x 200px.  The image must be uploaded into your theme&#8217;s image folder, in this case it will be <strong>/church_10/images</strong>.  Here is an example of the Custom Fields section and how to configure it.</p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/customfields.jpg" rel="lightbox"><img class="size-medium wp-image-200 alignnone" style="border: 1px solid black; margin-top: 5px; margin-bottom: 5px;" title="Custom Fields" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/customfields-300x156.jpg" alt="" width="300" height="156" /></a></p>
<p>Here is a demo link for the <strong><a href="http://church.nichestoretemplates.info/" target="_blank">blog</a></strong> and one for the <a href="http://church.nichestoretemplates.info/store" target="_blank"><strong>store</strong></a> for this template.</p>
<p>I will answer what questions I can for the Revolution WordPress theme.  Here is a <a href="http://www.revolutiontwo.com/support/" target="_blank"><strong>link</strong></a> to the Revolution support forums, you need to be a member to access them.  However, I can answer any questions regarding the conversion of the theme.  Installation instructions for the template are included with the download.</p>
<p><a href="http://church.nichestoretemplates.info/Church_For_BANS_Modified.zip"><strong>Download Revolution Church </strong></a></p>
<p><span style="color: #ff0000;">Note:</span> This is a full installation of the template no further downloads are required.  Installation instructions can be found <a href="http://church.nichestoretemplates.info/install.htm" target="_blank"><span><strong>here</strong></span></a>.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="864496" />
<input name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
]]></content:encoded>
			<wfw:commentRss>http://www.buildabetternichestore.com/bans-wordpress-template-revolution-church-modified/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.buildabetternichestore.com/bans-wordpress-template-revolution-church-modified/</feedburner:origLink></item>
		<item>
		<title>Adding Images To The Arthemia Template</title>
		<link>http://feedproxy.google.com/~r/BuildABetterNicheStore/~3/gW1PleAhnG8/</link>
		<comments>http://www.buildabetternichestore.com/adding-images-to-the-arthemia-template/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 06:45:47 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
		
		<guid isPermaLink="false">http://www.buildabetternichestore.com/?p=217</guid>
		<description><![CDATA[Some of the more common questions I get regarding the Arthemia template have to do with adding images.  Even though it seems pretty straightforward there is always potential for a miscue along the way.
I recommend that everyone reads the post for the Arthemia WordPress theme, there is a lot of good setup information on there.
After [...]]]></description>
			<content:encoded><![CDATA[<p>Some of the more common questions I get regarding the Arthemia template have to do with adding images.  Even though it seems pretty straightforward there is always potential for a miscue along the way.</p>
<p>I recommend that everyone reads the <a href="http://michaelhutagalung.com/2008/05/arthemia-magazine-blog-wordpress-theme-released/"><strong>post</strong></a> for the Arthemia WordPress theme, there is a lot of good setup information on there.</p>
<p>After installing your template and creating your first &#8216;Headline&#8217; post, without an image, your site might look something like this.</p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/no_image.jpg" rel="lightbox"><img class="alignnone size-medium wp-image-218" style="border: 1px solid black; margin: 5px 20px;" title="Arthemia Template No Image" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/no_image-300x153.jpg" alt="" width="300" height="153" /></a></p>
<p><span style="color: #ff0000;">Notice:</span> I am just using the &#8216;Headline&#8217; story as an example.  Any post you create without an image would look the same way.  The posts in the &#8216;Featured&#8217; section, to the right, would also have a blank space for the images as well.</p>
<p>There are a couple steps we need to add an image to our posts.  First we need to upload the image.  Just a quick not here, just because you upload the image doesn&#8217;t mean you need to use it in your post.  Whats nice about this code is it allows you to use and image for the front page even if you don&#8217;t use it in your post.  However if you want to use the image in your post too go right ahead.</p>
<p>To upload an image you will click on the &#8216;Add an image&#8217; icon above the section where write your posts.</p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/add_an_image.jpg" rel="lightbox"><img class="alignnone size-medium wp-image-219" style="border: 1px solid black; margin: 5px 20px;" title="Arthemia Template Add An Image" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/add_an_image-300x153.jpg" alt="" width="300" height="153" /></a></p>
<p>Once you click on the icon a pop-up window will appear with your options to upload an image.  The default option to upload is set for Flash and this has never worked for me.  I always click on <strong>&#8216;Browser uploader&#8217;</strong> to upload my images.  After you upload your image you will be taken to the options screen.  This is where you can edit the title, caption and description of the image as well as choose to insert the image into the post.  Along with all that information this screen will also have the url of your image.  Take this time now to copy the section of the url you will need for the &#8216;Custom Fields&#8217; section.  In my example this is what my portion of the url looks like: <strong>wp-content/uploads/2008/08/apple1.jpg</strong>.  Notice I don&#8217;t have htt:www.mysite.com/ included in the value, this is very important.</p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/image_url.jpg" rel="lightbox"><img class="alignnone size-medium wp-image-221" style="border: 1px solid black; margin: 5px 20px;" title="Arthemia Template Image URL" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/image_url-268x300.jpg" alt="" width="268" height="300" /></a></p>
<p>Once you have copied the portion of your image&#8217;s url it is time to enter that information into the <strong>&#8216;Custom Fields&#8217;</strong> section.  To find the &#8216;Custom Fields&#8217; section scroll down near the bottom of the page where you write your posts.  For the <strong>Key</strong> value enter <strong>&#8216;Image&#8217;</strong> (make sure you use an uppercase &#8216;I&#8217;) and in the <strong>Value</strong> box you can enter or paste your image&#8217;s url.  After those have been added you can click on <strong>&#8216;Add Custom Field&#8217;</strong>.</p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/custom_fields.jpg" rel="lightbox"><img class="alignnone size-medium wp-image-223" style="border: 1px solid black; margin: 5px 20px;" title="Arthemia Template Custom Fields" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/custom_fields-300x126.jpg" alt="" width="300" height="126" /></a></p>
<p>After you finish this step you can Save or Publish your post and check your work.  It doesn&#8217;t matter which section of the site you are adding the post and image to the steps are all the same.  You are not required to edit the image before uploading it, the template uses an automatic resizer for each section.  However some image sizes work better in some section than others.</p>
<p><span style="color: #ff0000;">Note:<br />
<span style="color: #000000;">If you go through all the steps and your images still don&#8217;t show up please make sure your <strong>scripts</strong> and <strong>cache</strong> folder permissions have been set to either 755 or 777.  On my sites with <a href="http://www.jdoqocy.com/k1102lnwtnvAEDGBBDGACBFBJFJG" title="A great place to host your website.">HostGator</a> I use 755.<br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buildabetternichestore.com/adding-images-to-the-arthemia-template/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.buildabetternichestore.com/adding-images-to-the-arthemia-template/</feedburner:origLink></item>
		<item>
		<title>BANS WordPress Template - Revolution Lifestyle (Modified)</title>
		<link>http://feedproxy.google.com/~r/BuildABetterNicheStore/~3/FwrtGJ_6vwE/</link>
		<comments>http://www.buildabetternichestore.com/bans-wordpress-template-revolution-lifestyle-modified/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 21:14:13 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
		
		<guid isPermaLink="false">http://www.buildabetternichestore.com/?p=198</guid>
		<description><![CDATA[Don&#8217;t want to install the template yourself?  Check out my installation services.
Revolution Church BANS conversion can be found here.
This is a modified version of the Revolution Lifestyle template converted to work with BANS (Build A Niche Store).  The template is designed for WordPress to be installed in the root and BANS to be installed [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;">Don&#8217;t want to install the template yourself?  Check out my <a href="http://www.buildabetternichestore.com/bans-services/">installation services</a>.</span></p>
<p>Revolution Church <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> conversion can be found <a href="http://www.buildabetternichestore.com/bans-wordpress-template-revolution-church-modified/"><strong>here</strong></a>.</p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/revolution_lifestyle.jpg" rel="lightbox"><img class="alignleft size-medium wp-image-206" style="margin: 5px;" title="BANS WordPress Template - Revolution Lifestyle" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/revolution_lifestyle-300x255.jpg" alt="" width="219" height="186" /></a>This is a modified version of the Revolution Lifestyle template converted to work with <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> (Build A Niche Store).  The template is designed for WordPress to be installed in the root and <a title="Build A Niche Store" href="http://bryan0514.nichestore.hop.clickbank.net/">BANS</a> to be installed in a subfolder.</p>
<p>I have modified the &#8216;headline&#8217; section of the home.php file in the Revoltuion Lifestyle theme.  I liked the look or the Lifestyle &#8216;headline&#8217; feature but was looking for something a little different for my <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> sites.</p>
<p>To create a post for the &#8216;headline&#8217; area you need create a category named <strong>Headline</strong> and apply it to your post.  To add an image to the Headline story you need to use the <strong>Custom Fields </strong>section.  You will need to name the Key &#8220;Image&#8221; (with a capital &#8220;I&#8221;) and the Value will be the file name of the image.  There are a couple parameters to follow in order for image function to work properly.  First the size of the image must be 300px x 200px.  The image must be uploaded into your theme&#8217;s image folder, in this case it will be <strong>/lifestyle_10/images</strong>.  Here is an example of the Custom Fields section and how to configure it.</p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/customfields.jpg" rel="lightbox"><img class="size-medium wp-image-200 alignnone" style="border: 1px solid black; margin-top: 5px; margin-bottom: 5px;" title="Custom Fields" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/11/customfields-300x156.jpg" alt="" width="300" height="156" /></a></p>
<p>Here is a demo link for the <strong><a href="http://lifestyle.nichestoretemplates.info/" target="_blank">blog</a></strong> and one for the <a href="http://lifestyle.nichestoretemplates.info/store" target="_blank"><strong>store</strong></a> for this template.</p>
<p>I can&#8217;t offer much support for the Revolution WordPress theme.  Here is a <a href="http://www.revolutiontwo.com/support/" target="_blank"><strong>link</strong></a> to the Revolution support forums, you need to be a member to access them.  However, I can answer any questions regarding the conversion of the theme.  Installation instructions for the template are included with the download.</p>
<p><a href="http://lifestyle.nichestoretemplates.info/Lifestyle_For_BANS_Modified.zip"><strong>Download Revolution Lifestyle </strong></a></p>
<p><span style="color: #ff0000;">Note:</span> This is a full installation of the template no further downloads are required.  Installation instructions can be found <span style="color: #000000;"><a href="http://lifestyle.nichestoretemplates.info/install.htm"><span><strong>here</strong></span></a></span>.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="864496" />
<input name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
]]></content:encoded>
			<wfw:commentRss>http://www.buildabetternichestore.com/bans-wordpress-template-revolution-lifestyle-modified/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.buildabetternichestore.com/bans-wordpress-template-revolution-lifestyle-modified/</feedburner:origLink></item>
		<item>
		<title>BANS WordPress Template - Arthemia v2.0</title>
		<link>http://feedproxy.google.com/~r/BuildABetterNicheStore/~3/9ygybr75oAk/</link>
		<comments>http://www.buildabetternichestore.com/bans-wordpress-template-arthemia-v2/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 04:24:58 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
		
		<guid isPermaLink="false">http://www.buildabetternichestore.com/?p=158</guid>
		<description><![CDATA[This is v2.0 of the Arthemia BANS WordPress conversion template.  I have a free version here which is a straight conversion without any customization.  I wanted to offer the same template but give people options to customize it any way they wanted.  I use the Arthemia template on all my BANS sites and each site [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/10/arthemia_v20.jpg" rel="lightbox"><img class="size-full wp-image-166 alignleft" style="margin: 5px;" title="arthemia_v20" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/10/arthemia_v20.jpg" alt="" width="219" height="186" /></a>This is v2.0 of the Arthemia <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> WordPress conversion template.  I have a free version <a href="http://www.buildabetternichestore.com/bans-wordpress-template-arthemia-v10/"><strong>here</strong></a> which is a straight conversion without any customization.  I wanted to offer the same template but give people options to customize it any way they wanted.  I use the Arthemia template on all my <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> sites and each site is configured a little different.</p>
<p>This template will cost <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=366452"><strong>$25</strong></a> and be available as an <span style="text-decoration: underline;">install</span> only, this is a great deal with all the added features.  There are too many customizations to make it available as a separate download.  The template is setup to work with WordPress in the root and <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> in a subfolder.  If you want this installation and currently have <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> in the root please contact me.</p>
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=366452"><img class="alignnone size-medium wp-image-97" style="margin-top: 5px; margin-bottom: 5px;" title="Buy Now" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/09/btn_buynowcc_lg.gif" alt="" width="122" height="47" /></a></p>
<p>Here is a demo link for the <a href="http://arthemia2.nichestoretemplates.info/" target="_blank"><strong>blog</strong></a> and one for the <a href="http://arthemia2.nichestoretemplates.info/store/Computers-and-Networking/Apple-Computers-and-Components" target="_blank"><strong>store</strong></a> for this template.</p>
<h2><strong>Arthemia v2.0</strong></h2>
<p>Here is a list of available options for the Arthemia v2.0 conversion.</p>
<ul>
<li>Space for header logo - 960 x147</li>
<li>Traditional header with space for affiliate ad - 468 x 60</li>
<li>Wigetized &#8216;Featured&#8217; area to use for videos</li>
<li>&#8216;Browse Categories&#8217; area can be used for links to store categories</li>
<li>Content area has been transformed into a store front - all content is controlled from a WordPress page</li>
<li><a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> search on WordPress home page and content pages</li>
<li>Fully customizable sidebar can be used to include adsense, affiliate ads, PHPBay and videos.</li>
<li>Customizable colors - I can tailor the site to meet your needs</li>
</ul>
<p>This is a list of customizations I made to my sites or sites I have done for other people.  If you would like to add something to your site that you don&#8217;t see on the list please contact me and I will try to accommodate.</p>
<p>If you want a customized header logo or images for your site please contact me; I can work out a deal if you are getting the template installed.</p>
<p>Please contact me if you want the template installed on more than one domain.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buildabetternichestore.com/bans-wordpress-template-arthemia-v2/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.buildabetternichestore.com/bans-wordpress-template-arthemia-v2/</feedburner:origLink></item>
		<item>
		<title>Top 100 Niche Store Blogs</title>
		<link>http://feedproxy.google.com/~r/BuildABetterNicheStore/~3/-T35gBHTfug/</link>
		<comments>http://www.buildabetternichestore.com/top-100-niche-store-blogs/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 03:53:46 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
		
		<guid isPermaLink="false">http://www.buildabetternichestore.com/?p=152</guid>
		<description><![CDATA[Mark, The Niche Store Builder, is compiling a list of the Top 100 Niche Store Blogs.  He uses his own custom algorithim to come up with the rankins, so there is no biased involved.
The way it works is actually pretty simple. Get the PageRank of a site, get the Technorati backlinks and Alexa rank, run [...]]]></description>
			<content:encoded><![CDATA[<p>Mark, <a href="http://www.thenichestorebuilder.com/"><strong>The Niche Store Builder</strong></a>, is compiling a list of the <a href="http://www.thenichestorebuilder.com/top-100-bans"><strong>Top 100 Niche Store Blogs</strong></a>.  He uses his own custom algorithim to come up with the rankins, so there is no biased involved.</p>
<blockquote><p>The way it works is actually pretty simple. Get the PageRank of a site, get the Technorati backlinks and Alexa rank, run a custom algorithm, weighting each of the three metrics and there you have a list of the Top Niche Store Blogs!</p></blockquote>
<p>So far there are only 10 sites on the list, I&#8217;m 10/10, but I would imagine that number will grow by the week.  If you have a niche store blog visit his <a href="http://www.thenichestorebuilder.com/"><strong>site</strong></a> and sign yourself up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buildabetternichestore.com/top-100-niche-store-blogs/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.buildabetternichestore.com/top-100-niche-store-blogs/</feedburner:origLink></item>
		<item>
		<title>WordPress Post, Page &amp; Category IDs</title>
		<link>http://feedproxy.google.com/~r/BuildABetterNicheStore/~3/4ZGpOHrQSH8/</link>
		<comments>http://www.buildabetternichestore.com/wordpress-post-page-category-ids/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 04:56:14 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
		
		<guid isPermaLink="false">http://www.buildabetternichestore.com/?p=59</guid>
		<description><![CDATA[From time to time you will need to find your post, page or category ID number in WordPress.  In prior versions this was really easy to do, there was actually an ID column for posts, pages and categories.  For whatever reason, with the new upgrades the developers decided to do away with that [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time you will need to find your post, page or category ID number in WordPress.  In prior versions this was really easy to do, there was actually an ID column for posts, pages and categories.  For whatever reason, with the new upgrades the developers decided to do away with that column.  However there is still a way to get those all important ID numbers.</p>
<p>Go into your <strong>Dashboard</strong> &gt; <strong>Manage </strong>&gt;<strong> Post</strong>,<strong> Page </strong>or<strong> Categories </strong>(depending on which number you need) and hover over the post, page or category that you need the ID number of.  As you are hovering look at the bottom left corner of your browser and you will see a url and at the end of the url will be your post, page or category ID number.  Here are some screen shots to better demonstrate.</p>
<p><strong>Find Post ID Number</strong></p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/09/postid.jpg" rel="lightbox"><img class="size-medium wp-image-61 alignnone" style="margin-top: 5px; margin-bottom: 5px;" title="Post ID Number" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/09/postid-300x258.jpg" alt="Find WordPress Post ID Number" width="300" height="258" /></a></p>
<p><strong>Find Category ID Number</strong></p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/09/categoryid.jpg" rel="lightbox"><img class="alignnone size-medium wp-image-63" style="margin-top: 5px; margin-bottom: 5px;" title="WordPress Category ID Number" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/09/categoryid-300x258.jpg" alt="" width="300" height="258" /></a></p>
<p>To find the page ID follow the same procedure as the post but go to <strong>Manage</strong> &gt; <strong>Page</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buildabetternichestore.com/wordpress-post-page-category-ids/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.buildabetternichestore.com/wordpress-post-page-category-ids/</feedburner:origLink></item>
		<item>
		<title>BANS WordPress Template - Arthemia v1.0</title>
		<link>http://feedproxy.google.com/~r/BuildABetterNicheStore/~3/4o7O8axiTo4/</link>
		<comments>http://www.buildabetternichestore.com/bans-wordpress-template-arthemia-v10/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 06:56:04 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
		
		<guid isPermaLink="false">http://www.buildabetternichestore.com/?p=27</guid>
		<description><![CDATA[Don&#8217;t want to install the template yourself?  Check out my installation services.
Arthemia v2.0 conversion can be found here.
This is a magazine style WordPress template converted to be used with BANS (Build A Niche Store).  The template is designed for WordPress to be installed in the root and BANS to be installed in a subfolder.
As [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;">Don&#8217;t want to install the template yourself?  Check out my <a href="http://www.buildabetternichestore.com/bans-services/">installation services</a>.</span></p>
<p>Arthemia v2.0 conversion can be found <a href="http://www.buildabetternichestore.com/bans-wordpress-template-arthemia-v2/"><strong>here</strong></a>.</p>
<p><a href="http://www.buildabetternichestore.com/wp-content/uploads/2008/09/arthemia_v10.jpg" rel="lightbox"><img class="alignleft size-medium wp-image-32" style="margin: 5px;" title="BANS WordPress Template - Arthemia v1.0" src="http://www.buildabetternichestore.com/wp-content/uploads/2008/09/arthemia_v10-300x255.jpg" alt="" width="219" height="186" /></a>This is a magazine style WordPress template converted to be used with <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> (Build A Niche Store).  The template is designed for WordPress to be installed in the root and <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> to be installed in a subfolder.</p>
<p>As you can see this post is titled Arthemia v1.0.  This is a straight <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> conversion of the Arthemia WordPress theme.  However, I have plans to release other conversions of this same theme in the near future.  I use a heavily modified version of this theme on my <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> sites but haven&#8217;t put anything together for download.</p>
<p>Here is a demo link for the <a href="http://arthemia.nichestoretemplates.info/" target="_blank"><strong>blog</strong></a> and one for the <a href="http://arthemia.nichestoretemplates.info/store/" target="_blank"><strong>store</strong></a> for this template.</p>
<p>After uploading the files please visit this <a href="http://michaelhutagalung.com/2008/05/arthemia-magazine-blog-wordpress-theme-released/"><strong>post</strong></a> to get information on configuring the WordPress theme.</p>
<p>If you have any questions regarding the conversion of this template please feel free to ask away here or use the contact page to email me.  You can also post any questions you have on using Arthemia theme.  However, I would recommend reading the <a href="http://michaelhutagalung.com/2008/05/arthemia-magazine-blog-wordpress-theme-released/"><strong>post</strong></a> associated with this theme first.  There are a lot a features to this theme and his <strong><a href="http://michaelhutagalung.com/2008/05/arthemia-magazine-blog-wordpress-theme-released/">post</a></strong> does a good job describing how to set it up.</p>
<p><strong><span style="color: #ff0000;"><span style="color: #ff0000;"><a href="http://www.nichestoretemplates.info/arthemia_v1/Arthemia_v1.0_For_Bans.zip">Download Arthemia v1.0</a></span></span></strong></p>
<p>Installation instructions can be found <span style="color: #000000;"><a href="http://arthemia.nichestoretemplates.info/install.htm"><span><strong>here</strong></span></a></span>.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="864496">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"><br />
</form>
<p>The <strong><a href="http://www.michaeljubel.com/2008/05/arthemia-magazine-blog-wordpress-theme-released/" target="_blank">Arthemia</a></strong> theme was created by <a href="http://www.michaeljubel.com/" target="_blank"><strong>Michael Jubel </strong></a>.  Since this is a free template please keep all credits intact in the footer.</p>
<p><strong><span style="color: #ff0000;">Note:</span></strong></p>
<p>If you are having trouble getting your pictures to show up on the front page try setting your <strong>scripts</strong> and <strong>cache</strong> folder permissions to <strong>755</strong> instead of 777.</p>
<p>I have recieved some questions on how to find post, page and category ID numbers.  I wrote a post <a href="http://www.buildabetternichestore.com/wordpress-post-page-category-ids/"><strong>here</strong></a> on how to find these IDs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buildabetternichestore.com/bans-wordpress-template-arthemia-v10/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.buildabetternichestore.com/bans-wordpress-template-arthemia-v10/</feedburner:origLink></item>
		<item>
		<title>What Is BANS?</title>
		<link>http://feedproxy.google.com/~r/BuildABetterNicheStore/~3/lloFoUd8nPQ/</link>
		<comments>http://www.buildabetternichestore.com/what-is-bans/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 05:27:27 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
		
		<guid isPermaLink="false">http://buildabetternichestore.com/?p=3</guid>
		<description><![CDATA[BANS stands for Build A Niche Store and in short it is software that allows you to setup eBay affiliate sites very quickly.  After a couple installs you can have a site up in running in about 10 minutes.  However, I would suggest against launching a site with thin content a generic meta tags right [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> stands for Build A Niche Store and in short it is software that allows you to setup eBay affiliate sites very quickly.  After a couple installs you can have a site up in running in about 10 minutes.  However, I would suggest against launching a site with thin content a generic meta tags right away.  Interested in <em><a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a></em> but don&#8217;t know where to begin?  Here is a brief run down on how to get started.  Some steps can come before others so this isn&#8217;t set in stone.</p>
<h2>Register With eBay Partner Network</h2>
<p>I would recommend registering with EPN as soon as you decide to you want to setup a <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> site.  Lately they have been slow in their acceptance of the US applications.  The sooner you get them in the better.</p>
<h2>Find Good Hosting</h2>
<p>This is probably one of the most important steps in creating a <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> site.  You may be thinking to yourself that you want to setup a site for cookie jar auctions and wont don&#8217;t need to change your hosting. Once that first sale goes through you will be chomping at the bit to set up your next 10 sites.  I had <a href="http://www.kqzyfj.com/click-3141272-10383029" title="A great place to buy cheap domains.">GoDaddy</a> shared hosting and it ran ok for what I was doing before <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a>.  I had a personal site for family pictures and I was a web noob when I bought the hosting about five years ago.  After setting up my <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> site I was having problems with <a href="http://www.kqzyfj.com/click-3141272-10383029" title="A great place to buy cheap domains.">GoDaddy</a> and noticed my sites were loading terribly slow so I decided to make the jump to <a href="http://www.jdoqocy.com/k1102lnwtnvAEDGBBDGACBFBJFJG" title="A great place to host your website.">HostGator</a>.  Switching to them was the best decision I made.  <a href="http://www.kqzyfj.com/click-3141272-10383029" title="A great place to buy cheap domains.">GoDaddy</a> was easy to use but <a href="http://www.jdoqocy.com/k1102lnwtnvAEDGBBDGACBFBJFJG" title="A great place to host your website.">HostGator</a> was just as cheap and my sites loaded a lot faster.  I also like to the use of cpanel which you don&#8217;t have with <a href="http://www.kqzyfj.com/click-3141272-10383029" title="A great place to buy cheap domains.">GoDaddy</a>.</p>
<p>If you are currently under contract with a hosting company give <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> a shot with your hosting and see how it runs, you could always change later.</p>
<h2>Choosing Your Niche &amp; Buying Your Domain</h2>
<p>I&#8217;m not going to give a lesson about niche researching; heck I&#8217;m still learning it myself.  However, I want to highlight some pointers to use when choosing your niche and finally buying that all important domain.  First, it seems success in the site may depend on how interested you are in the niche store you choose.  If you choose a to start a niche store on Precious Moments, but don&#8217;t have a clue about them and don&#8217;t really care about them, how often are you going to update that site and how much time are you willing to put into it?  I&#8217;m not saying people don&#8217;t have success with niches they aren&#8217;t interested in or don&#8217;t put the time into niches they are unfamiliar with.  In order for a <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> site to flourish it needs content.  So decide how much time you are willing to put into a site about Precious Moments and how much content you can create.</p>
<p>Once you have have your niche picked out its time to buy the domain.  My favorite place to buy domains is <a href="http://www.kqzyfj.com/click-3141272-10383029" title="A great place to buy cheap domains.">GoDaddy</a>.  What they are lacking for in hosting they make up for in domain purchasing.  Also look around the web for <a href="http://www.kqzyfj.com/click-3141272-10383029" title="A great place to buy cheap domains.">GoDaddy</a> domain discount coupons.  When buying a domain it would be nice to find one with some keywords that match your niche store.  If you have a watch store you probably want to find a domain that includes words such as watches, cheap, discount, store, shop, bargain, outlet&#8230;etc.  In some if not most cases, especially for popular niches, your first .com choice will probably be taken.  If that is the case try a .net or .org of that same sequence.  Most people try to avoid buying a domain that isn&#8217;t a .com, .net or .org.  If you can&#8217;t find the domain with those three try a different sequence.  For instance if discountwatches.com/.net/.org are all taken try buydiscountwatches.com.  Try taking multiple sequences of the same words and mixing them up or add additional words to the same domain.  Another thing to avoid is adding too many dashes to the domain.  There are different theories out about this.  I wont register a domain with dashes and those who do say don&#8217;t have a domain with more than two dashes in it.</p>
<p>One final <span style="color: #ff0000;"><strong>WARNING! </strong><span style="color: #000000;">don&#8217;t register a domain that you think may have trademark issue.  Basically anything that is a name brand can&#8217;t be in your domain name.  Lets take the watch store for example.  You can have watchstore.com but not rolexwatchstore.com.  If all else fails just ask someone.  Nothing worse than not being able to get a refund on a domain you can&#8217;t use.</span></span></p>
<h2>Buy BANS</h2>
<p>Yes, you have to buy it but it is well worth the money.  If you are skeptical, type <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> into google and see how many people are praising it.  For some it is the first affiliate they have actually made any money with.  How many people have google adsense on their page just to get a few pennies per click?  With <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> you pay the $97 and you can setup as many sites as your heart desires.  Many people couldn&#8217;t believe how easy it was to setup their first site.  I find many people on the forums whose first site ever was a <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> site.</p>
<h2>Setup Your Site</h2>
<p>This is a very important step in your <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> creation.  Having a site full of good content, the right keywords and proper meta tags is the key.  A thin site may take a long time to get indexed or may never get indexed.   There is a ton of great information on the <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> forums that discuss the ins and outs of creating and marketing your site.</p>
<h2>Have Fun</h2>
<p>Until the money starts rolling in this is the only thing you have to hold on to.  <a href="http://bryan0514.nichestore.hop.clickbank.net/" title="Build A Niche Store">BANS</a> is a great affiliate software program that gives users an opportunity to finally make some money online.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buildabetternichestore.com/what-is-bans/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.buildabetternichestore.com/what-is-bans/</feedburner:origLink></item>
	</channel>
</rss>
