<?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>WP Ninjas</title>
	<atom:link href="http://wpninjas.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpninjas.net</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 16:32:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ninja Forms Styling: Modern Aqua</title>
		<link>http://wpninjas.net/2012/02/ninja-forms-styling-modern-aqua/</link>
		<comments>http://wpninjas.net/2012/02/ninja-forms-styling-modern-aqua/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 16:29:16 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Ninja Forms]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1384</guid>
		<description><![CDATA[Styling Ninja Forms is super easy but you still need to know how to mess around with CSS. That&#8217;s why we started posting these. We take a basic contact form and style various ways. If you like one that we&#8217;ve &#8230; <a href="http://wpninjas.net/2012/02/ninja-forms-styling-modern-aqua/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Styling Ninja Forms is super easy but you still need to know how to mess around with CSS. That&#8217;s why we started posting these. We take a basic contact form and style various ways. If you like one that we&#8217;ve done feel free to take the CSS below and add it to your own site. These are a great jumping off point for you to create a uniquely style form for yourself so have fun.</p>
<h3>THE FORM</h3>
<p><img class="alignnone size-full wp-image-1385" title="Modern Aqua Contact Form" src="http://wpninjas.net/wp-content/uploads/2012/02/aqua-form.png" alt="Modern Aqua Contact Form" width="646" height="413" /></p>
<p>Get the settings and CSS after the jump&#8230;</p>
<p><span id="more-1384"></span></p>
<h3>MY FORM SETTINGS</h3>
<p>This is a simple contact form with all default field settings.</p>
<p>That&#8217;s it. Everything else are default settings. Above is an image of the form I&#8217;ve styled. My form was a shortcode wrapped it in a div with an ID of ninja-form-sample so if you use my css below you may want to take that into account. Modifications may necessary depending on your theme&#8217;s CSS.</p>
<h3>THE CSS</h3>
<pre class="brush: css; title: ; notranslate">#ninja-forms-sample {
   background: #c2e9ef;
   border-radius: 10px;
   color: #333;
   margin-bottom: 1.625em;
   padding: 20px;
   overflow: hidden;
   max-width: 600px;
}
#ninja-forms-sample .req-item-desc {
   margin-bottom: 10px;
}
#ninja-forms-sample .required-item {
   color: #ff0000;
}
#ninja-forms-sample p {
   margin: 0;
}
#ninja-forms-sample .field-group {
   clear: both;
}
#ninja-forms-sample .ninja-text-box {
 background: #fff;
 border: 3px solid #00b2cd;
 border-top-right-radius: 20px;
 border-bottom-right-radius: 20px;
 -moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,.4);
 -webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,.4);
 box-shadow: inset 3px 3px 3px rgba(0,0,0,.4);
 color: #00b2cd;
 line-height: 22px;
 margin: 0 0 10px 0;
 padding: 3px 1%;
 width: 70%;
}

