<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:series="http://unfoldingneurons.com/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Designparc</title>
	
	<link>http://designparc.com</link>
	<description>WordPress customization, Website design and e-commerce.</description>
	<lastBuildDate>Sat, 04 Feb 2012 09:10:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Designparc" /><feedburner:info uri="designparc" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><feedburner:emailServiceId>Designparc</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to: Custom WordPress Widget CSS Styling in Pagelines Framework 2.0</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/rngbJOaLsyA/</link>
		<comments>http://designparc.com/2012/02/03/how-to-custom-wordpress-widget-css-styling-in-pagelines-framework-2-0/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 03:27:21 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[PageLines Child Theme]]></category>
		<category><![CDATA[PageLines CSS]]></category>
		<category><![CDATA[PageLines Framework]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Child Theme]]></category>
		<category><![CDATA[WordPress CSS]]></category>
		<category><![CDATA[WordPress Sidebars]]></category>
		<category><![CDATA[PageLines child theme]]></category>
		<category><![CDATA[PageLines Widget]]></category>
		<category><![CDATA[Widget CSS Styling]]></category>
		<category><![CDATA[Widget rounded corners]]></category>
		<category><![CDATA[WordPress Widget CSS]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3904</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F02%2F03%2Fhow-to-custom-wordpress-widget-css-styling-in-pagelines-framework-2-0%2F"><br /> <br /> </a> <p>Goal: Custom Widget colors, text and rounded corners:</p> Title: dark-blue background; bold, white font. Body: medium-blue background; rounded top-left/right corners. NOTE: these are only initial customizations. More is required. <p>Solution: Add the following CSS to Child Theme stylesheet.</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F02%2F03%2Fhow-to-custom-wordpress-widget-css-styling-in-pagelines-framework-2-0%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2012%2F02%2F03%2Fhow-to-custom-wordpress-widget-css-styling-in-pagelines-framework-2-0%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>Goal:</strong> Custom Widget colors, text and rounded corners:</p>
<ul>
<li>Title: dark-blue background; bold, white font.</li>
<li>Body: medium-blue background; rounded top-left/right corners.</li>
<li>NOTE: these are only initial customizations. More is required.</li>
</ul>
<p><strong>Solution:</strong> Add the following CSS to Child Theme stylesheet.</p>
<pre class="brush: css; title: ; notranslate">

/* Widget Title: BG Color + Font */
h3.widget-title {
background-color: #0B5487; /* Dark blue */
color: white;
font-weight: bold;
margin: -10px -10px 0 -10px;
padding: 20px;
text-align: left;
}

/* Widget Body: BG Color + Rounded corners + Margin */
.widget {
background-color: #3683B1; /* Med blue */
border-top-left-radius: 12px; /* CSS3 */
border-top-right-radius: 12px; /* CSS3 */
border-bottom-right-radius: 0; /* CSS3 */
border-bottom-left-radius: 0; /* CSS3 */
-khtml-border-radius-topleft: 12px; /* Old Konqueror browsers */
-khtml-border-radius-topright: 12px; /* Old Konqueror browsers */
-khtml-border-radius-bottomright: 0; /* Old Konqueror browsers */
-khtml-border-radius-bottomleft: 0; /* Old Konqueror browsers */
-moz-border-radius-topleft: 12px; /* Firefox */
-moz-border-radius-topright: 12px; /* Firefox */
-moz-border-radius-bottomright: 0; /* Firefox */
-moz-border-radius-bottomleft: 0; /* Firefox */
-webkit-border-top-left-radius: 12px; /* Safari and Chrome */
-webkit-border-top-right-radius: 12px; /* Safari and Chrome */
-webkit-border-bottom-right-radius: 0; /* Safari and Chrome */
-webkit-border-bottom-left-radius: 0; /* Safari and Chrome */
margin-bottom: 10px; /* Add space between each Widget in Primary Sidebar */
}
</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=rngbJOaLsyA:KAvh2H27e5o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=rngbJOaLsyA:KAvh2H27e5o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=rngbJOaLsyA:KAvh2H27e5o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=rngbJOaLsyA:KAvh2H27e5o:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/rngbJOaLsyA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2012/02/03/how-to-custom-wordpress-widget-css-styling-in-pagelines-framework-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[PageLines Framework 2.0 Case Study - BPE Law]]></series:name>
	<feedburner:origLink>http://designparc.com/2012/02/03/how-to-custom-wordpress-widget-css-styling-in-pagelines-framework-2-0/</feedburner:origLink></item>
		<item>
		<title>PageLines Framework 2.0 Video Tutorials</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/Kfalhrl6dnA/</link>
		<comments>http://designparc.com/2012/01/31/pagelines-framework-2-0-video-tutorials/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 10:00:48 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[PageLines Child Theme]]></category>
		<category><![CDATA[PageLines Framework]]></category>
		<category><![CDATA[PageLines Sections]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[PageLines custom sections]]></category>
		<category><![CDATA[PageLines Framework video tutorial]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3896</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F31%2Fpagelines-framework-2-0-video-tutorials%2F"><br /> <br /> </a> <p>PageLines Essential Training Your First Section</p> <p></p> <p>More PageLines Framework 2.0 tutorials are available on their <a title="PageLines YouTube channel" href="http://www.youtube.com/user/pagelines/featured" target="_blank">PageLines YouTube channel</a></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F31%2Fpagelines-framework-2-0-video-tutorials%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F31%2Fpagelines-framework-2-0-video-tutorials%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>PageLines Essential Training Your First Section</strong></p>
<p><iframe src="http://www.youtube.com/embed/wsYWfNAdPcA?rel=0" frameborder="0" width="480" height="360"></iframe></p>
<p>More PageLines Framework 2.0 tutorials are available on their <a title="PageLines YouTube channel" href="http://www.youtube.com/user/pagelines/featured" target="_blank">PageLines YouTube channel</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=Kfalhrl6dnA:fDs1qVwtXfQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=Kfalhrl6dnA:fDs1qVwtXfQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=Kfalhrl6dnA:fDs1qVwtXfQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=Kfalhrl6dnA:fDs1qVwtXfQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/Kfalhrl6dnA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2012/01/31/pagelines-framework-2-0-video-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://designparc.com/2012/01/31/pagelines-framework-2-0-video-tutorials/</feedburner:origLink></item>
		<item>
		<title>How to: Create Custom Sidebar in Pagelines Framework 2.0</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/MpUi6HYG_XM/</link>
		<comments>http://designparc.com/2012/01/30/how-to-create-custom-sidebar-in-pagelines-framework-20/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 10:02:30 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[PageLines Child Theme]]></category>
		<category><![CDATA[PageLines Framework]]></category>
		<category><![CDATA[PageLines Sidebar]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Child Theme]]></category>
		<category><![CDATA[WordPress Sidebars]]></category>
		<category><![CDATA[WordPress Widgetizing]]></category>
		<category><![CDATA[PageLines child theme]]></category>
		<category><![CDATA[PageLines Framework custom sidebar]]></category>
		<category><![CDATA[PageLines widgetized page]]></category>
		<category><![CDATA[Widgetized page template]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3875</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F30%2Fhow-to-create-custom-sidebar-in-pagelines-framework-20%2F"><br /> <br /> </a> <p>Goal: Add a custom Sidebar to Home page&#8217;s &#8220;Content&#8221; (not Template) area so any Widget can be added.</p> <p>WordPress framework: PageLines Framework 2.0.1</p> <p>Solution: Copy one of the Sidebar sections and customize it to fit in the Content area of the Home page template. We&#8217;ll copy &#8220;Full Width Sidebar&#8221; [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F30%2Fhow-to-create-custom-sidebar-in-pagelines-framework-20%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F30%2Fhow-to-create-custom-sidebar-in-pagelines-framework-20%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>Goal:</strong> Add a custom Sidebar to Home page&#8217;s &#8220;Content&#8221; (not Template) area so any Widget can be added.</p>
<p><strong>WordPress framework:</strong> PageLines Framework 2.0.1</p>
<p><strong>Solution:</strong> Copy one of the Sidebar sections and customize it to fit in the Content area of the Home page template. We&#8217;ll copy &#8220;<em>Full Width Sidebar</em>&#8221; and turn it into a new Sidebar called &#8220;<em>Home Page Knowledge Center Sidebar</em>.&#8221;</p>
<p style="padding-left: 30px;"><strong>Copy:</strong> wp-content/themes/pagelines/sections/<strong>sb_fullwidth</strong></p>
<p style="padding-left: 30px;"><strong>To:</strong> wp-content/themes/pagelines-template-theme/sections/</p>
<p><strong>Open:</strong> wp-content/themes/pagelines-template-theme/sections/sb_fullwidth/<strong>sections.php</strong></p>
<p><strong>CHANGE:</strong></p>
<pre class="brush: php; title: ; notranslate">

&lt;?php
/*
Section: Full Width Sidebar
Author: PageLines
Author URI: http://www.pagelines.com
Description: Shows full width widgetized sidebar.
Class Name: FullWidthSidebar
Edition: pro
Workswith: templates, footer, morefoot
*/

class FullWidthSidebar extends PageLinesSection {

function section_persistent() {
$setup = pagelines_standard_sidebar($this-&gt;name, $this-&gt;settings['description']);
register_sidebar($setup);

}

function section_template() {
pagelines_draw_sidebar($this-&gt;id, $this-&gt;name);
}

}
</pre>
<p><strong>TO:</strong></p>
<pre class="brush: php; title: ; notranslate">

&lt;?php
/*
Section: Home Page Knowledge Center Sidebar
Author: PageLines + Reid Walley modification http://designparc.com/
Author URI: http://www.pagelines.com
Description: Home page Knowledge Center sidebar.
Class Name: HomePageKnowledgeCenterSidebar
Edition: pro
Workswith: main
*/

class HomePageKnowledgeCenterSidebar extends PageLinesSection {

function section_persistent() {
$setup = pagelines_standard_sidebar($this-&gt;name, $this-&gt;settings['description']);
register_sidebar($setup);

}

function section_template() {
pagelines_draw_sidebar($this-&gt;id, $this-&gt;name);
}

}
</pre>
<p><strong>Finally:</strong> Go to Site admin &gt; PageLines &gt; Store &gt; Sections &gt; Child tab and click Refresh Store.</p>
<p>New Sidebar called <em>Home Page Knowledge Center Sidebar</em> is now available in Site admin &gt; Appearance &gt; Widgets section.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=MpUi6HYG_XM:b_uonBM_H_g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=MpUi6HYG_XM:b_uonBM_H_g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=MpUi6HYG_XM:b_uonBM_H_g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=MpUi6HYG_XM:b_uonBM_H_g:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/MpUi6HYG_XM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2012/01/30/how-to-create-custom-sidebar-in-pagelines-framework-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[PageLines Framework 2.0 Case Study - BPE Law]]></series:name>
	<feedburner:origLink>http://designparc.com/2012/01/30/how-to-create-custom-sidebar-in-pagelines-framework-20/</feedburner:origLink></item>
		<item>
		<title>Pagelines Framework 2.0 – Change Nav Menu Text Color</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/kGT8KP5Eo8Y/</link>
		<comments>http://designparc.com/2012/01/28/pagelines-framework-2-0-change-nav-menu-text-color/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 00:50:14 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[PageLines Child Theme]]></category>
		<category><![CDATA[PageLines CSS]]></category>
		<category><![CDATA[PageLines Framework]]></category>
		<category><![CDATA[PageLines Nav]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[PageLines Nav Text Color]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3858</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F28%2Fpagelines-framework-2-0-change-nav-menu-text-color%2F"><br /> <br /> </a> <p>Problem: I can&#8217;t change the color of the text in the navigation using CSS. It&#8217;s way too confusing, and the SuckerFish nav CSS seems to always override my custom CSS. And there&#8217;s no way to change the color of nav text in the admin. Ugh!</p> <p>Note per the PageLines [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F28%2Fpagelines-framework-2-0-change-nav-menu-text-color%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F28%2Fpagelines-framework-2-0-change-nav-menu-text-color%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>Problem:</strong> I can&#8217;t change the color of the text in the navigation using CSS. It&#8217;s way too confusing, and the SuckerFish nav CSS seems to always override my custom CSS. And there&#8217;s no way to change the color of nav text in the admin. Ugh!</p>
<p>Note per the PageLines Forum: PageLines Framework 2.0&#8242;s Color Controls for navigation aren&#8217;t [in the admin] anymore. Custom CSS will be needed to change them.</p>
<p><strong>Solution</strong> (<a title="Pagelines Framework 2.0 - Change Nav Menu Text Color" href="http://www.pagelines.com/forum/discussion/16838/pagelines-framework-2.0-nav-color-control#Item_4" target="_blank">Source: rangelone, PageLines moderator</a>): The following code is <strong>not specific to your site</strong> and <strong>provided for informative purposes only</strong>, to provide an example of several different elements for the menu. Look through it and you&#8217;ll see how colors are changed. I&#8217;d also suggest you get Firebug for Firefox to help you find each element. The colors should be changed if you use any of this, to suit your needs.</p>
<pre class="brush: css; title: ; notranslate">
/* NAV BACKGROUND AND BORDER UNDER NAV */
.navigation_wrap {
    border-bottom: 1px solid #bcbcbc !important;
    background-color: #e8ecef !important;
}

/* TO CHANGE THE COLOR OF THE NAV TEXT AND BACKGROUND (NO HOVER) */
.main-nav li a {
    background-color: #e8ecef !important;
    color: #3f95c7 !important;
}

/* TO CHANGE THE COLOR OF THE NAV TEXT AND BACKGROUND ON HOVER */
.main-nav li a:hover {
    background-color: #ffffff !important;
    color: #ff9c00 !important;
}

/* TO MAKE THE ACTIVE MENU APPEAR LIKE THE REST */
.main-nav .current-menu-item a, .main-nav .current-menu-item ul li a:hover {
    background-color: #ffffff !important;
    color: #ff9c00 !important;
}

.main-nav .current-menu-item ul li a {
    background-color: #e8ecef !important;
    color: #3f95c7 !important;
}
</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=kGT8KP5Eo8Y:FQ3Fnibhm6k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=kGT8KP5Eo8Y:FQ3Fnibhm6k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=kGT8KP5Eo8Y:FQ3Fnibhm6k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=kGT8KP5Eo8Y:FQ3Fnibhm6k:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/kGT8KP5Eo8Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2012/01/28/pagelines-framework-2-0-change-nav-menu-text-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[PageLines Framework 2.0 Case Study - BPE Law]]></series:name>
	<feedburner:origLink>http://designparc.com/2012/01/28/pagelines-framework-2-0-change-nav-menu-text-color/</feedburner:origLink></item>
		<item>
		<title>Paid links – Getting paid without Google kicking your ass!</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/azNcsATLdCg/</link>
		<comments>http://designparc.com/2012/01/21/paid-links-getting-paid-without-google-kicking-your-ass/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 08:19:55 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[Google Ranking]]></category>
		<category><![CDATA[Google Webmaster Guidelines]]></category>
		<category><![CDATA[Paid links]]></category>
		<category><![CDATA[Search engine optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Google nofollow policy]]></category>
		<category><![CDATA[Google paid link policy]]></category>
		<category><![CDATA[Nofollow tag]]></category>
		<category><![CDATA[PageRank]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3832</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F21%2Fpaid-links-getting-paid-without-google-kicking-your-ass%2F"><br /> <br /> </a> I run a couple of paid links here on Designparc that are industry and category specific. And since I don&#8217;t want Google to kick my ass over passing PageRank, I added &#8220;nofollow&#8221; tags to all of those paid links. A few companies who wanted to place paid links on [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F21%2Fpaid-links-getting-paid-without-google-kicking-your-ass%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F21%2Fpaid-links-getting-paid-without-google-kicking-your-ass%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h3>I run a couple of paid links here on Designparc that are industry and category specific. And since I don&#8217;t want Google to kick my ass over passing PageRank, I added &#8220;nofollow&#8221; tags to all of those paid links. A few companies who wanted to place paid links on Designparc got pissed off when I mentioned that I adhere to a strict &#8220;nofollow&#8221; policy.</h3>
<blockquote><p><em>Excerpt:</em> Some SEOs and webmasters engage in the practice of buying and selling links that pass PageRank, disregarding the quality of the links, the sources, and the long-term impact it will have on their sites. Buying or selling links that pass PageRank is in violation of Google&#8217;s Webmaster Guidelines.</p></blockquote>
<h2><a title="Paid links" href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=66736" target="_blank">Google&#8217;s policy on paid links</a></h2>
<p>Google and most other search engines use links to determine reputation. A site&#8217;s ranking in Google search results is partly based on analysis of those sites that link to it. Link-based analysis is an extremely useful way of measuring a site&#8217;s value, and has greatly improved the quality of web search. Both the quantity and, more importantly, the quality of links count towards this rating.</p>
<p>However, some SEOs and webmasters engage in the practice of buying and selling links that pass PageRank, disregarding the quality of the links, the sources, and the long-term impact it will have on their sites. Buying or selling links that pass PageRank is in violation of Google&#8217;s <a title="Google Webmaster Guidelines" href="http://support.google.com/webmasters/bin/answer.py?answer=35769" target="_blank">Webmaster Guidelines</a> and can negatively impact a site&#8217;s ranking in search results.</p>
<p>Not all paid links violate our guidelines. Buying and selling links is a normal part of the economy of the web when done for advertising purposes, and not for manipulation of search results. Links purchased for advertising should be designated as such. This can be done in several ways, such as:</p>
<ul>
<li>Adding a <a href="http://support.google.com/webmasters/bin/answer.py?answer=96569" target="_blank">rel=nofollow</a> attribute to the &lt;a&gt; tag</li>
<li>Redirecting the links to an intermediate page that is blocked from search engines with a robots.txt file</li>
</ul>
<p>Google works hard to ensure that it fully discounts links intended to manipulate search engine results, such as excessive link exchanges and purchased links that pass PageRank.</p>
<p>Source: <a title="Paid links" href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=66736" target="_blank">Google&#8217;s paid links policy</a></p>
<h2><a title="Google nofollow tags" href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=96569&amp;topic=2371375&amp;ctx=topic" target="_blank">Google&#8217;s policy on rel=nofollow tag</a></h2>
<p>&#8220;Nofollow&#8221; provides a way for webmasters to tell search engines &#8220;Don&#8217;t follow links on this page&#8221; or &#8220;Don&#8217;t follow this specific link.&#8221;</p>
<p>Originally, the <code>nofollow</code> attribute appeared in the page-level meta tag, and instructed search engines not to follow (i.e., crawl) any outgoing links on the page. For example:</p>
<pre> &lt;meta name="robots" content="nofollow" /&gt;</pre>
<p>Before <code>nofollow</code> was used on individual links, preventing robots from following individual links on a page required a great deal of effort (for example, redirecting the link to a URL blocked in robots.txt). That&#8217;s why the <code>nofollow</code> attribute value of the <code>rel</code> attribute was created. This gives webmasters more granular control: instead of telling search engines and bots not to follow any links on the page, it lets you easily instruct robots not to crawl a specific link. For example:</p>
<pre> &lt;a href="signin.php" rel="nofollow"&gt;sign in&lt;/a&gt;</pre>
<h4>How does Google handle nofollowed links?</h4>
<p>In general, we don&#8217;t follow them. This means that Google does not transfer PageRank or anchor text across these links. Essentially, using <code>nofollow</code> causes us to drop the target links from our overall graph of the web. However, the target pages may still appear in our index if other sites link to them without using <code>nofollow</code>, or if the URLs are submitted to Google in a Sitemap. Also, it&#8217;s important to note that other search engines may handle <code>nofollow</code> in slightly different ways.</p>
<h4>What are Google&#8217;s policies and some specific examples of nofollow usage?</h4>
<p>Here are some cases in which you might want to consider using <code>nofollow</code>:</p>
<ul>
<li><strong>Untrusted content</strong>: If you can&#8217;t or don&#8217;t want to vouch for the content of pages you link to from your site — for example, untrusted user comments or guestbook entries — you should nofollow those links. This can discourage spammers from targeting your site, and will help keep your site from inadvertently passing PageRank to bad neighborhoods on the web. In particular, <a href="http://support.google.com/webmasters/bin/answer.py?answer=81749" target="_blank">comment spammers</a> may decide not to target a specific content management system or blog service if they can see that untrusted links in that service are nofollowed. If you want to recognize and reward trustworthy contributors, you could decide to automatically or manually remove the <code>nofollow</code> attribute on links posted by members or users who have consistently made high-quality contributions over time.</li>
<li><strong>Paid links</strong>: A site&#8217;s ranking in Google search results is partly based on analysis of those sites that link to it. In order to prevent paid links from influencing search results and negatively impacting users, we urge webmasters use <code>nofollow</code> on such links. Search engine guidelines require machine-readable disclosure of paid links in the same way that consumers online and offline appreciate disclosure of paid relationships (for example, a full-page newspaper ad may be headed by the word &#8220;Advertisement&#8221;). <a href="http://support.google.com/webmasters/bin/answer.py?answer=66736" target="_blank">More information on Google&#8217;s stance on paid links.</a></li>
<li><strong>Crawl prioritization</strong>: Search engine robots can&#8217;t sign in or register as a member on your forum, so there&#8217;s no reason to invite Googlebot to follow &#8220;register here&#8221; or &#8220;sign in&#8221; links. Using <code>nofollow</code> on these links enables Googlebot to crawl other pages you&#8217;d prefer to see in Google&#8217;s index. However, a solid information architecture — intuitive navigation, user- and search-engine-friendly URLs, and so on — is likely to be a far more productive use of resources than focusing on crawl prioritization via nofollowed links.</li>
</ul>
<p>Source: <a title="Google nofollow tags" href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=96569&amp;topic=2371375&amp;ctx=topic" target="_blank">Google&#8217;s nofollow policy</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=azNcsATLdCg:7tyupCDpSW4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=azNcsATLdCg:7tyupCDpSW4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=azNcsATLdCg:7tyupCDpSW4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=azNcsATLdCg:7tyupCDpSW4:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/azNcsATLdCg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2012/01/21/paid-links-getting-paid-without-google-kicking-your-ass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://designparc.com/2012/01/21/paid-links-getting-paid-without-google-kicking-your-ass/</feedburner:origLink></item>
		<item>
		<title>Google hates your link exchange violations!</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/JdA_TxXHpAw/</link>
		<comments>http://designparc.com/2012/01/19/google-hates-your-link-exchange-violations/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 02:45:16 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[Google Ranking]]></category>
		<category><![CDATA[Google Webmaster Guidelines]]></category>
		<category><![CDATA[Link exchange]]></category>
		<category><![CDATA[Paid links]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Link schemes]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Reciprocal links]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3804</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F19%2Fgoogle-hates-your-link-exchange-violations%2F"><br /> <br /> </a> Google cares about the quality of the links pointing &#8220;to&#8221; your site! On the other hand, Google&#8217;s not a big fan of excessive link exchanging (&#8220;Link to me and I&#8217;ll link to you&#8221;) methods. <p>&#8220;The best way to get other sites to create relevant links to yours is to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F19%2Fgoogle-hates-your-link-exchange-violations%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2012%2F01%2F19%2Fgoogle-hates-your-link-exchange-violations%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h3>Google cares about the quality of the links pointing &#8220;to&#8221; your site! On the other hand, Google&#8217;s not a big fan of excessive link exchanging (&#8220;Link to me and I&#8217;ll link to you&#8221;) methods.</h3>
