<?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>Designer Sandbox &#187; Wordpress</title>
	<atom:link href="http://www.designersandbox.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designersandbox.com</link>
	<description>Online Tips for Web Developer/Designer</description>
	<lastBuildDate>Thu, 26 Jan 2012 09:33:26 +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>WordPress &#8211; Restricting Personal IPs on All in One Adsense and YPN!</title>
		<link>http://www.designersandbox.com/wordpress/wordpress-restricting-personal-ips-on-all-in-one-adsense-and-ypn/</link>
		<comments>http://www.designersandbox.com/wordpress/wordpress-restricting-personal-ips-on-all-in-one-adsense-and-ypn/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 03:57:44 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.designersandbox.com/?p=1378</guid>
		<description><![CDATA[This hack is to restrict personal IPs on All in One Adsense and YPN! extension for wordpress. The reason to add this code(hack) in, it&#8217;s because alot of the isp are using dynamic ips, or your company may only have a single ip sharing to thousands of employee. This is our current situation, and you [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-1378"><p>This hack is to restrict personal IPs on All in One Adsense and YPN! extension for wordpress. The reason to add this code(hack) in, it&#8217;s because alot of the isp are using dynamic ips, or your company may only have a single ip sharing to thousands of employee. This is our current situation, and you don&#8217;t know how much your employee &#8220;LOVED&#8221; you by spam clicking on the links. This will hurt you if google decide that you are spamming on the ads.</p>
<p>First open the file &#8220;all-in-one-adsense-and-ypn.php&#8221; under wp-content/plugins/all-in-one-adsense-and-ypn/ and search for the following line of code.</p>
<pre class="brush: php;">
global $user_level, $ai_loadnetwork;
</pre>
<p>above this line of code add the following code in, and change &#8220;Y.O.U.RIP&#8221;, &#8220;YOU.R.SECOND.IP&#8221; to your own ips. Use commas for multiple ips.<br />
<span id="more-1378"></span></p>
<pre class="brush: php;">
$ips = array(&quot;Y.O.U.RIP&quot;, &quot;YOU.R.SECOND.IP&quot;); //Personal IPS by DesignerSandbox.com
$isFound = in_array($_SERVER['REMOTE_ADDR'], $ips);//Personal IPS by DesignerSandbox.com
if ($isFound) { return &quot;&quot;; } //Personal IPS by DesignerSandbox.com
  global $user_level, $ai_loadnetwork;
</pre>
<p>Let&#8217;s say you had insert the adsense code statically by using &#8220;Executable PHP widget&#8221; or other place like header or footer. You can also use the following code to eliminate ips you prefer.</p>
<pre class="brush: php;">
&lt;?php
$ips = array(&quot;Y.O.U.RIP&quot;, &quot;YOU.R.SECOND.IP&quot;); //Personal IPS by DesignerSandbox.com
$isFound = in_array($_SERVER['REMOTE_ADDR'], $ips); //Personal IPS by DesignerSandbox.com
if (!$isFound ) {
 ?&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-8856908794260554&quot;;
/* 300x250, created 9/20/10 */
google_ad_slot = &quot;4607888938&quot;;
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;?
 }
?&gt;
</pre>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=1378&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/announcement/designersandbox-roadmap-on-post-it/" title="DesignerSandbox Roadmap on post-it">DesignerSandbox Roadmap on post-it</a> (3)</li><li><a href="http://www.designersandbox.com/joomla/adding-multiple-attachment-for-joomla-k2-component-according-to-the-number-of-joomfishs-language/" title="Adding Multiple Attachment for Joomla K2 Component according to the number of JoomFish&#8217;s language hack">Adding Multiple Attachment for Joomla K2 Component according to the number of JoomFish&#8217;s language hack</a> (1)</li><li><a href="http://www.designersandbox.com/magento/installing-magento-version-1-4-2-0-on-icdsoft/" title="Installing Magento [version 1.4.2.0] on ICDSoft">Installing Magento [version 1.4.2.0] on ICDSoft</a> (4)</li><li><a href="http://www.designersandbox.com/code/how-to-embed-youtube-video-within-the-facebook-fbml-tabs/" title="How to embed YouTube Video within the Facebook fbml tabs">How to embed YouTube Video within the Facebook fbml tabs</a> (6)</li><li><a href="http://www.designersandbox.com/magento/how-to-completely-disable-magento-module/" title="How to completely disable Magento module">How to completely disable Magento module</a> (1)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/wordpress-restricting-personal-ips-on-all-in-one-adsense-and-ypn/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding style to your read more link (the_content)</title>
		<link>http://www.designersandbox.com/wordpress/adding-style-to-your-read-more-link-the_content/</link>
		<comments>http://www.designersandbox.com/wordpress/adding-style-to-your-read-more-link-the_content/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 05:20:32 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://bizlite.designersandbox.com/?p=143</guid>
		<description><![CDATA[In this post we are going to do a simple make over of the &#60;-more-&#62; link/button. We are going to add in a style class in this link. Your php code The php code in your index.php file should look something similar, if you have any question about the the_content coding problem, you can view [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-143"><p><img class="alignnone size-full wp-image-299" title="introduction" src="http://www.designersandbox.com/wp-content/uploads/2009/11/introduction6.png" alt="introduction" width="500" height="300" /></p>
<p>In this post we are going to do a simple make over of the &lt;-more-&gt; link/button. We are going to add in a style class in this link.<br />
<span id="more-143"></span></p>
<div class="steps">
<h3>Your php code</h3>
<p>The php code in your index.php file should look something similar, if you have any question about the <code>the_content</code> coding problem, you can view the document at <a href="http://codex.wordpress.org/Customizing_the_Read_More">here</a>.</p>
<pre class="brush: php;">
&lt;div class=&quot;entry&quot;&gt;
     &lt;?php the_content('Continue Reading &amp;raquo;'); ?&gt;
&lt;/div&gt;
</pre>
<p>This is just something we have, a simple word changes for <code>the_content</code>, of course you can change the &#8216;Continue Reading »&#8217; to anything you want.</div>
<div class="steps">
<h3>HTML code</h3>
<p>Let&#8217;s look at the html code from the source of your website, by looking at this we know that this is a simple a link tag that have a <code>more-link</code> class in it. So in our css we can modify it to look different to other a link tag. Next we would like to transform the style to something more appealing to the reader (kinda like a article separator).<br />
<img class="alignnone size-full wp-image-301" title="transform" src="http://www.designersandbox.com/wp-content/uploads/2009/11/transform.png" alt="transform" width="500" height="300" /></p>
<pre class="brush: xml;">
&lt;a class=&quot;more-link&quot; href=&quot;http://www.designersandbox.com/wordpress/feedburner-for-your-wordpress/#more-270&quot;&gt;Continue Reading »&lt;/a&gt;
</pre>
</div>
<div class="steps">
<h3>Adding CSS code to your a class more-link</h3>
<p>By adding this following code to your <code>a</code> tag <code>more-link</code> class, the button will be created. Isn&#8217;t this easy. From this css, you will have the state of <code>:link</code> <code>:visited</code> and <code>:hover</code>, this is an all in one css for your read-more link. ;-P</p>
<pre class="brush: css;">
a.more-link{
	background:#699eb6;
	padding:2px 7px;
	margin: 0;
	margin:20px 0;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	font-style:italic;
	font-weight:bold;
	padding:4px 20px;
}
a:link.more-link,
a:visited.more-link{
	color:#c6c6c6;
	text-decoration:none;
	display:inline-block;
	margin-bottom:5px;
	font-size:1.5em;
}
a:hover.more-link{
	color:#47798f;
	background:#d9d9d9;
	text-decoration:none;
}
</pre>
</div>
<p>I hope you have enjoyed this post, be sure to subscribe to my rss feed by click the subscribe button at the top.</p>
<p>Good Luck!</p>
<p>Remember to subscribe to our RSS feed.</p>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=143&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/announcement/designersandbox-roadmap-on-post-it/" title="DesignerSandbox Roadmap on post-it">DesignerSandbox Roadmap on post-it</a> (3)</li><li><a href="http://www.designersandbox.com/wordpress/adding-a-top-navigation-on-wordpress/" title="Adding a top navigation on wordpress">Adding a top navigation on wordpress</a> (4)</li><li><a href="http://www.designersandbox.com/wordpress/page-navigation-for-your-wordpress/" title="Adding a Page Navigation to your Wordpress">Adding a Page Navigation to your Wordpress</a> (4)</li><li><a href="http://www.designersandbox.com/wordpress/adding-style-to-your-tags/" title="Adding Style to your TAGS for Wordpress">Adding Style to your TAGS for Wordpress</a> (0)</li><li><a href="http://www.designersandbox.com/code/centering-a-div-block-without-the-width-using-pure-css-all-browser/" title="Centering a div block without the width using pure CSS (All Browser)">Centering a div block without the width using pure CSS (All Browser)</a> (0)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/adding-style-to-your-read-more-link-the_content/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Feedburner for your WordPress</title>
		<link>http://www.designersandbox.com/wordpress/feedburner-for-your-wordpress/</link>
		<comments>http://www.designersandbox.com/wordpress/feedburner-for-your-wordpress/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 09:15:45 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.designersandbox.com/?p=270</guid>
		<description><![CDATA[Creating your WordPress feed (self-hosted WordPress) For the best results using FeedBurner with your self-hosted WordPress site, we recommend the FeedBurner FeedSmith plugin (originally authored by the legendary Steve Smith). The plugin will detect all ways to access your feed (e.g. http://www.yoursite.com/feed/ or http://www.yoursite.com/wp-rss2.php, etc.), and redirect them to your FeedBurner feed so you can [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-270"><p><img class="alignnone size-full wp-image-294" title="introduction" src="http://www.designersandbox.com/wp-content/uploads/2009/11/introduction5.png" alt="introduction" width="500" height="300" /></p>
<h3>Creating your WordPress feed (self-hosted WordPress)</h3>
<p>For the best results using FeedBurner with your self-hosted WordPress site, we recommend the FeedBurner FeedSmith plugin (originally authored by the legendary Steve Smith). The plugin will detect all ways to access your feed (e.g. http://www.yoursite.com/feed/ or http://www.yoursite.com/wp-rss2.php, etc.), and redirect them to your FeedBurner feed so you can track every possible subscriber. It will forward for your main posts feed and optionally, your main comments feed as well.<br />
<span id="more-270"></span><br />
The plugin is currently compatible with downloadable WordPress versions 1.5 through 2.5. (Please note that “tag” feeds in later WordPress versions are not supported.)</p>
<div class="steps">
<h3>Installation</h3>
<ol>
<li>Copy the FeedBurner_FeedSmith_Plugin.php file into your default WordPress<br />
plugin directory wp-content/plugins/<img class="alignnone size-full wp-image-280" title="upload" src="http://www.designersandbox.com/wp-content/uploads/2009/11/upload1.png" alt="upload" width="500" height="300" /></li>
<li>Activate the plugin by logging into your WordPress administration area, going<br />
to Plugins, then clicking Activate at the end of the ‘FeedBurner FeedSmith’<br />
row.<img class="alignnone size-full wp-image-282" title="activate" src="http://www.designersandbox.com/wp-content/uploads/2009/11/activate.png" alt="activate" width="500" height="300" /></li>
<li>Begin the configuration by going to Options then clicking on the FeedBurner<br />
submenu.</li>
<li>Follow the links to create your FeedBurner feeds, or if they already exist,<br />
simply fill in their URLs in the boxes provided.<br />
NOTE: If you’re using the previous version of the plugin with the specific<br />
feedburner URL, that URL is no longer available. You will have to reset your<br />
FeedBurner feeds to point to your standard blog feed address. Additionally,<br />
you should examine any .htaccess files that control access to your WordPress<br />
installation&#8217;s content and remove any existing references that forward or<br />
redirect your feeds, as these references will no longer be necessary.</li>
<li>Verify your URLs in the boxes, and click Save.</li>
<li>At this point, all your feed URLs should be redirecting to FeedBurner.</li>
</ol>
</div>
<div class="steps">
<h3>Also use feedburner to handle all your comments.</h3>
<p>Usually your comment feed link should be as follow.</p>
<p>http://www.YOURSITE.com/comments/feed/</p>
<p><img class="alignnone size-full wp-image-284" title="comments_feed" src="http://www.designersandbox.com/wp-content/uploads/2009/11/comments_feed.png" alt="comments_feed" width="500" height="300" /></p>
<p>Simply submit this link to feedburner and enter it at the plugin configuration panel.<br />
<img class="alignnone size-full wp-image-285" title="comments" src="http://www.designersandbox.com/wp-content/uploads/2009/11/comments.png" alt="comments" width="500" height="300" /></p>
</div>
<div class="steps">
<h3>Adding Feed Counter</h3>
<p>If you want to give your readers the option of getting your blog updates via email, it is very easy when using FeedBurner.<br />
<img class="alignnone size-full wp-image-291" title="feedcount" src="http://www.designersandbox.com/wp-content/uploads/2009/11/feedcount.png" alt="feedcount" width="500" height="300" /></p>
<ol>
<li>Login to your feedburner.com account, go to the Publicize tab, and click FeedCount, activate the option, and add the code to your website.</li>
<li>Simply choose the color scheme from a color picker.</li>
<li>If you want to add your counter to your blog, one easy way to do it is to go to your WordPress Dashboard.  Under Appearance click Widget.</li>
<li>Add a new text widget.</li>
<li>Copy the FeedBurner Code to your text box.</li>
<li>Save your changes, and your done.</li>
<li>Another way is to edit your header.php or sidebar.php file, depends where you want it to be at.</li>
</ol>
<p><img class="alignnone size-full wp-image-292" title="feed_copy" src="http://www.designersandbox.com/wp-content/uploads/2009/11/feed_copy.png" alt="feed_copy" width="500" height="300" /></p>
</div>
<div class="steps">
<h3>Adding Email Subscriptions</h3>
<p><img class="alignnone size-full wp-image-288" title="email_activate" src="http://www.designersandbox.com/wp-content/uploads/2009/11/email_activate.png" alt="email_activate" width="500" height="300" /><br />
If you want to give your readers the option of getting your blog updates via email, it is very easy when using FeedBurner.</p>
<ol>
<li>Login to your feedburner.com account, go to the Publicize tab, and click Email Subscriptions, activate the option, and add the code to your website.</li>
<li>You can also choose to add a link.</li>
<li>If you want to add your subscription form to your blog, one easy way to do it is to go to your WordPress Dashboard.  Under Appearance click Widget.</li>
<li>Add a new text widget.</li>
<li>Copy the FeedBurner Code to your text box.</li>
<li>Save your changes, and your done.</li>
</ol>
<p><img class="alignnone size-full wp-image-289" title="email_copy" src="http://www.designersandbox.com/wp-content/uploads/2009/11/email_copy.png" alt="email_copy" width="500" height="300" /></p>
</div>
<p>I hope you have enjoyed this post, be sure to subscribe to my rss feed by click the subscribe button at the top, and while your at it, sign up for my newsletter, which includes even more valuable resources that I will not be posting here.</p>
<p>Good Luck!</p>
<p>Remember to subscribe to our RSS feed.</p>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=270&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/wordpress/adding-breadcrumbs-to-your-wordpress/" title="Adding Breadcrumbs to Your WordPress">Adding Breadcrumbs to Your WordPress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/adding-square-user-photo-to-an-author/" title="Adding Square User Photo to an Author for Wordpress">Adding Square User Photo to an Author for Wordpress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/author-image-plugin-for-wordpress/" title="Author Image Plugin For WordPress">Author Image Plugin For WordPress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/syntax-highlighter-for-wordpress/" title="Syntax Highlighter for Wordpress">Syntax Highlighter for Wordpress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/displaying-related-posts/" title="Displaying Code in Color on your wordpress">Displaying Code in Color on your wordpress</a> (2)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/feedburner-for-your-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adding a top navigation on wordpress</title>
		<link>http://www.designersandbox.com/wordpress/adding-a-top-navigation-on-wordpress/</link>
		<comments>http://www.designersandbox.com/wordpress/adding-a-top-navigation-on-wordpress/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 01:35:04 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[page navigation]]></category>

		<guid isPermaLink="false">http://www.designersandbox.com/?p=225</guid>
		<description><![CDATA[What is Sliding doors? Sliding doors CSS hack had been around for a long while. As this tutorial will walk you through how to add this hack to your site. The reason to add this quick and easy hack is because WordPress core functions wp_list_pages() and wp_list_categories() doesn&#8217;t support the function to add a span [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-225"><p><img class="alignnone size-full wp-image-228" title="introduction" src="http://www.designersandbox.com/wp-content/uploads/2009/11/introduction4.png" alt="introduction" width="500" height="300" /></p>
<div class="infobox">
<h3>What is Sliding doors?</h3>
<p>Sliding doors CSS hack had been around for a long while. As this tutorial will walk you through how to add this hack to your site. The reason to add this quick and easy hack is because WordPress core functions wp_list_pages() and wp_list_categories() doesn&#8217;t support the function to add a <code>span</code> tag in this css menu. This hack is to insert the extra span which needed to create the menu.</p>
</div>
<p><span id="more-225"></span></p>
<div class="steps">
<h3>Task needed to complete.</h3>
<ol>
<li>Inserting PHP code to your header.php file</li>
<li>Inserting the CSS to your style sheet</li>
</ol>
</div>
<div class="steps">
<h3>The Sliding doors top navigation hack for WordPress.</h3>
<p>This is a strict hack to enhance the <code>wp_list_pages()</code> or <code>wp_list_categories()</code>, NO CHANGE OF CORE. Since wordpress update there security issue quite frequently, it is not ideal to change the core file period. In the below php code we will be using a regular expression of php <code>preg_replace()</code>.</p>
<p>To create the menu we are going to use, let&#8217;s paste in the below code for your pages or categories in your header.php WordPress theme.</p>
</div>
<div class="steps">
<h3>php code</h3>
<p><strong>To list your Pages:</strong></p>
<pre class="brush: php;">
&lt;div id=&quot;dsnav&quot; class=&quot;clearfix&quot;&gt;
    &lt;ul id=&quot;cssmenu&quot;&gt;
    &lt;li&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/&quot;&gt;&lt;span&gt;Home&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;?php echo preg_replace('@\&lt;li([^&gt;]*)&gt;\&lt;a([^&gt;]*)&gt;(.*?)\&lt;\/a&gt;@i', '&lt;li$1&gt;&lt;a$2&gt;&lt;span&gt;$3&lt;/span&gt;&lt;/a&gt;', wp_list_pages('echo=0&amp;orderby=name&amp;exlude=181&amp;title_li=&amp;depth=1')); ?&gt;
    &lt;/ul&gt;
&lt;/div&gt;
</pre>
</div>
<div class="steps">
<h3>php code</h3>
<p><strong>To list your Categoreis:</strong></p>
<pre class="brush: php;">
&lt;div id=&quot;dsnav&quot; class=&quot;clearfix&quot;&gt;
    &lt;ul id=&quot;cssmenu&quot;&gt;
    &lt;li&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/&quot;&gt;&lt;span&gt;Home&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;?php echo preg_replace('@\&lt;li([^&gt;]*)&gt;\&lt;a([^&gt;]*)&gt;(.*?)\&lt;\/a&gt;@i', '&lt;li$1&gt;&lt;a$2&gt;&lt;span&gt;$3&lt;/span&gt;&lt;/a&gt;', wp_list_categories('echo=0&amp;orderby=name&amp;exlude=181&amp;title_li=&amp;depth=1')); ?&gt;
    &lt;/ul&gt;
&lt;/div&gt;
</pre>
</div>
<div class="steps">
<h3>After the code</h3>
<p>After the code had successfully been inserted to your code, you should have something similar to the image below.<br />
<img class="alignnone size-full wp-image-244" title="step1" src="http://www.designersandbox.com/wp-content/uploads/2009/11/step1.png" alt="step1" width="500" height="300" /><br />
But now you will be saying, this is a bit ugly, I want something similar to your site or other website. So now we will need to include some css to get rid of the bullets and styling it like a menu. Let&#8217;s now take a look at the menu structure from the source code.</p>
</div>
<div class="steps">
<h3>css style</h3>
<p>For the one who doesn&#8217;t want to know the details of the css, who just want the code, here&#8217;s the whole chunk.</p>
<pre class="brush: css;">
#dsnav {
	float:left;
	overflow:visible;
	padding:0;
	position:relative;
	width:100%;
	background:#999;
}
#cssmenu ul {
	margin: 0; /* all lists */
	padding: 0;
}
#cssmenu {
	height:30px;
	margin:0;
	overflow:hidden;
	padding:0 20px;
}
#cssmenu li {
	display:block;
	float:left;
	margin:4px 10px 0 0;
	padding:0;
}
#cssmenu li a {
	background:#CCC;
	-moz-border-radius:5px;
	-webkit-border-radius: 5px;
	color:#000000;
	display:block;
	font-size:80%;
	font-weight:normal;
	padding:4px 6px;
	text-decoration:none;
	text-transform:uppercase;
}
li.current-cat a{
	background:#000!important;
	color:#FFF!important;
}
#cssmenu li a:hover {
	background:#000;
	color:#FFF
}
li.current-cat a:hover{
	background:#333!important;
	color:#ccc!important;
}
</pre>
</div>
<h2>css style explanation</h2>
<div class="steps">The <code>#dsnav</code> id tag simply just added a 100% background to the back of your menu. This is basically the very bottom layer for your menu.</p>
<pre class="brush: css;">
#dsnav {

	float:left;
	padding:0;
	margin:0;
	width:100%;
	background:#999;
}
.clearfix{
	clear:both;
}
</pre>
</div>
<div class="steps">The next step is to disable the bullets and inline all the menu list by block, and also we will want to transform all the text into uppercase.</p>
<pre class="brush: css;">
#cssmenu li {
	display:block;
	float:left;
	margin:4px 10px 0 0;
	padding:0;
	text-transform:uppercase;
}
</pre>
</div>
<div class="steps">Next we will want to change the look of the a class.</p>
<ol>
<li>Add a background color</li>
<li>Add the round corner for firefox and sarafi, IE are just not welcome for this class(sorry for the IE lover)</li>
<li>Control the text color</li>
<li>Display it in block, so this will clear off the spacing problem</li>
<li>Create the font size, weight</li>
<li>Add padding to your a tag so it is more roomy inside.</li>
</ol>
<pre class="brush: css;">
#cssmenu li a {
	background:#CCC;
	-moz-border-radius:5px;
	-webkit-border-radius: 5px;
	color:#000000;
	display:block;
	font-size:0.8em;
	font-weight:normal;
	text-decoration:none;
	padding:4px 6px;
}
</pre>
<p>After the code you will have something similar to this.<br />
<img class="alignnone size-full wp-image-258" title="step2" src="http://www.designersandbox.com/wp-content/uploads/2009/11/step2.png" alt="step2" width="500" height="300" /></div>
<div class="steps">The next step is to disable the bullets and inline all the menu list by block, and also we will want to transform all the text into uppercase.</p>
<pre class="brush: css;">
#cssmenu li {
	display:block;
	float:left;
	margin:4px 10px 0 0;
	padding:0;
	text-transform:uppercase;
}
</pre>
</div>
<div class="steps">Next step, we will want to setup the spacing around the ul and the main cssmenu it tag.</p>
<pre class="brush: css;">
#cssmenu ul {
	margin: 0; /* all lists */
	padding: 0;
}
#cssmenu {
	height:30px;
	margin:0;
	overflow:hidden;
	padding:0 20px;
}
</pre>
<p><img class="alignnone size-full wp-image-261" title="step3" src="http://www.designersandbox.com/wp-content/uploads/2009/11/step3.png" alt="step3" width="500" height="300" /><br />
You should have some breathing space to your menu now.</div>
<div class="steps">Next step, we will want to add a hover state to the menu, so user will know where they are at. And add a current state to your category when user click on the link.</p>
<pre class="brush: css;">
li.current-cat a{
	background:#000!important;
	color:#FFF!important;
}
#cssmenu li a:hover {
	background:#000;
	color:#FFF
}
li.current-cat a:hover{
	background:#333!important;
	color:#ccc!important;
}
</pre>
<p><img class="alignnone size-full wp-image-263" title="final" src="http://www.designersandbox.com/wp-content/uploads/2009/11/final.png" alt="final" width="500" height="300" /><br />
Now you have the basic knowledge of css, do play around with your style. If you have any problem with css, please leave us a comment.</div>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=225&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/announcement/designersandbox-roadmap-on-post-it/" title="DesignerSandbox Roadmap on post-it">DesignerSandbox Roadmap on post-it</a> (3)</li><li><a href="http://www.designersandbox.com/wordpress/page-navigation-for-your-wordpress/" title="Adding a Page Navigation to your Wordpress">Adding a Page Navigation to your Wordpress</a> (4)</li><li><a href="http://www.designersandbox.com/wordpress/wordpress-restricting-personal-ips-on-all-in-one-adsense-and-ypn/" title="Wordpress &#8211; Restricting Personal IPs on All in One Adsense and YPN!">Wordpress &#8211; Restricting Personal IPs on All in One Adsense and YPN!</a> (1)</li><li><a href="http://www.designersandbox.com/joomla/virtuemart-product-categories-module-hack-extra-span-please/" title="Virtuemart Product Categories Module Hack (extra span PLEASE!)">Virtuemart Product Categories Module Hack (extra span PLEASE!)</a> (3)</li><li><a href="http://www.designersandbox.com/wordpress/adding-style-to-your-read-more-link-the_content/" title="Adding style to your read more link (the_content)">Adding style to your read more link (the_content)</a> (6)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/adding-a-top-navigation-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Easy steps to install intensedebate to your wordpress</title>
		<link>http://www.designersandbox.com/wordpress/easy-steps-to-install-intensedebate-to-your-wordpress/</link>
		<comments>http://www.designersandbox.com/wordpress/easy-steps-to-install-intensedebate-to-your-wordpress/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 10:06:20 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[intensedebate]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.designersandbox.com/?p=188</guid>
		<description><![CDATA[If the regular wordpress comments system are not enough for your viewer, you may want to take a look at intense debate system. It is a system that does magic in the field of comments. With much greater management and functions with Intense Debate, this is a great module that makes organizing your comments much [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-188"><p><img class="alignnone size-full wp-image-193" title="introduction" src="http://www.designersandbox.com/wp-content/uploads/2009/11/introduction3.png" alt="introduction" width="500" height="300" /></p>
<p>If the regular wordpress comments system are not enough for your viewer, you may want to take a look at intense debate system. It is a system that does magic in the field of comments.</p>
<p>With much greater management and functions with Intense Debate, this is a great module that makes organizing your comments much easier.<br />
<span id="more-188"></span></p>
<ul>
<li>Comment Threading</li>
<li>Reply-By-Email</li>
<li>Email Notifications</li>
<li>Commenter Profiles</li>
<li>Moderation/Blacklisting</li>
<li>Reputation Points &amp; Comment Voting</li>
<li>Plugins API</li>
<li>OpenID</li>
<li>Widgets</li>
<li>Twitter</li>
<li>RSS Readers &amp; Tracking</li>
</ul>
<div class="infobox">
<h3>What is IntenseDebate?</h3>
<p>IntenseDebate is the premier commenting system available on the Internet for blogs and websites. IntenseDebate comments enhances and encourages conversation on your blog or website. With IntenseDebate you can give your blog readers the opportunity to better engage your blog&#8217;s content and each other. ID offers numerous features that makes improves the commenting experience, like our Reply By Email functionality which enables you to reply to and moderate comments via email!</p>
<p>IntenseDebate brings the value of insightful comments back into the light. No longer do you have to sort through an endless maze of sub-par comments and responses. IntenseDebate organizes your comments allowing your readers to express their opinions and thoughts. With IntenseDebate&#8217;s reputation system and comment voting, you&#8217;re able to quickly find the worthwhile comments and commenters, while cutting through all of the other nonsense. Subscribe to comments with our RSS readers support. Give your blog an entire new dimension of interaction with IntenseDebate!</p>
<p><a href="http://www.intensedebate.com">Software Link</a></p>
</div>
<div class="steps">
<h3>Installing IntenseDebate on your blog</h3>
<p><img class="alignnone size-full wp-image-195" title="signup" src="http://www.designersandbox.com/wp-content/uploads/2009/11/signup.png" alt="signup" width="500" height="300" /></p>
<p><img class="alignnone size-full wp-image-197" title="signup_screen" src="http://www.designersandbox.com/wp-content/uploads/2009/11/signup_screen.png" alt="signup_screen" width="500" height="326" /><br />
Fill in your information, and click the &#8220;I want to install IntenseDebate on my blog or website&#8221; and then click the Sigu up button to continue. IntenseDebate system will send you an automated confirmation email for you to validate the email address. Once that is finish, please login to the indetensedebate <a href="http://www.intensedebate.com/userDash">dashboard</a>.</p>
<p><img class="alignnone size-full wp-image-199" title="add_blog" src="http://www.designersandbox.com/wp-content/uploads/2009/11/add_blog.png" alt="add_blog" width="500" height="326" /><br />
Click on the +Add blog/site button on the top menu bar.</p>
<p><img class="alignnone size-full wp-image-201" title="site" src="http://www.designersandbox.com/wp-content/uploads/2009/11/site.png" alt="site" width="500" height="326" /><br />
Type in the web address where your blog located at.</p>
<p><img class="alignnone size-full wp-image-203" title="wordpress" src="http://www.designersandbox.com/wp-content/uploads/2009/11/wordpress.png" alt="wordpress" width="500" height="326" /><br />
Click on the wordpress icon, but this depends on which blog software you are using, but for this tutorial I will walk you through with wordpress.<br />
Drop us a note if you are having trouble with other software, we will try to help.</p>
</div>
<div class="steps">
<h3>Instructions</h3>
<p><img class="alignnone size-full wp-image-206" title="download" src="http://www.designersandbox.com/wp-content/uploads/2009/11/download1.png" alt="download" width="500" height="326" /></p>
<ol>
<li><a href="http://downloads.wordpress.org/plugin/intensedebate.zip">Download the plugin. IntenseDebate</a>. Be sure to click on the link of that page to get the latest plugin available from the IntenseDebate Team</li>
<li>Upload the file to the <code>wp-content/plugins</code> folder on your blog. (<a href="http://codex.wordpress.org/Managing_Plugins">more info</a>)</li>
<li>You need to activate the IntenseDebate plugin in order to install the comment system. Go to the Plugins menu item in the left sidebar and find IntenseDebate Comments in the list.Click <strong>Activate</strong>.</li>
<li>From the backend of your wordpress, click on the left panel, Settings &gt; IntenseDebate</li>
</ol>
</div>
<div class="steps">
<h3>Setting Up IntenseDebate</h3>
<p><img class="alignnone size-full wp-image-210" title="settings1" src="http://www.designersandbox.com/wp-content/uploads/2009/11/settings1.png" alt="settings1" width="500" height="326" /><br />
In this screen, you will need to enter the account information. either by email|password or username|user key, any other combination will not work. User Key can be view at your IntenseDebate .</p>
</div>
<div class="steps">
<h3>How to obtain your IntenseDebate User Key</h3>
<p><img class="alignnone size-full wp-image-211" title="user_key" src="http://www.designersandbox.com/wp-content/uploads/2009/11/user_key.png" alt="user_key" width="500" height="326" /></p>
</div>
<div class="steps">
<h3>Importing your existing comments to IntenseDebate</h3>
<p><img class="alignnone size-full wp-image-212" title="import" src="http://www.designersandbox.com/wp-content/uploads/2009/11/import.png" alt="import" width="500" height="326" /><br />
Import your WordPress comments into IntenseDebate. For your old WordPress comments to show up in the plugin, they need to be imported to give them all the IntenseDebate comment goodness.</p>
<p>The process usually takes less than a few hours, but times may vary depending on how many comments you&#8217;re importing. You&#8217;ll be notified via email when the import is complete.</p>
<p><strong>Note:</strong> Until your comments are imported they will not show up in the IntenseDebate comment system. Don&#8217;t worry though, your comments are still safe and will be ready as soon as the import completes.</p>
<p>By default the Checkbox for <code>Use IntenseDebate's default moderation settings (recommended)</code> should be check. Please leave as is.<br />
By enabling this option, IntenseDebate will add commonly-abused keywords and phrases to your moderation settings, so that you can avoid spam in your comments. You can always edit/delete these values later if you don&#8217;t want them any more.</p>
<p>Once you click on the link, seat back and relax.<br />
<img class="alignnone size-full wp-image-219" title="importing" src="http://www.designersandbox.com/wp-content/uploads/2009/11/importing.png" alt="importing" width="500" height="326" /><br />
<img class="alignnone size-full wp-image-220" title="finalizing" src="http://www.designersandbox.com/wp-content/uploads/2009/11/finalizing.png" alt="finalizing" width="500" height="326" /><br />
<img class="alignnone size-full wp-image-217" title="done" src="http://www.designersandbox.com/wp-content/uploads/2009/11/done.png" alt="done" width="500" height="326" /></p>
</div>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=188&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/wordpress/feedburner-for-your-wordpress/" title="Feedburner for your WordPress">Feedburner for your WordPress</a> (2)</li><li><a href="http://www.designersandbox.com/wordpress/page-navigation-for-your-wordpress/" title="Adding a Page Navigation to your Wordpress">Adding a Page Navigation to your Wordpress</a> (4)</li><li><a href="http://www.designersandbox.com/wordpress/adding-quicktag-to-the-html-editor-in-wordpress/" title="Adding QuickTag to the html Editor in Wordpress">Adding QuickTag to the html Editor in Wordpress</a> (3)</li><li><a href="http://www.designersandbox.com/wordpress/adding-breadcrumbs-to-your-wordpress/" title="Adding Breadcrumbs to Your WordPress">Adding Breadcrumbs to Your WordPress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/adding-square-user-photo-to-an-author/" title="Adding Square User Photo to an Author for Wordpress">Adding Square User Photo to an Author for Wordpress</a> (1)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/easy-steps-to-install-intensedebate-to-your-wordpress/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Adding a Page Navigation to your WordPress</title>
		<link>http://www.designersandbox.com/wordpress/page-navigation-for-your-wordpress/</link>
		<comments>http://www.designersandbox.com/wordpress/page-navigation-for-your-wordpress/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 09:32:16 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[page navigation]]></category>
		<category><![CDATA[pagenavi]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://bizlite.designersandbox.com/?p=151</guid>
		<description><![CDATA[Treating your user good is always a key for web development. By adding a page navigation is one important key to wordpress blogging. Let&#8217;s take a look at the big boys which uses page navigation in there blog style tuts/reviews. Smashing Magazine net tuts+ In this tutorials, I am going to guide you through on [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-151"><p>Treating your user good is always a key for web development. By adding a page navigation is one important key to wordpress blogging. Let&#8217;s take a look at the big boys which uses page navigation in there blog style tuts/reviews.</p>
<h4>Smashing Magazine</h4>
<p><img class="alignnone size-full wp-image-148" title="smashingmagazine" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/smashingmagazine.jpg" alt="smashingmagazine" width="500" height="300" /><br />
<span id="more-151"></span></p>
<h4>net tuts+</h4>
<p><img class="alignnone size-full wp-image-149" title="nettuts" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/nettuts.jpg" alt="nettuts" width="500" height="300" /></p>
<p>In this tutorials, I am going to guide you through on setting up your own page navigation on your wordpress.</p>
<div class="infobox">
<h3>Plugin Information</h3>
<p><strong>Author:</strong> <a href="http://lesterchan.net/">Lester &#8216;GaMerZ&#8217; Chan</a><br />
This plugin will add more advanced page navigation to your WordPress blog. If you like this translation please feel free to drop him a note of thank you, or maybe you would like to give him a token of gratitude. His paypal account is lesterchan@gmail.com<br />
<a href="http://lesterchan.net/wordpress/readme/wp-pagenavi.html">Readme</a> | <a href="http://lesterchan.net/wordpress/readme/wp-pagenavi.html">Download</a></p>
</div>
<div class="steps">
<h3>Task needed to complete.</h3>
<ol>
<li>Download and Install the plugin</li>
<li>Inserting the php code to your theme</li>
<li>Setting up your PageNavi plugin</li>
<li>Changing the CSS style on your PageNavi Plugin</li>
</ol>
</div>
<div class="steps">
<h3>Step 1 &#8211; Download the plugin</h3>
<p>First you will need to download the latest plugin that fit your wordpress version. You can download it from <a href="http://lesterchan.net/wordpress/readme/wp-pagenavi.html">here</a>.<br />
<img class="alignnone size-full wp-image-152" title="download" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/download.jpg" alt="download" width="500" height="300" /></p>
</div>
<div class="steps">
<h3>Step 2 &#8211; Installation</h3>
<p>There&#8217;s 2 way to install to the wordpress. 1. Upload the plugin from the admin panel of wordpress. Go to YOURDOMAIN.com/wp-admin, please login and go to the following section. <code>Plugins</code> &gt; <code>Add New</code> &gt; <code>Upload</code> &gt; select file to upload &gt; <code>Install Now</code><br />
<img class="alignnone size-full wp-image-163" title="installation" src="http://www.designersandbox.com/wp-content/uploads/2009/11/installation.png" alt="installation" width="500" height="300" /></p>
</div>
<div class="steps">
<h3>Step 3 &#8211; Coding</h3>
<p><img class="alignnone size-full wp-image-166" title="pagenavi_php" src="http://www.designersandbox.com/wp-content/uploads/2009/11/pagenavi_php.png" alt="pagenavi_php" width="500" height="300" /></p>
<pre class="brush: php;">
&lt;?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?&gt;
</pre>
<p>From the author site &#8220;Open wp-content/themes/&lt; YOUR THEME NAME &gt;/footer.php&#8221; You can put this code anywhere e.g. footer.php , but in this tutorial we are going to put it in the index.php file. Open wp-content/themes/&lt; YOUR THEME NAME &gt;/index.php.</p>
</div>
<div class="steps">
<h3>Step 4 &#8211; Settings</h3>
<p>Basically this page give you the possibility to change the way of display without touching any code. Feel free to test this around.<br />
<img class="alignnone size-full wp-image-169" title="pagenavi_settings" src="http://www.designersandbox.com/wp-content/uploads/2009/11/pagenavi_settings.png" alt="pagenavi_settings" width="500" height="300" /></p>
</div>
<div class="steps">
<h3>Step 5 &#8211; Settings</h3>
<p>Basically this page give you the possibility to change the way of display without touching any code. Feel free to test this around.<br />
<img class="alignnone size-full wp-image-169" title="pagenavi_settings" src="http://www.designersandbox.com/wp-content/uploads/2009/11/pagenavi_settings.png" alt="pagenavi_settings" width="500" height="300" /></p>
</div>
<div class="steps">
<h3>Step 6 &#8211; CSS Styling</h3>
<p>WP-PageNavi will load &#8216;<code>pagenavi-css.css</code>&#8216; from your theme&#8217;s directory if it exists. If it doesn&#8217;t exists, it will just load the default &#8216;pagenavi-css.css&#8217; that comes with WP-PageNavi. This will allow you to upgrade WP-PageNavi without worrying about overwriting your page navigation styles that you have created.</p>
<p>First, I will suggest you to make a copy of the css to your theme folder.<br />
In this tutorial, I will show you a simple way to change color and add a web2.0 gradient in your a tag.</p>
<p>First in your photoshop, create a new file called the number_bg.gif. you can download our <a href="http://www.designersandbox.com/wp-content/themes/bizlite/images/number_bg.gif">gif here</a>.</p>
<pre class="brush: css;">
.wp-pagenavi span, .wp-pagenavi a{background:url('images/number_bg.gif');}
</pre>
<p>The pagenavi class structure are base on <code>span</code> and <code>a</code> tag, so this css will create a background image on all related span and a tag within the class of wp-pagenavi.</p>
</div>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=151&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/wordpress/adding-a-top-navigation-on-wordpress/" title="Adding a top navigation on wordpress">Adding a top navigation on wordpress</a> (4)</li><li><a href="http://www.designersandbox.com/announcement/designersandbox-roadmap-on-post-it/" title="DesignerSandbox Roadmap on post-it">DesignerSandbox Roadmap on post-it</a> (3)</li><li><a href="http://www.designersandbox.com/wordpress/adding-style-to-your-read-more-link-the_content/" title="Adding style to your read more link (the_content)">Adding style to your read more link (the_content)</a> (6)</li><li><a href="http://www.designersandbox.com/wordpress/feedburner-for-your-wordpress/" title="Feedburner for your WordPress">Feedburner for your WordPress</a> (2)</li><li><a href="http://www.designersandbox.com/wordpress/easy-steps-to-install-intensedebate-to-your-wordpress/" title="Easy steps to install intensedebate to your wordpress">Easy steps to install intensedebate to your wordpress</a> (13)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/page-navigation-for-your-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adding Style to your TAGS for WordPress</title>
		<link>http://www.designersandbox.com/wordpress/adding-style-to-your-tags/</link>
		<comments>http://www.designersandbox.com/wordpress/adding-style-to-your-tags/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 06:49:24 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[round corner]]></category>
		<category><![CDATA[skin]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[the_tags]]></category>

		<guid isPermaLink="false">http://bizlite.designersandbox.com/?p=122</guid>
		<description><![CDATA[Let&#8217;s take a look at styling your tags on your blog. This article focus on the easy step to create a css driven class for your tags. Simply you can change it to any color, background color you want in it. Have fun with it. Original PHP Code Code to be changed, or you can [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-122"><p><img class="alignnone size-full wp-image-130" title="introduction" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/introduction2.png" alt="introduction" width="500" height="270" /></p>
<p>Let&#8217;s take a look at styling your tags on your blog. This article focus on the easy step to create a css driven class for your tags. Simply you can change it to any color, background color you want in it. Have fun with it.<br />
<span id="more-122"></span></p>
<h4>Original PHP Code</h4>
<p>Code to be changed, or you can search <code>the_tags</code> and replace your the_tags php code with the following code.</p>
<pre class="brush: php;">
&lt;?php the_tags( '&lt;p&gt;Tags: ', ', ', '&lt;/p&gt;'); ?&gt;
</pre>
<h4>Replace with the following</h4>
<p>The following code just simply added a div with <code>tags</code> class in it, so it will be easy for us to change the look and feel later on. Simply added a h6 tag for the Tags header, of course you can give any header as you prefer.</p>
<pre class="brush: php;">
&lt;?php the_tags( '&lt;div class=&quot;tags&quot;&gt;&lt;h6&gt;Tags: &lt;/h6&gt;', '', '&lt;/div&gt;'); ?&gt;
</pre>
<h4>CSS code to modify</h4>
<p>Here is the code that make the style work</p>
<div class="notice"><strong>Notice:</strong><br />
The round corner Only work on Firefox and Safari, under Internet Explorer will simply just display a gray block without the corner.</div>
<pre class="brush: css;">
.tags {padding: 10px;background:#eeeeee; border:1px solid #E0E0E0;}
.tags h6 {font-size:1.3em; border-bottom:dotted 1px #CCC; margin:0 0 10px 0;padding:0;}
.tags a:link, .tags a:visited{color:#699eb6; text-decoration:none; display:inline-block; margin-bottom:5px;font-size:0.9em;}
.tags a:hover{color:#47798f; background:#d9d9d9; text-decoration:none;}
.tags a{background:#c6c6c6; padding:2px 7px; margin: 0; margin-right:5px; -moz-border-radius: 4px; -webkit-border-radius: 4px;}
</pre>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=122&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/wordpress/adding-quicktag-to-the-html-editor-in-wordpress/" title="Adding QuickTag to the html Editor in Wordpress">Adding QuickTag to the html Editor in Wordpress</a> (3)</li><li><a href="http://www.designersandbox.com/announcement/designersandbox-roadmap-on-post-it/" title="DesignerSandbox Roadmap on post-it">DesignerSandbox Roadmap on post-it</a> (3)</li><li><a href="http://www.designersandbox.com/wordpress/adding-style-to-your-read-more-link-the_content/" title="Adding style to your read more link (the_content)">Adding style to your read more link (the_content)</a> (6)</li><li><a href="http://www.designersandbox.com/wordpress/adding-a-top-navigation-on-wordpress/" title="Adding a top navigation on wordpress">Adding a top navigation on wordpress</a> (4)</li><li><a href="http://www.designersandbox.com/wordpress/page-navigation-for-your-wordpress/" title="Adding a Page Navigation to your Wordpress">Adding a Page Navigation to your Wordpress</a> (4)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/adding-style-to-your-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding QuickTag to the html Editor in WordPress</title>
		<link>http://www.designersandbox.com/wordpress/adding-quicktag-to-the-html-editor-in-wordpress/</link>
		<comments>http://www.designersandbox.com/wordpress/adding-quicktag-to-the-html-editor-in-wordpress/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 09:02:11 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[quicktag]]></category>
		<category><![CDATA[write post]]></category>
		<category><![CDATA[Wysiwyg Editor]]></category>

		<guid isPermaLink="false">http://bizlite.designersandbox.com/?p=112</guid>
		<description><![CDATA[Often time when you edit the content, you would like to add a custom class or div/span to wrap your text. How do i add this QuickTag to the html editor in wordpress. WYSIWYG function in the wordpress include all the basic functions such as bold, italic, link and etc. WordPress refers thess buttons set [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-112"><p>Often time when you edit the content, you would like to add a custom class or div/span to wrap your text. How do i add this QuickTag to the html editor in wordpress. WYSIWYG function in the wordpress include all the basic functions such as bold, italic, link and etc. WordPress refers thess buttons set as Quicktags.</p>
<h4>HTML view on your WYSIWYG Editor</h4>
<p><img class="alignnone size-full wp-image-113" title="quicktags" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/quicktags.jpg" alt="quicktags" width="592" height="33" /></p>
<h4>Visual view on your WYSIWYG Editor</h4>
<p><img class="alignnone size-full wp-image-114" title="quicktags2" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/quicktags2.jpg" alt="quicktags2" width="459" height="33" /></p>
<p>In this tutorial you will see how easy it is to add a Quicktag bar within your editor.  You basically have a editor custom as your like. I am going to add 2 buttons that create a span and div tag which ask you or your editor for a class to the HTML eidtor Quicktag.<br />
<span id="more-112"></span><br />
The file you need a change is under</p>
<pre class="brush: plain;">wp-includes/js/quicktags.js.</pre>
<p>On the new wordpress included file you will have two file quicktags.js and quicktags.dev.js. quicktags.js is a compressed file which it is hard to custom. Basically I just copy and paste all the code from <code>quicktags.dev.js</code> to <code>quicktags.js</code></p>
<h4>quicktags.dev.js</h4>
<p>The below code is basically adding the code to the HTML editor.</p>
<pre class="brush: jscript;">
edButtons[edButtons.length] =
new edButton('ed_span_class'
,'span'
,''
,'&lt;/span&gt;'
,'p'
); // special case

edButtons[edButtons.length] =
new edButton('ed_div_class'
,'div'
,''
,'&lt;/div&gt;'
,'p'
); // special case
</pre>
<h4>Adding the button action</h4>
<pre class="brush: jscript;">
function edShowButton(button, i) {
	if (button.id == 'ed_img') {
		document.write('&lt;input type=&quot;button&quot; id=&quot;' + button.id + '&quot; accesskey=&quot;' + button.access + '&quot; class=&quot;ed_button&quot; onclick=&quot;edInsertImage(edCanvas);&quot; value=&quot;' + button.display + '&quot; /&gt;');
	}
	else if (button.id == 'ed_link') {
		document.write('&lt;input type=&quot;button&quot; id=&quot;' + button.id + '&quot; accesskey=&quot;' + button.access + '&quot; class=&quot;ed_button&quot; onclick=&quot;edInsertLink(edCanvas, ' + i + ');&quot; value=&quot;' + button.display + '&quot; /&gt;');
	}
	else if (button.id == 'ed_span_class') {
		document.write('&lt;input type=&quot;button&quot; id=&quot;' + button.id + '&quot; accesskey=&quot;' + button.access + '&quot; class=&quot;ed_button&quot; onclick=&quot;edInsertSpanClass(edCanvas, ' + i + ');&quot; value=&quot;' + button.display + '&quot; /&gt;');
	}
	else if (button.id == 'ed_div_class') {
		document.write('&lt;input type=&quot;button&quot; id=&quot;' + button.id + '&quot; accesskey=&quot;' + button.access + '&quot; class=&quot;ed_button&quot; onclick=&quot;edInsertDivClass(edCanvas, ' + i + ');&quot; value=&quot;' + button.display + '&quot; /&gt;');
	}
	else {
		document.write('&lt;input type=&quot;button&quot; id=&quot;' + button.id + '&quot; accesskey=&quot;' + button.access + '&quot; class=&quot;ed_button&quot; onclick=&quot;edInsertTag(edCanvas, ' + i + ');&quot; value=&quot;' + button.display + '&quot;  /&gt;');
	}
}
</pre>
<h4>Below the function list add this code</h4>
<p>Where is the function list you are talking about? Search the following code<code>function edInsertLink</code>. Basically for easy tracking, I put the code right below the <code>edInsertLink</code> function.</p>
<pre class="brush: jscript;">
function edInsertSpanClass(myField, i, defaultValue) {
	if (!defaultValue) {
	defaultValue = '';
	}
	if (!edCheckOpenTags(i)) {
		var CLASS = prompt('Enter the CLASS name for your SPAN' ,defaultValue);
		if (CLASS) {
			edButtons[i].tagStart = '&lt;span class=&quot;' + CLASS + '&quot;&gt;';
			edInsertTag(myField, i);
		}
	}
	else {
		edInsertTag(myField, i);v
	}
}

function edInsertDivClass(myField, i, defaultValue) {
	if (!defaultValue) {
	defaultValue = '';
	}
	if (!edCheckOpenTags(i)) {
		var CLASS = prompt('Enter the CLASS name for your DIV' ,defaultValue);
		if (CLASS) {
			edButtons[i].tagStart = '&lt;div class=&quot;' + CLASS + '&quot;&gt;';
			edInsertTag(myField, i);
		}
	}
	else {
		edInsertTag(myField, i);v
	}
}
</pre>
<h4>Resources</h4>
<p><a href="http://www.tamba2.org.uk/wordpress/quicktags/" target="_blank">Edit Quicktags Tutorials</a> by tamba2.org.uk<br />
<a href="http://www.tamba2.org.uk/wordpress/colour/">Colour your Quicktags</a> by tamba2.org.uk</p>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=112&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/wordpress/adding-style-to-your-tags/" title="Adding Style to your TAGS for Wordpress">Adding Style to your TAGS for Wordpress</a> (0)</li><li><a href="http://www.designersandbox.com/wordpress/easy-steps-to-install-intensedebate-to-your-wordpress/" title="Easy steps to install intensedebate to your wordpress">Easy steps to install intensedebate to your wordpress</a> (13)</li><li><a href="http://www.designersandbox.com/wordpress/wordpress-restricting-personal-ips-on-all-in-one-adsense-and-ypn/" title="Wordpress &#8211; Restricting Personal IPs on All in One Adsense and YPN!">Wordpress &#8211; Restricting Personal IPs on All in One Adsense and YPN!</a> (1)</li><li><a href="http://www.designersandbox.com/announcement/designersandbox-roadmap-on-post-it/" title="DesignerSandbox Roadmap on post-it">DesignerSandbox Roadmap on post-it</a> (3)</li><li><a href="http://www.designersandbox.com/announcement/more-free-stuff-coming-up-merry-xmas-to-you-all/" title="MORE FREE STUFF COMING UP &#8211; Merry X&#8217;Mas to you all">MORE FREE STUFF COMING UP &#8211; Merry X&#8217;Mas to you all</a> (2)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/adding-quicktag-to-the-html-editor-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Adding Breadcrumbs to Your WordPress</title>
		<link>http://www.designersandbox.com/wordpress/adding-breadcrumbs-to-your-wordpress/</link>
		<comments>http://www.designersandbox.com/wordpress/adding-breadcrumbs-to-your-wordpress/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 08:11:11 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[breadcrumb]]></category>
		<category><![CDATA[navxt]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://bizlite.designersandbox.com/?p=82</guid>
		<description><![CDATA[For the past years, the word &#8220;breadcrumb&#8221; are very popular in modern web design/development. Most of the template / theme provider or developer will add this feature in their package. So if you are new to the web, simply breadcrumbs or breadcrumb trail is a navigation tools that help user to know which section they [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-82"><p><img class="alignnone size-full wp-image-85" title="introduction" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/introduction1.png" alt="introduction" width="500" height="316" /></p>
<p>For the past years, the word &#8220;<strong>breadcrumb</strong>&#8221; are very popular in modern web design/development. Most of the template / theme provider or developer will add this feature in their package. So if you are new to the web, simply breadcrumbs or breadcrumb trail is a navigation tools that help user to know which section they are in. An UI (user interfaces) for user to track their location within your blog so that they don&#8217;t get lost from hundred cats and million of post you got in your blog post ;P</p>
<p><span id="more-82"></span></p>
<h3>In this article we are going to introduce Breadcrumb NavXT</h3>
<p><strong><em>Breadcrumb NavXT</em> -</strong> <a rel="nofollow" href="http://wordpress.org/extend/plugins/breadcrumb-navxt/" target="_blank">Download</a><br />
<strong>Authors:</strong> <a href="http://wordpress.org/extend/plugins/profile/mtekk">mtekk</a>, <a href="http://wordpress.org/extend/plugins/profile/hakre">hakre</a></p>
<p>Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress blog. These breadcrumb trails are highly customizable to suit the needs of just about any blog. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users. Do note that Breadcrumb NavXT requires PHP5.</p>
<h4>Now how to Add Breadcrumbs to your WordPress</h4>
<ol>
<li>Download the latest vesion from wordpress &#8211; <a rel="nofollow" href="http://wordpress.org/extend/plugins/breadcrumb-navxt/" target="_blank">Download </a><a rel="nofollow" href="http://wordpress.org/extend/plugins/breadcrumb-navxt/" target="_blank"><img class="alignnone size-full wp-image-86" title="download" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/download.png" alt="download" width="544" height="277" /><br />
</a></li>
<li>Disable any previous version of this plugin or Breadcrumb Navigation XT.</li>
<li>Now you can install the plugin as follow.<br />
Backend &gt; Plugins (left side) &gt; Add New (left side) &gt; Upload (locate on the right panel) &gt; Activate Plugin (right panel)</li>
<li>Continue reading, or follow instructions given by your theme</li>
</ol>
<h4>Breadcrumb NavXT basic usage (or you can visit the author <a href="http://mtekk.weblogs.us/code/breadcrumb-navxt" target="_blank">project page</a>)</h4>
<p>Depending on your theme this section may be unnecessary. If you are using <a title="Go to Berry's project page." href="http://mtekk.weblogs.us/code/berry">berry</a> as your theme everything is done for you so you have no further steps to take. If you are a theme developer visit the <a title="Go to the advanced use section of the documentation" href="http://mtekk.weblogs.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/3/#advanced_use">documentation</a> for examples on how to directly access the <code>bcn_breadcrumb_trail</code> class. Otherwise keep reading.</p>
<p>Open the appropriate file for your theme (typically header.php or index.php). This can be done within WordPress’ administration panel through Presentation &gt; Theme Editor or through your favorite text editor. Place the following code where you want the breadcrumb trail to appear.</p>
<p>If you want this to show in everywhere on your wordpress, best place is to place it on the header.php</p>
<p>Save the file (upload if applicable). Now you should have a breadcrumb trail on your WordPress powered site. To customize the breadcrumb trail you may edit the default values for the options in the administrative interface. This is located in your administration panel under Settings &gt; Breadcrumb NavXT.</p>
<h4>html/CSS breadcrumb for your wordpress</h4>
<p>This is  just a css reference for you to use, of course you can change to anything you like.<br />
Maybe different color, fonts, background, image and etc.</p>
<h4>PHP</h4>
<pre class="brush: php;">
    &lt;div class=&quot;breadcrumb&quot;&gt;
    &lt;?php
    if(function_exists('bcn_display'))
    {
        bcn_display();
    }
    ?&gt;
    &lt;/div&gt;
</pre>
<h4>CSS</h4>
<pre class="brush: css;">
div.breadcrumb{ background:#f8f8f8; padding:10px 10px 10px 30px;}
.breadcrumb{font-size:10px;color:#b8b8b8;}
.breadcrumb a:link, .breadcrumb a:visited{color:#699eb6; text-decoration:none;}
.breadcrumb a:hover{color:#47798f; background:#FFC; text-decoration:underline;}
</pre>
<h4>Advanced Usage</h4>
<p>Examples on some advanced usage situations are available in the <a title="Go to the advanced use section of the documentation" href="http://mtekk.weblogs.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/3/#advanced_use">documentation</a>.</p>
<h4>Further Study about breadcrumb</h4>
<p>If you would like to take a look at a more in-depth view of what and how breadcrumb are made for. Please take a look at the <a href="http://www.smashingmagazine.com/2009/03/17/breadcrumbs-in-web-design-examples-and-best-practices-2/" target="_blank">following post</a> by <a href="http://www.smashingmagazine.com" target="_blank">smashingmagazine</a>.</p>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=82&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/wordpress/feedburner-for-your-wordpress/" title="Feedburner for your WordPress">Feedburner for your WordPress</a> (2)</li><li><a href="http://www.designersandbox.com/wordpress/adding-square-user-photo-to-an-author/" title="Adding Square User Photo to an Author for Wordpress">Adding Square User Photo to an Author for Wordpress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/author-image-plugin-for-wordpress/" title="Author Image Plugin For WordPress">Author Image Plugin For WordPress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/syntax-highlighter-for-wordpress/" title="Syntax Highlighter for Wordpress">Syntax Highlighter for Wordpress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/displaying-related-posts/" title="Displaying Code in Color on your wordpress">Displaying Code in Color on your wordpress</a> (2)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/adding-breadcrumbs-to-your-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding Square User Photo to an Author for WordPress</title>
		<link>http://www.designersandbox.com/wordpress/adding-square-user-photo-to-an-author/</link>
		<comments>http://www.designersandbox.com/wordpress/adding-square-user-photo-to-an-author/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 09:50:29 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://bizlite.designersandbox.com/?p=68</guid>
		<description><![CDATA[Authors: cptnwinky, westonruter Allows a user to associate a profile photo with their account through their &#8220;Your Profile&#8221; page. Admins may add a user profile photo by accessing the &#8220;Edit User&#8221; page. Uploaded images are resized to fit the dimensions specified on the options page; a thumbnail image correspondingly is also generated. User photos may [...]]]></description>
			<content:encoded><![CDATA[<div id="post-refEl-68"><p><img class="alignnone size-full wp-image-69" title="introduction" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/introduction.png" alt="introduction" width="484" height="294" /></p>
<p><strong><span>Authors:</span></strong> <a href="http://wordpress.org/extend/plugins/profile/cptnwinky">cptnwinky</a>, <a href="http://wordpress.org/extend/plugins/profile/westonruter">westonruter</a></p>
<p>Allows a user to associate a profile photo with their account through their &#8220;Your Profile&#8221; page. Admins may  add a user profile photo by accessing the &#8220;Edit User&#8221; page. Uploaded images are resized to fit the dimensions specified  on the options page; a thumbnail image correspondingly is also generated.  User photos may be displayed within a post or a comment to  help identify the author. New template tags introduced are:</p>
<ul>
<li><code>userphoto_the_author_photo()</code></li>
<li><code>userphoto_the_author_thumbnail()</code></li>
<li><code>userphoto_comment_author_photo()</code></li>
<li><code>userphoto_comment_author_thumbnail()</code></li>
</ul>
<p><span id="more-68"></span><br />
<img class="alignnone size-full wp-image-70" title="introduction" src="http://bizlite.designersandbox.com/wp-content/uploads/2009/11/introduction.jpg" alt="introduction" width="513" height="384" /></p>
<p><em>Important: all of these &#8220;template tags&#8221; must appear inside of PHP script blocks (see examples below).</em> The first two should be placed in the posts loop near <code>the_author()</code>, and the second two in the comments loop near <code>comment_author()</code> (or their respective equivalents). Furthermore, <code>userphoto_the_author_photo()</code> and <code>userphoto_the_author_thumbnail()</code> may be called anywhere (i.e. sidebar) if <code>$authordata</code> is set.</p>
<p>The output of these template tags may be modified by passing four parameters: <code>$before</code>, <code>$after</code>,     $attributes, and <code>$default_src</code>, as in: <code>userphoto_the_author_photo($before, $after, $attributes, $default_src)</code>. If the user photo exists (or <code>$default_src</code> is supplied), then the text provided in the <code>$before</code> and <code>$after</code> parameters is respectively prefixed and suffixed to the generated <code>img</code> tag (a common pattern in WordPress). If attributes are provided in the <code>$attributes</code> parameter, then they are returned as attributes of the generated <code>img</code> element. For example: <code>userphoto_the_author_photo('', '', array(style =&gt; 'border:0'))</code> Just added in 0.8.1 release are these two new template tags:</p>
<ul>
<li><code>userphoto($user, $before = '', $after = '', $attributes = array(), $default_src = '')</code></li>
<li><code>userphoto_thumbnail($user, $before = '', $after = '', $attributes = array(), $default_src = '')</code></li>
</ul>
<p>By using these, it is uneccessary to set the global <code>$authordata</code> to display a photo. Just pass <code>$authordata</code>, <code>$curauth</code> or whatever variable you have which contains the user object, or (as of version 0.9), pass in a user ID or a user login name.</p>
<p>Here&#8217;s an example that shows a few ways of inserting a user&#8217;s photo into the post loop:     //this will display the user&#8217;s avatar if they don&#8217;t have a user photo,</p>
<pre class="brush: php;">&lt;?php while (have_posts()) : the_post(); ?&gt;
    &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
        &lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
        &lt;div&gt;
            &lt;?php the_time('F jS, Y') ?&gt;
            by &lt;?php the_author() ?&gt;

            &lt;!-- displays the user's photo and then thumbnail --&gt;
            &lt;?php userphoto_the_author_photo() ?&gt;
            &lt;?php userphoto_the_author_thumbnail() ?&gt;

            &lt;!-- the following two do the same since $authordata populated --&gt;
            &lt;?php userphoto($authordata) ?&gt;
            &lt;?php userphoto_thumbnail($authordata) ?&gt;

            &lt;!-- and this is how to customize the output --&gt;
            &lt;?php userphoto_the_author_photo(
                '&lt;b&gt;Photo of me: ',
                '&lt;/b&gt;',
                array('class' =&gt; 'photo'),
                get_template_directory_uri() . '/nophoto.jpg'
            ) ?&gt;
        &lt;/div&gt;
        &lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;
    &lt;/div&gt;
&lt;?php endwhile; ?&gt;</pre>
<p>To download or read more information about this plugin please visit to the <a href="http://wordpress.org/extend/plugins/user-photo/">plugin page</a></p>
<h2>Square Thumbs for User Photo</h2>
<p>Extends the <a href="http://wordpress.org/extend/plugins/user-photo/">User Photo plugin</a> to allow the generation of square thumbnails. You MUST have the User Photo plugin installed, or this plugin will NOT work.</p>
<p>Plugin initially produced on behalf of <a href="http://www.puffbox.com/">Puffbox</a>.</p>
<p>To download or read more information about this plugin please visit to the <a href="http://wordpress.org/extend/plugins/square-thumbnails-for-user-photo/">plugin page</a>.</p>
<img src="http://www.designersandbox.com/?ak_action=api_record_view&id=68&type=feed" alt="" /><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.designersandbox.com/wordpress/feedburner-for-your-wordpress/" title="Feedburner for your WordPress">Feedburner for your WordPress</a> (2)</li><li><a href="http://www.designersandbox.com/wordpress/adding-breadcrumbs-to-your-wordpress/" title="Adding Breadcrumbs to Your WordPress">Adding Breadcrumbs to Your WordPress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/author-image-plugin-for-wordpress/" title="Author Image Plugin For WordPress">Author Image Plugin For WordPress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/syntax-highlighter-for-wordpress/" title="Syntax Highlighter for Wordpress">Syntax Highlighter for Wordpress</a> (1)</li><li><a href="http://www.designersandbox.com/wordpress/displaying-related-posts/" title="Displaying Code in Color on your wordpress">Displaying Code in Color on your wordpress</a> (2)</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.designersandbox.com/wordpress/adding-square-user-photo-to-an-author/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	<img style='margin:0;padding:0;border:0;' width='1px' height='1px' src="http://www.designersandbox.com/wp-content/plugins/mystat/mystat.php?act=time_load&id=2325522&rnd=369726346" /></channel>
</rss>