#ninja-forms-sample .ninja-textarea {
   background: #fff;
   border: 3px solid #00b2cd;
   border-top-right-radius: 20px;
   border-bottom-right-radius: 20px;
   -moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,.4);
   -webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,.4);
   box-shadow: inset 3px 3px 3px rgba(0,0,0,.4);
   color: #00b2cd;
   line-height: 22px;
   margin: 0 0 10px 0;
   padding: 3px 1%;
   width: 70%;
}
#ninja-forms-sample label {
   background: #00b2cd;
   border: 3px solid #00b2cd;
   border-top-left-radius: 20px;
   border-bottom-left-radius: 20px;
   color: #fff;
   display: block;
   float: left;
   padding: 4px 2%;
   width: 80px;
}
#ninja-forms-sample .span-textarea-label-left label {
   height: 98px;
}
#ninja-forms-sample .ninja-textarea {
   height: 100px;
   overflow: auto;
}
#ninja-forms-sample #ninja_field_spam {
   float: none;
   width: 22px;
}
#ninja-forms-sample #ninja_submit {
   background-color: #a7feb4;
   background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a7feb4), color-stop(100%, #6ae67b));
   background-image: -webkit-linear-gradient(top, #a7feb4, #6ae67b);
   background-image: -moz-linear-gradient(top, #a7feb4, #6ae67b);
   background-image: -ms-linear-gradient(top, #a7feb4, #6ae67b);
   background-image: -o-linear-gradient(top, #a7feb4, #6ae67b);
   background-image: linear-gradient(top, #a7feb4, #6ae67b);
   border: 1px solid #a7feb4;
   border-radius: 20px;
   color: #085913;
   line-height: 1;
   padding: 8px 15px;
   text-align: center;
   text-shadow: 0 -1px 1px #a7feb4;
   text-transform: uppercase;
}
#ninja-forms-sample #ninja_submit:hover {
   background: #a7feb4;
   border: 1px solid #a7feb4;
   cursor: pointer; }
#ninja-forms-sample #ninja_submit:focus {
   background: #a7feb4;
   border: 1px solid #a7feb4;
}</pre>
<p>Feel free to use this CSS and tweak it for your own form and look for some other styling in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2012/02/ninja-forms-styling-modern-aqua/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just a heads up&#8230;</title>
		<link>http://wpninjas.net/2012/02/just-a-heads-up/</link>
		<comments>http://wpninjas.net/2012/02/just-a-heads-up/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 13:09:34 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1322</guid>
		<description><![CDATA[Half of the WP Ninjas are at WordCamp Atlanta today and tomorrow. I tell you this in case you send us an email or submit a support ticket and wonder why our responses aren&#8217;t as fast as usual. Of course we &#8230; <a href="http://wpninjas.net/2012/02/just-a-heads-up/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Half of the WP Ninjas are at WordCamp Atlanta today and tomorrow. I tell you this in case you send us an email or submit a support ticket and wonder why our responses aren&#8217;t as fast as usual. Of course we will still attempt to be as lightening fast as our customers have come to expect but in case we aren&#8217;t able to get to you immediately it&#8217;s because half of us are working on an update for Ninja Forms and I&#8217;m at WordCamp. :)</p>
<p>Great stuff coming around the corner but I hope everyone has a great weekend.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2012/02/just-a-heads-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stay informed about your favorite WP Ninjas products</title>
		<link>http://wpninjas.net/2012/02/stay-informed-about-your-favorite-wp-ninjas-products/</link>
		<comments>http://wpninjas.net/2012/02/stay-informed-about-your-favorite-wp-ninjas-products/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 21:27:02 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1287</guid>
		<description><![CDATA[This site is still very much under construction as we are deciding what services we want to focus on and what kind of content we want to share. One of the most important pieces of content is information about our &#8230; <a href="http://wpninjas.net/2012/02/stay-informed-about-your-favorite-wp-ninjas-products/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This site is still very much under construction as we are deciding what services we want to focus on and what kind of content we want to share. One of the most important pieces of content is information about our products. The problem is that these don&#8217;t always necessitate the formality of an entire blog post. So we created a solution&#8230;</p>
<h3>Introducing the WP Ninjas Mailing Lists</h3>
<p>If you have a product or products that you simply love and want the inside scoop of every single release and the inside info about it&#8217;s future development then we have a solution. <a title="Mailing Lists" href="http://wpninjas.net/mailing-lists/">Visit our Mailing Lists page</a> and subscribe to only ones you care about and get the latest and greatest info delivered right to your email.</p>
<p>These lists are double opt-in and give you the opportunity to manage your subscriptions with us at bottom of every newsletter you receive.</p>
<p>What are you waiting for? Subscribe right away so you don&#8217;t miss the next important update.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2012/02/stay-informed-about-your-favorite-wp-ninjas-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Ninja Announcements 2.0</title>
		<link>http://wpninjas.net/2012/01/introducing-ninja-announcements-2-0/</link>
		<comments>http://wpninjas.net/2012/01/introducing-ninja-announcements-2-0/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 18:51:40 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1278</guid>
		<description><![CDATA[To date our freshman plugin has been downloaded 6,600 times. We&#8217;ve received a bunch of emails asking about it and it&#8217;s future. Well, today we are proud to announce that the future is here. Ninja Announcements is available both as a Lite and &#8230; <a href="http://wpninjas.net/2012/01/introducing-ninja-announcements-2-0/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To date our freshman plugin has been downloaded 6,600 times. We&#8217;ve received a bunch of emails asking about it and it&#8217;s future. Well, today we are proud to announce that the future is here.</p>
<p>Ninja Announcements is available both as a Lite and a Pro version and either version is more than enough to handle most sites needs. This WordPress Plugin for your announcement needs gives you the power to choose when, where, and to whom your announcements are presented.</p>
<p>If you want to schedule an announcement to be displayed on your site for a specific time period, day of the week, or even specific time of the day, Ninja Announcements gives you the control that you need. But this is only the start of what Ninja Announcements can do.</p>
<ul>
<li>Advanced control over the HTML markup</li>
<li>Show announcements to certain visitors. You can display different announcements based on a users logged-in role</li>
<li>Display random announcements with the Ninja Announcements Group feature</li>
<li>and much, much more.</li>
</ul>
<p>The types of uses you might have for Ninja Announcements are only limited by your imagination and the exciting thing is&#8230;there&#8217;s a lot more to come.</p>
<p><a title="Ninja Announcements" href="http://wpninjas.net/product/ninja-announcements-plugin/">Check out Ninja Announcements here!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2012/01/introducing-ninja-announcements-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ninja Forms Submission / Save / Edit Errors</title>
		<link>http://wpninjas.net/2012/01/ninja-forms-submission-save-edit-errors/</link>
		<comments>http://wpninjas.net/2012/01/ninja-forms-submission-save-edit-errors/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 20:06:10 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Ninja Forms]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[submit]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1182</guid>
		<description><![CDATA[Hopefully this post will help most users having problems with Ninja Forms. If you are experiencing errors submitting, creating or editing forms, please go through this checklist before you create a new forum post. Ninja Forms uses the version of &#8230; <a href="http://wpninjas.net/2012/01/ninja-forms-submission-save-edit-errors/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hopefully this post will help most users having problems with Ninja Forms. If you are experiencing errors submitting, creating or editing forms, please go through this checklist before you create a new forum post.</p>
<p>Ninja Forms uses the version of jQuery (the javascript library) that comes packaged with WordPress. This means that if you are using an external jQuery file, or another plugin is loading its own version of jQuery, errors may arise. For example, if you are using WordPress version 3.3 or higher, Ninja Forms expects that your site will have version 1.7 of jQuery. If you have a theme or plugin which changes this to an earlier version of jQuery, Ninja Forms may not work properly.</p>
<p>Most of our support cases are javascript related and can be solved by the following steps:</p>
<ol>
<li>Determine that it is a jQuery problem.</li>
<ol>
<li>Attach the form to a page, and load that page in your browser of choice.</li>
<li>Right click on the background of your page and select &#8220;View Source&#8221;.</li>
<li>In the window that opens, search (usually F3 on your keyboard) for &#8220;jQuery&#8221; without the quotes. Look at all the results until you find something with a version number. This will usually be either 1.7 or something like 1.4.2. If you find anything earlier than 1.7 (be sure to search more than once, as your page can load more than one version of jQuery), then you have found the source of your errors.</li>
</ol>
</ol>
<ol start="1">
<li>Deactivate all of your other plugins and reload the page which contains your Ninja Form</li>
<ol start="1">
<li>If Ninja Forms now works</li>
<ol>
<li>Activate your plugins one at a time, reloading the page between each activation.</li>
<li>Once your form stops working, you&#8217;ve found the problem plugin.</li>
<li>If you require both Ninja Forms and the other plugin, contact the author of the other plugin and ask for an update to the newest version of jQuery.</li>
</ol>
<li>If Ninja Forms still isn&#8217;t working</li>
<ol>
<li>With all your plugins disabled, follow the step mentioned at the beginning of right clicking and selecting &#8220;View Source&#8221;.</li>
<li>If you are still able to find earlier versions of jQuery (lower than 1.7), then the jQuery is being loaded by your theme.</li>
<li>Contact the theme author and ask for an update which uses the newest version of jQuery.</li>
</ol>
</ol>
</ol>
<p>If you are unable to get an update from your plugin or theme author, we (the WP Ninjas) are willing to quote a price for these plugin and theme updates on a per-case basis.</p>
<p>I hope that this is a helpful troubleshooting tool. If you follow these steps and are still unable to get Ninja Forms to work properly, then please leave your own forum post with our specific issue.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2012/01/ninja-forms-submission-save-edit-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ninja Forms Styling: Modern Black &amp; Red</title>
		<link>http://wpninjas.net/2012/01/ninja-forms-styling-modern-black-red/</link>
		<comments>http://wpninjas.net/2012/01/ninja-forms-styling-modern-black-red/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 17:43:43 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Ninja Forms]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[forms]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1150</guid>
		<description><![CDATA[We thought it would be fun and perhaps helpful to provide some examples of styling Ninja Forms for your website. We will post a bunch of these over time just to give you an example of what you could be &#8230; <a href="http://wpninjas.net/2012/01/ninja-forms-styling-modern-black-red/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We thought it would be fun and perhaps helpful to provide some examples of styling Ninja Forms for your website. We will post a bunch of these over time just to give you an example of what you could be doing and if you like one you can lift the css below and use it on your own site. Check it all out after the jump.</p>
<p><span id="more-1150"></span></p>
<h3>The Form</h3>
<div id="ninja-forms-sample"><span id='ninja_form_top'></span><script language='javascript'>
				jQuery(document).ready(function($) {}); </script>
<div id='ninja_form'>
<p class='req-item-desc'>Items marked with <span class='required-item'>*</span> are required</p>
<form name='ninja_form_2' id='ninja_form_2' action='' method='post'>
<input type='hidden' name='ninja_form_id' id='ninja_form_id' value='2'>
<input type='hidden' name='action' value='ninja_form_process'>
<input type='hidden' name='ninja_ajax_submit' id='ninja_ajax_submit' value='checked'>
<input type='hidden' id='ninja_multi_form' value='unchecked'>
<input type='hidden' id='ninja_multi_count' value=''>
<input type='hidden' id='ninja_save_status' name='ninja_save_status' value=''>
<input type='hidden' id='ninja_form_save_email' name='ninja_form_save_email' value=''>
<input type='hidden' id='ninja_form_save_password' name='ninja_form_save_password' value=''>
<input type='hidden' id='ninja_form_continue' name='ninja_form_continue' value=''>
<input type="hidden" id="ninja_forms_nonce" name="ninja_forms_nonce" value="088263b21e" />
<input type="hidden" name="_wp_http_referer" value="/feed/" />
<div class='span-textbox-label-above field-group first-name-wrap '><label class='first-name-label  text-label label-above' for='ninja_field_60'>First Name</label>
<input type='text' id='ninja_field_60' name='ninja_field_60' value='' class='ninja-text-box textbox  first-name-field ' title='First Name'></div>
<div class='span-textbox-label-above field-group last-name-wrap '><label class='last-name-label  text-label label-above' for='ninja_field_61'>Last Name</label>
<input type='text' id='ninja_field_61' name='ninja_field_61' value='' class='ninja-text-box textbox  last-name-field ' title='Last Name'></div>
<div class='span-textbox-label-above field-group '><label class=' text-label label-above' for='ninja_field_65'>Email</label>
<input type='text' id='ninja_field_65' name='ninja_field_65' value='' class='ninja-text-box textbox  ' title='Email'></div>
<div class='span-textarea-label-above field-group '><label class=' text-label label-above' for='ninja_field_62'>Message</label><textarea  id='ninja_field_62' name='ninja_field_62' class='ninja-textarea  '  title='Message'></textarea></div>
<div class='span-spam-label-left field-group '><label class=' text-label label-left' for='ninja_field_63'>4 + 7 =<span class='required-item'>*</span></label>
<input type='text' id='ninja_field_spam' name='ninja_field_spam' class='ninja-text-box  ninja_req '  title='4 + 7 ='></div>
<div class='span-submit-label-left field-group '>
<input id='ninja_submit' name='ninja_submit' type='submit' value ='Send' class=' '></div>
<div id='ninja_form_overlay' title='Processing Form Submission'>Processing Submission<br /><a href='#' class='ninja_close_dialog'>Close</a></div>
</form>
</div>
</div>
<h3>My Form Settings</h3>
<p>This is a simple contact form with all default field settings with the following exceptions:</p>
<ul>
<li>All fields but the spam question have the label set to above the field.</li>
<li>I added a custom class to the First and Last name of first-name, last-name respectively.</li>
</ul>
<p>That&#8217;s it. Everything else are default settings. I&#8217;ve added the form here with the ninja_display_form shortcode and wrapped it in a div with an ID of ninja-form-sample so if you use my css below you may want to take that into account. I&#8217;ve also added a post id class to make sure the UI styling of the pop-up only applies to this post.</p>
<h3>The CSS</h3>
<pre class="brush: css; title: ; notranslate">#ninja-forms-sample {
   background: #000;
   background-image: linear-gradient(left bottom, rgb(0,0,0) 14%, rgb(34,34,34) 92%);
   background-image: -o-linear-gradient(left bottom, rgb(0,0,0) 14%, rgb(34,34,34) 92%);
   background-image: -moz-linear-gradient(left bottom, rgb(0,0,0) 14%, rgb(34,34,34) 92%);
   background-image: -webkit-linear-gradient(left bottom, rgb(0,0,0) 14%, rgb(34,34,34) 92%);
   background-image: -ms-linear-gradient(left bottom, rgb(0,0,0) 14%, rgb(34,34,34) 92%);
   background-image: -webkit-gradient(
     linear,
     left bottom,
     right top,
     color-stop(0.14, rgb(0,0,0)),
     color-stop(0.92, rgb(34,34,34))
   );
   border-radius: 10px;
   color: #777;
   padding: 20px;
   overflow: hidden;
}
#ninja-forms-sample p {
   margin: 0;
}
#ninja-forms-sample .ninja-text-box,
#ninja-forms-sample .ninja-textarea {
   background: #333;
   border: 1px solid #444;
   border-radius: 8px;
   -moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,.4);
   -webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,.4);
   box-shadow: inset 3px 3px 3px rgba(0,0,0,.4);
   color: #ccc;
   line-height: 22px;
   padding: 3px 1%;
   width: 97%;
}
#ninja-forms-sample .ninja-textarea {
   height: 100px;
   overflow: auto;
}
#ninja-forms-sample .first-name-wrap {
   float: left;
   width: 48%;
}
#ninja-forms-sample .last-name-wrap {
   float: right;
   margin-right: 0;
   width: 48%;
}
#ninja-forms-sample .span-spam-label-left {
   float: left;
   width: 48%;
}
#ninja-forms-sample #ninja_field_spam {
   float: none;
   width: 22px;
}
#ninja-forms-sample .span-submit-label-left {
   float: right;
   width: 48%;
}
#ninja-forms-sample #ninja_submit {
   float: right;
}

#ninja-forms-sample #ninja_submit {
   background-color: #c80101;
   background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c80101), color-stop(100%, #a80000));
   background-image: -webkit-linear-gradient(top, #c80101, #a80000);
   background-image: -moz-linear-gradient(top, #c80101, #a80000);
   background-image: -ms-linear-gradient(top, #c80101, #a80000);
   background-image: -o-linear-gradient(top, #c80101, #a80000);
   background-image: linear-gradient(top, #c80101, #a80000);
   border: 1px solid #c80101;
   border-radius: 8px;
   color: #fff;
   line-height: 1;
   padding: 8px 15px;
   text-align: center;
   text-shadow: 0 -1px 1px #64799e;
   text-transform: uppercase;
}
#ninja-forms-sample #ninja_submit:hover {
   background: #e70202;
   border: 1px solid #e70202;
   cursor: pointer; }
#ninja-forms-sample #ninja_submit:focus {
   background: #e70202;
   border: 1px solid #e70202;
}
.ui-widget-overlay {
   background: #000 !important;
   opacity: .90 !important;
   filter: Alpha(Opacity=90) !important;
}
.ui-dialog {
   background: #111 !important;
   border: 10px solid #000 !important;
   border-radius: 10px !important;
   color: #ccc !important;
}
.ui-widget-header {
   background: #111 !important;
   color: #fff !important;
}
.ui-widget-content {
   color: #ccc !important;
}
.ui-widget-content a {
   color: #ff0000 !important;
}</pre>
<p>Feel free to use this CSS and tweak it for your own form and look for some other styling in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2012/01/ninja-forms-styling-modern-black-red/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp Atlanta</title>
		<link>http://wpninjas.net/2012/01/wordcamp-atlanta/</link>
		<comments>http://wpninjas.net/2012/01/wordcamp-atlanta/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 14:57:01 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1096</guid>
		<description><![CDATA[The WP Ninjas will be at WordCamp Atlanta next month, half of us anyways. We don&#8217;t get to attend very many because of our schedules but I&#8217;m really looking forward to meeting some new great WordPress people and perhaps discover &#8230; <a href="http://wpninjas.net/2012/01/wordcamp-atlanta/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1097" title="WordCamp Atlanta" src="http://wpninjas.net/wp-content/uploads/2012/01/attending1.png" alt="WordCamp Atlanta" width="160" height="160" />The WP Ninjas will be at WordCamp Atlanta next month, half of us anyways. We don&#8217;t get to attend very many because of our schedules but I&#8217;m really looking forward to meeting some new great WordPress people and perhaps discover some things I hadn&#8217;t thought about yet.</p>
<p>If you are going to be there shoot me a tweet at <a href="http://twitter.com/jameslaws">@jameslaws</a> so that we can connect in person.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2012/01/wordcamp-atlanta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Ninjas are going dark in protest to SOPA / PIPA</title>
		<link>http://wpninjas.net/2012/01/wp-ninjas-are-going-dark-in-protest-to-sopa-pipa/</link>
		<comments>http://wpninjas.net/2012/01/wp-ninjas-are-going-dark-in-protest-to-sopa-pipa/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 14:36:35 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1072</guid>
		<description><![CDATA[I could write all day about why this protest is important but better people than I have already done so, so instead of reinventing the wheel I will list some resources for you to check out. The main point is &#8230; <a href="http://wpninjas.net/2012/01/wp-ninjas-are-going-dark-in-protest-to-sopa-pipa/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I could write all day about why this protest is important but better people than I have already done so, so instead of reinventing the wheel I will list some resources for you to check out.</p>
<p>The main point is this. Tomorrow, January 18th at 8AM until 8PM wpninjas.net will be unavailable. We will simply display a message and info about the protest. Many, many other sites a lot larger than us will also be participating so don&#8217;t be surprised if some sites that you frequent are unavailable. This will demonstrate the kind of internet that these two pieces of legislature will offer. Below is a video and some links to educate yourself on the issue at hand.</p>
<p>For customers of the WP Ninjas, there will be a link for you to log-in and get support if needed so this should not affect you in any way.</p>
<p>    <iframe src="http://player.vimeo.com/video/31100268" width="584" height="329" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<ul>
<li><a href="http://wordpress.org/news/2012/01/help-stop-sopa-pipa/">WordPress message on SOPA / PIPA</a></li>
<li><a href="http://sopastrike.com/">Learn More Here »</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2012/01/wp-ninjas-are-going-dark-in-protest-to-sopa-pipa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Plugins Coming Soon</title>
		<link>http://wpninjas.net/2011/12/new-plugins-coming-soon/</link>
		<comments>http://wpninjas.net/2011/12/new-plugins-coming-soon/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 16:52:33 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1028</guid>
		<description><![CDATA[Even though it&#8217;s the holidays we&#8217;ve been working hard with some new plugins. Two new WordPress plugins to be exact. We hope to have them ready before the close of 2011. UPDATE: Do to a recent unfortunate personal event we &#8230; <a href="http://wpninjas.net/2011/12/new-plugins-coming-soon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Even though it&#8217;s the holidays we&#8217;ve been working hard with some new plugins. Two new WordPress plugins to be exact. We hope to have them ready before the close of 2011.</p>
<p><strong>UPDATE:</strong> Do to a recent unfortunate personal event we have not been able to complete these plugins. Be looking for them next week.</p>
<h2>Ninja Announcements</h2>
<p>This is already a free plugin in the WordPress Repository but it&#8217;s getting a fresh update of code and UI. We are also adding a ton of new features for our PRO version.</p>
<p>This plugin make it easy to create announcements outside the flow of you usual blog posts. That can be set to show and hide on a specific schedule, display conditionally on specific content, and be placed anywhere within your template or widget areas, and much more.</p>
<p>And of course we will be dreaming up many more features in the future.</p>
<h2>Ninja Pages, Categories, and Tags</h2>
<p>This plugin is a collection of various functionality that we&#8217;ve needed on many projects and I suspect so have many of you.</p>
<p>Things like adding category, tag, or excerpt abilities to your pages. Adding pages to category or tag archives. Or easily displaying children pages on their parent like an archive. These and many, many more features are coming in this very simple but very handy plugin.</p>
<p>Be looking for these over the next week and Happy Holidays to everyone.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2011/12/new-plugins-coming-soon/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>What should or shouldn&#8217;t be included in a WordPress eCommerce Plugin</title>
		<link>http://wpninjas.net/2011/12/building-ecommerce-plugin/</link>
		<comments>http://wpninjas.net/2011/12/building-ecommerce-plugin/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 19:08:46 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Ideas]]></category>

		<guid isPermaLink="false">http://wpninjas.net/?p=1003</guid>
		<description><![CDATA[We we redesigned the site for our new business structure one of the things we needed was an eCommerce solution. Our needs were pretty simple but perhaps pretty specific as well. We were looking for the following (some may be &#8230; <a href="http://wpninjas.net/2011/12/building-ecommerce-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We we redesigned the site for our new business structure one of the things we needed was an eCommerce solution. Our needs were pretty simple but perhaps pretty specific as well. We were looking for the following (some may be outside the realm of a basic eCommerce solution):</p>
<ul>
<li>Easily maintain subscription based products</li>
<li>Easy PayPal checkout</li>
<li>No template&#8217;s &#8211; we wanted something that could be easily integrated into the pages we already were creating.</li>
<li>Restrict content based on subscriptions</li>
</ul>
<p>That was about it. The first two are pretty basic and the last might be a more specialized case. We tried several plugins as to not reinvent the wheel but found most of them to be either very buggy, bloated, or just plain broken. Some might have worked but we would have had to dug through all the code to figure out how to make it do what we actually needed. This led us to a simple conclusion; we needed to build our own.</p>
<p>So quick and dirty I threw something together that does everything we needed. But now, after all that work, we think it would be nice to build on it and release a fully functional eCommerce plugin. Here is where you come in.</p>
<p>In the comments share your opinions of what should or shouldn&#8217;t be in such a plugin? What frustrations have you encountered when trying to implement an eCommerce solution? What kinds of things would describe a complete success in such a solution?</p>
<p>We want to build this for you and so what you want is the most important thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpninjas.net/2011/12/building-ecommerce-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