<blockquote><p>&#8220;The best way to get other sites to create relevant links to yours is to create unique, relevant content&#8230; It is not only the number of links you have pointing to your site that matters, but also the quality and relevance of those links. Creating good content pays off: Links are usually editorial votes given by choice.&#8221;</p>
<p>(Source: Google Webmaster Tools: <a title="Google link schemes" href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=66356" target="_blank">Link schemes</a>*)</p></blockquote>
<p><strong>Real-world example:</strong> ReidWalley.com gets consistent organic ranking on Google&#8217;s first page for &#8220;life coach sacramento.&#8221; No link exchange or reciprocal link methods were ever used &#8211; just posting quality content and linking to (voting for) awesome sites.</p>
<p><strong>Vote for what&#8217;s awesome:</strong> Good-quality content and linking to (voting for) other quality sites are 2 ways to become a quality resource. And good-quality resources are worth linking to. If your site is valuable then other quality sites will consider linking to you. But your site must be &#8220;worth&#8221; linking to.</p>
<p>I always receive &#8220;link to me and I&#8217;ll link to you&#8221; emails from link exchange companies. Most of them are crap and not even relevant to my industry or category. If I think your site&#8217;s content is awesome then I&#8217;ll link to it &#8211; without asking you to return the favor.</p>
<p>If I vote for you on The Voice or American Idol, I don&#8217;t ask for a reciprocal vote. If you&#8217;re awesome, I&#8217;ll vote for you.</p>
<hr />
<p><strong>*Full <a title="Google link schemes" href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=66356" target="_blank">Link schemes</a> article from Google Webmaster Tools:</strong></p>
<p>Your site&#8217;s ranking in Google search results is partly based on analysis of those sites that link to you. The quantity, quality, and relevance of links count towards your rating. The sites that link to you can provide context about the subject matter of your site, and can indicate its quality and popularity. However, some webmasters engage in link exchange schemes and build partner pages exclusively for the sake of cross-linking, disregarding the quality of the links, the sources, and the long-term impact it will have on their sites. This is in violation of Google&#8217;s <a title="Google Webmaster Guidelines" href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=35769" target="_blank">Webmaster Guidelines</a> and can negatively impact your site&#8217;s ranking in search results. Examples of link schemes can include:</p>
<ul>
<li>Links intended to manipulate PageRank</li>
<li>Links to web spammers or bad neighborhoods on the web</li>
<li>Excessive reciprocal links or excessive link exchanging (&#8220;Link to me and I&#8217;ll link to you.&#8221;)</li>
<li><a title="Buying or selling links that pass PageRank is in violation of Google's Webmaster Guidelines and can negatively impact a site's ranking in search results. " href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=66736" target="_blank">Buying or selling links that pass PageRank</a> is in violation of Google&#8217;s Webmaster Guidelines</li>
</ul>
<p>The best way to get other sites to create relevant links to yours is to create unique, relevant content that can quickly gain popularity in the Internet community. The more useful content you have, the greater the chances someone else will find that content valuable to their readers and link to it. Before making any single decision, you should ask yourself the question: Is this going to be beneficial for my page&#8217;s visitors?</p>
<p>It is not only the number of links you have pointing to your site that matters, but also the quality and relevance of those links. Creating good content pays off: Links are usually editorial votes given by choice, and the buzzing blogger community can be an excellent place to generate interest.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=JdA_TxXHpAw:1X2nJs9MEPw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=JdA_TxXHpAw:1X2nJs9MEPw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=JdA_TxXHpAw:1X2nJs9MEPw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=JdA_TxXHpAw:1X2nJs9MEPw:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/JdA_TxXHpAw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2012/01/19/google-hates-your-link-exchange-violations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://designparc.com/2012/01/19/google-hates-your-link-exchange-violations/</feedburner:origLink></item>
		<item>
		<title>Testimonial – Hillary Schieve, Plato’s Closet Reno</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/r9lxUp9eSo4/</link>
		<comments>http://designparc.com/2011/12/21/testimonial-hillary-schieve-platos-closet-reno/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 22:29:36 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[Loyalty cards]]></category>
		<category><![CDATA[Testimonials]]></category>
		<category><![CDATA[Hillary Schieve]]></category>
		<category><![CDATA[Plato's Closet loyalty cards]]></category>
		<category><![CDATA[plato's closet reno]]></category>
		<category><![CDATA[Testimonial]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3781</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F21%2Ftestimonial-hillary-schieve-platos-closet-reno%2F"><br /> <br /> </a> &#8220;These new <a title="Loyalty cards - New design for 2012 for Plato's Closet owners, including Facebook Page link" href="http://store.designparc.com/shop/loyalty-cards/" target="_blank">loyalty cards</a> [for 2012] are all the rage, Reid! Our customers keep asking for more swag with this design!! Your are a Genius!!!&#8221; <p style="text-align: right;">Hillary Schieve, Owner<a title="Testimonial - [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F21%2Ftestimonial-hillary-schieve-platos-closet-reno%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F21%2Ftestimonial-hillary-schieve-platos-closet-reno%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h3>&#8220;These new <a title="Loyalty cards - New design for 2012 for Plato's Closet owners, including Facebook Page link" href="http://store.designparc.com/shop/loyalty-cards/" target="_blank">loyalty cards</a> [for 2012] are all the rage, Reid! Our customers keep asking for more swag with this design!! Your are a Genius!!!&#8221;</h3>
<p style="text-align: right;">Hillary Schieve, Owner<a title="Testimonial - Hillary Schieve - Plato's Closet Reno" href="https://www.facebook.com/platosclosetreno" target="_blank"><br />
Plato’s Closet, Reno</a><br />
Oct 28, 2011</p>
<p><a title="Loyalty cards - New design for 2012 for Plato's Closet owners, including Facebook Page link" href="http://store.designparc.com/shop/loyalty-cards/" target="_blank">Order these beautiful loyalty cards for your store &#8211; New for 2012</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=r9lxUp9eSo4:lEjmJeIind0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=r9lxUp9eSo4:lEjmJeIind0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=r9lxUp9eSo4:lEjmJeIind0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=r9lxUp9eSo4:lEjmJeIind0:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/r9lxUp9eSo4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2011/12/21/testimonial-hillary-schieve-platos-closet-reno/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://designparc.com/2011/12/21/testimonial-hillary-schieve-platos-closet-reno/</feedburner:origLink></item>
		<item>
		<title>Ultimate CSS Gradient Generator</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/iq_kEHXB5wU/</link>
		<comments>http://designparc.com/2011/12/21/ultimate-css-gradient-generator/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 20:15:00 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Website design]]></category>
		<category><![CDATA[ColorZilla]]></category>
		<category><![CDATA[Ultimate CSS Gradient Generator]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3778</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F21%2Fultimate-css-gradient-generator%2F"><br /> <br /> </a> <a title="Ultimate CSS Gradient Generator from ColorZilla" href="http://www.colorzilla.com/gradient-editor/" target="_blank">Ultimate CSS Gradient Generator from ColorZilla</a> <p>A powerful Photoshop-like CSS gradient editor from <a title="ColorZilla" href="http://www.colorzilla.com/" target="_blank">ColorZilla</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F21%2Fultimate-css-gradient-generator%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F21%2Fultimate-css-gradient-generator%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h1><a title="Ultimate CSS Gradient Generator from ColorZilla" href="http://www.colorzilla.com/gradient-editor/" target="_blank">Ultimate CSS Gradient Generator from ColorZilla</a></h1>
<p>A powerful Photoshop-like CSS gradient editor from <a title="ColorZilla" href="http://www.colorzilla.com/" target="_blank">ColorZilla</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=iq_kEHXB5wU:XTZIgx61aAs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=iq_kEHXB5wU:XTZIgx61aAs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=iq_kEHXB5wU:XTZIgx61aAs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=iq_kEHXB5wU:XTZIgx61aAs:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/iq_kEHXB5wU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2011/12/21/ultimate-css-gradient-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://designparc.com/2011/12/21/ultimate-css-gradient-generator/</feedburner:origLink></item>
		<item>
		<title>HTML Color Hex Code and Matching Colors</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/NHHwzqiIEgI/</link>
		<comments>http://designparc.com/2011/12/20/html-color-hex-code-and-matching-colors/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 22:19:56 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[HEX colors]]></category>
		<category><![CDATA[Website design]]></category>
		<category><![CDATA[GoldenRod]]></category>
		<category><![CDATA[HTML Hex Code]]></category>
		<category><![CDATA[RGB colors]]></category>
		<category><![CDATA[Website design colors]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3773</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F20%2Fhtml-color-hex-code-and-matching-colors%2F"><br /> <br /> </a> <p>1. A visual list of HTML Hex code colors with associated matching color options. Awesome for any Website design arsenal. Example: <a title="HTML Hex Code and Matching Colors - GoldenRod" href="http://www.html-color-names.com/goldenrod.php" target="_blank">GoldenRod HTML Hex Code + Matching Colors</a></p> <p>2. Wikipedia is also another great source for finding HEX and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F20%2Fhtml-color-hex-code-and-matching-colors%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F20%2Fhtml-color-hex-code-and-matching-colors%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>1. A visual list of HTML Hex code colors with associated matching color options. Awesome for any Website design arsenal. Example: <a title="HTML Hex Code and Matching Colors - GoldenRod" href="http://www.html-color-names.com/goldenrod.php" target="_blank">GoldenRod HTML Hex Code + Matching Colors</a></p>
<p>2. Wikipedia is also another great source for finding HEX and RGB color names. Example: <a title="HEX yellow" href="http://simple.wikipedia.org/wiki/Yellow" target="_blank">Yellow</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=NHHwzqiIEgI:D9F0ikZzyKQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=NHHwzqiIEgI:D9F0ikZzyKQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=NHHwzqiIEgI:D9F0ikZzyKQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=NHHwzqiIEgI:D9F0ikZzyKQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/NHHwzqiIEgI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2011/12/20/html-color-hex-code-and-matching-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://designparc.com/2011/12/20/html-color-hex-code-and-matching-colors/</feedburner:origLink></item>
		<item>
		<title>Testimonial – Plato’s Closet, Spokane</title>
		<link>http://feedproxy.google.com/~r/Designparc/~3/sZ5oKBeil5Q/</link>
		<comments>http://designparc.com/2011/12/05/testimonial-platos-closet-spokane/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 23:06:59 +0000</pubDate>
		<dc:creator>designparc</dc:creator>
				<category><![CDATA[Loyalty cards]]></category>
		<category><![CDATA[Promotional Materials]]></category>
		<category><![CDATA[Recycled paper]]></category>
		<category><![CDATA[Testimonials]]></category>
		<category><![CDATA[Plato's Closet Spokane]]></category>
		<category><![CDATA[Testimonial]]></category>

		<guid isPermaLink="false">http://designparc.com/?p=3728</guid>
		<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F05%2Ftestimonial-platos-closet-spokane%2F"><br /> <br /> </a> <p>&#8220;Got the shipment [of new <a title="Loyalty cards - New design for 2012 for Plato's Closet owners, including Facebook Page link" href="http://designparc.com/loyalty-cards/" target="_blank">loyalty cards</a> for 2012], they look great! Thanks again!&#8221;</p> <p>Elyse Maurer, Manager<br /> <a title="Plato's Closet, Spokane" href="https://www.facebook.com/pages/Platos-Closet-Spokane/159604010767064" target="_blank">Plato&#8217;s Closet, Spokane</a><br /> December 2011</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F05%2Ftestimonial-platos-closet-spokane%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdesignparc.com%2F2011%2F12%2F05%2Ftestimonial-platos-closet-spokane%2F&amp;source=Designparc&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><em>&#8220;Got the shipment [of new <a title="Loyalty cards - New design for 2012 for Plato's Closet owners, including Facebook Page link" href="http://designparc.com/loyalty-cards/" target="_blank">loyalty cards</a> for 2012], they look great! Thanks again!&#8221;</em></p>
<p>Elyse Maurer, Manager<br />
<a title="Plato's Closet, Spokane" href="https://www.facebook.com/pages/Platos-Closet-Spokane/159604010767064" target="_blank">Plato&#8217;s Closet, Spokane</a><br />
December 2011</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Designparc?a=sZ5oKBeil5Q:4qUygBsZC-k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Designparc?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=sZ5oKBeil5Q:4qUygBsZC-k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Designparc?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Designparc?a=sZ5oKBeil5Q:4qUygBsZC-k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Designparc?i=sZ5oKBeil5Q:4qUygBsZC-k:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Designparc/~4/sZ5oKBeil5Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://designparc.com/2011/12/05/testimonial-platos-closet-spokane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://designparc.com/2011/12/05/testimonial-platos-closet-spokane/</feedburner:origLink></item>
	</channel>
</rss>

