<?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>Fred Marion</title>
	<atom:link href="http://www.fredmarion.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fredmarion.com</link>
	<description>Coding is fun</description>
	<lastBuildDate>Tue, 21 May 2013 02:49:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Beautiful CSS3/HTML 5 navigation bar</title>
		<link>http://www.fredmarion.com/beautiful-css3html-5-navigation-bar/</link>
		<comments>http://www.fredmarion.com/beautiful-css3html-5-navigation-bar/#comments</comments>
		<pubDate>Thu, 09 May 2013 18:46:41 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=592</guid>
		<description><![CDATA[Smashing Magazine has a good post on Beautiful and User-Friendly Navigation Menus. I really liked the following example they posted: So, I decided to take a shot at making similar buttons using CSS and HTML. Here&#8217;s the result: Button 1<span class="ellipsis">&#8230;</span> <span class="read-more"><a href="http://www.fredmarion.com/beautiful-css3html-5-navigation-bar/">Read more &#8250;</a></span>]]></description>
				<content:encoded><![CDATA[<p>Smashing Magazine has a good post on <a href="http://www.smashingmagazine.com/2009/02/04/50-beautiful-and-user-friendly-navigation-menus/" target="_blank">Beautiful and User-Friendly Navigation Menus</a>. I really liked the following example they posted:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/05/html-css-navigation-bar.jpg"/></p>
<p>So, I decided to take a shot at making similar buttons using CSS and HTML. Here&#8217;s the result:</p>
<style type="text/css">
.nav-buttons {
    font-size: 19px;
    padding-left: 0;
}
.nav-buttons li {
    background-color: #40a5ec;
    box-shadow: 0 8px 6px -6px black;
    color: white;
    display: inline-block;
    font-family: Century Gothic;
    font-weight: bold;
    height: 20px;
    margin-top: 1em;
    opacity: 0.9;
    padding: 2em 0 0.5em 0.7em;
}
.nav-buttons li a {
    color: white;
    display: inline-block;
    text-decoration: none;
}
.nav-buttons li:hover {
    cursor: pointer;
    opacity: 1;
}
.nav-buttons li:hover span.arrow-down {
    position: relative;
    opacity: 1;
}
.arrow-down {
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #40a5ec;
    left: -10px;
    float: right;
    bottom: -26px;
    position: relative;
}
</style>
<ul class="nav-buttons">
<li><a href="#">Button 1<span class="arrow-down"></span></a></li>
<li><a href="#">Button 2<span class="arrow-down"></span></a></li>
<li><a href="#">Button 3<span class="arrow-down"></span></a></li>
</ul>
<p>There are two interesting things to note here: 1) I used CSS triangles to generate the carrots underneath the boxes; and 2) I&#8217;m using a couple fun CSS3 effects, specifically box shadow and opacity. Here&#8217;s the HTML:</p>
<style>code strong {color:red;}</style>
<p><code><br />
<strong>&lt;ul&nbsp;class="nav-buttons"&gt;</strong><br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a&nbsp;href="#"&gt;Button&nbsp;1&lt;span&nbsp;class="arrow-down"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a&nbsp;href="#"&gt;Button&nbsp;2&lt;span&nbsp;class="arrow-down"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a&nbsp;href="#"&gt;Button&nbsp;3&lt;span&nbsp;class="arrow-down"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />
<strong>&lt;/ul&gt;</strong><br />
</code></p>
<p>And the CSS:</p>
<p><code><br />
<strong>.nav-buttons {</strong><br />
    font-size: 19px;<br />
    padding-left: 0;<br />
<strong>}</strong><br />
<strong>.nav-buttons li {</strong><br />
    background-color: #40a5ec;<br />
    box-shadow: 0 8px 6px -6px black;<br />
    color: white;<br />
    display: inline-block;<br />
    font-family: Century Gothic;<br />
    font-weight: bold;<br />
    height: 20px;<br />
    margin-top: 1em;<br />
    opacity: 0.9;<br />
    padding: 2em 0 0.5em 0.7em;<br />
<strong>}</strong><br />
<strong>.nav-buttons li a {</strong><br />
    color: white;<br />
    display: inline-block;<br />
    text-decoration: none;<br />
<strong>}</strong><br />
<strong>.nav-buttons li:hover {</strong><br />
    cursor: pointer;<br />
    opacity: 1;<br />
<strong>}</strong><br />
<strong>.nav-buttons li:hover span.arrow-down {</strong><br />
    position: relative;<br />
    opacity: 1;<br />
<strong>}</strong><br />
<strong>.arrow-down {</strong><br />
    width: 0;<br />
    height: 0;<br />
    border-left: 10px solid transparent;<br />
    border-right: 10px solid transparent;<br />
    border-top: 10px solid #40a5ec;<br />
    left: -10px;<br />
    float: right;<br />
    bottom: -26px;<br />
    position: relative;<br />
<strong>}</strong><br />
</code></p>
<p>One of the things I really like about opacity is it gives you a fast way to add hover effects to buttons. I like setting the button&#8217;s normal opacity to 90 percent, then popping it up to 100 percent on hover. It&#8217;s subtle, but it does the job. Feel free to use this code and let us know in the comments section below if you have any ideas for making it better&#8230; I&#8217;ve also posted it to <a href="http://jsfiddle.net/jtsdx/1/" target="_blank">JSFiddle</a> so you can play around with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/beautiful-css3html-5-navigation-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice call-to-action button</title>
		<link>http://www.fredmarion.com/nice-call-to-action-button/</link>
		<comments>http://www.fredmarion.com/nice-call-to-action-button/#comments</comments>
		<pubDate>Wed, 08 May 2013 13:39:31 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[Graphic Art]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=576</guid>
		<description><![CDATA[Call to action buttons can&#8217;t look like every other button on your site, or they&#8217;re going to get treated like every other button on your site (i.e. ignored). So, I was Googling around for some inspiration yesterday when I came<span class="ellipsis">&#8230;</span> <span class="read-more"><a href="http://www.fredmarion.com/nice-call-to-action-button/">Read more &#8250;</a></span>]]></description>
				<content:encoded><![CDATA[<p>Call to action buttons can&#8217;t look like every other button on your site, or they&#8217;re going to get treated like every other button on your site (i.e. ignored). So, I was Googling around for some inspiration yesterday when I came across HongKiat&#8217;s post: <a href="http://www.hongkiat.com/blog/call-to-action-button-templates/" target="_blank">38 “Call To Action” Button Templates That Really Stand Out</a>. Unfortunately, the <a href="http://designmoo.com/4113/bright-3d-buttons/" target="_blank">download link</a> for the button I liked the most was broken! Here&#8217;s an example of the button:</p>
<style type="text/css">
.call-to-action-btn {
    background-image: url('http://s16.postimg.org/be2991ddx/call_to_action_blank.png');
    background-repeat: no-repeat;
    box-shadow: 0 18px 16px -10px black;
    color: white!important;
    display: block;
    font-family: arial;
    font-size: 1.2em;
    font-style: italic;
    height: 68px;
    margin: 0 auto;
    opacity: 0.95;
    text-indent: 1em;
    text-decoration: none!important;
    width: 232px;
}
.top-line {
    display: block;
    font-style: normal;
    padding-top: 0.5em;
}
.bottom-line {
    display: block;
    text-indent: 1em;
}
.call-to-action-btn:hover {
    color: #fff;
    opacity: 1;
}
code strong {
    color: red;
}
</style>
<p><a href="#" class="call-to-action-btn"><span class="top-line">CALL TO ACTION</span> <span class="bottom-line">Second line</span></a></p>
<p>So, I recreated the PSD for the button: <a href="http://www.fredmarion.com/wp-content/uploads/2013/05/call-to-action.zip" target="_blank">http://www.fredmarion.com/wp-content/uploads/2013/05/call-to-action.zip</a>. I also offered up an example of using the button with HTML text (instead of adding the text as a graphic in Photoshop) here: <a href="http://jsfiddle.net/nq7ja/3/" target="_blank">http://jsfiddle.net/nq7ja/3/</a>. To recap:</p>
<p>Here&#8217;s the HTML you&#8217;ll need to use:</p>
<p><code>&lt;a href="#" class="call-to-action-btn"&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="top-line"&gt;CALL TO ACTION&lt;/span&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="bottom-line"&gt;Second line&lt;/span&gt;<br/>&lt;/a&gt;</code></p>
<p>And here&#8217;s the CSS:</p>
<p><code><strong>.call-to-action-btn</strong> {<br />
    &nbsp;&nbsp;&nbsp;&nbsp;background-image: url('http://s16.postimg.org/be2991ddx/call_to_action_blank.png');<br />
    &nbsp;&nbsp;&nbsp;&nbsp;background-repeat: no-repeat;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;box-shadow: 0 18px 16px -10px black;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;color: white;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;display: block;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;font-family: arial;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;font-size: 1.2em;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;font-style: italic;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;height: 68px;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;opacity: 0.95;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;text-indent: 1em;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;text-decoration: none;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;width: 232px;<br />
}<br />
<strong>.top-line</strong> {<br />
    &nbsp;&nbsp;&nbsp;&nbsp;display: block;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;font-style: normal;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;padding-top: 0.5em;<br />
}<br />
<strong>.bottom-line</strong> {<br />
    &nbsp;&nbsp;&nbsp;&nbsp;display: block;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;text-indent: 1em;<br />
}<br />
<strong>.call-to-action-btn:hover</strong> {<br />
    &nbsp;&nbsp;&nbsp;&nbsp;color: #fff;<br />
    &nbsp;&nbsp;&nbsp;&nbsp;opacity: 1;<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/nice-call-to-action-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fred&#8217;s list of the best WordPress plugins for bloggers</title>
		<link>http://www.fredmarion.com/freds-list-of-the-best-wordpress-plugins-for-bloggers/</link>
		<comments>http://www.fredmarion.com/freds-list-of-the-best-wordpress-plugins-for-bloggers/#comments</comments>
		<pubDate>Wed, 01 May 2013 00:36:58 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=567</guid>
		<description><![CDATA[I&#8217;ve spent dozens of hours trying out crappy WordPress plugins. The list below is the product of more than five years of focused WordPress development. These plugins do their jobs, and they do it well: 1) WORDPRESS EMAIL NEWSLETTERS Wysija<span class="ellipsis">&#8230;</span> <span class="read-more"><a href="http://www.fredmarion.com/freds-list-of-the-best-wordpress-plugins-for-bloggers/">Read more &#8250;</a></span>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve spent dozens of hours trying out crappy WordPress plugins. The list below is the product of more than five years of focused WordPress development. These plugins do their jobs, and they do it well:</p>
<p><strong>1) WORDPRESS EMAIL NEWSLETTERS</strong></p>
<p><a href="http://wordpress.org/extend/plugins/wysija-newsletters/" target="_blank">Wysija Newsletters</a>. Use a WYSIWYG editor to create a beautiful email newsletter, or set up Wysija to automatically send beautiful newsletters on timed intervals or whenever you post new content.</p>
<p><strong>2) WORDPRESS ECOMMERCE</strong></p>
<p>You can&#8217;t beat <a href="https://shopplugin.net/" target="_blank">Shopp</a> for ease of implementation with smaller-scale ecommerce sites. I&#8217;ve heard it doesn&#8217;t scale great if you&#8217;re expecting hundreds of orders a day, but it&#8217;s perfect for 90 percent of the small family shops out there. Note that Shopp is a paid plugin. It costs $55, but it&#8217;s simple, straightforward and very customizable.</p>
<p><strong>3) WORDPRESS BACKUPS</strong></p>
<p>Schedule automatic backups of your WordPress site for free with <a href="http://wordpress.org/extend/plugins/updraftplus/" target="_blank">UpdraftPlus</a>. This is essential if you&#8217;re building WordPress sites for clients.</p>
<p><strong>4) WORDPRESS POPUP FOOTER EMAIL SUBSCRIPTIONS</strong></p>
<p>I like how simple <a href="http://wordpress.org/extend/plugins/dreamgrow-scroll-triggered-box/" target="_blank">Dreamgrow&#8217;s Scroll Triggered Box</a> is. As the user scrolls down the page, a box prompting them to sign up for your site&#8217;s email newsletter appears. Replace the contents of the box and style it however you&#8217;d like. You can even set how often you want the box to appear to visitors.</p>
<p><strong>5) WORDPRESS PRIVATE SITE</strong></p>
<p>Want your WordPress site to be private while you&#8217;re fine-tuning its presentation? <a href="http://wordpress.org/extend/plugins/jonradio-private-site/" target="_blank">Jonradio&#8217;s Private Site</a> limits access to whoever you want. I used to like <a href="http://wordpress.org/extend/plugins/password-protect-wordpress/screenshots/" target="_blank">Password Protect WordPress</a>, but I&#8217;ve noticed it causes issues with a lot of plugins.</p>
<p><strong>6) WORDPRESS TWITTER BOOTSTRAP CSS</strong></p>
<p>If you want to utilize Twitter Bootstrap&#8217;s design elements and functionality (like modal popups), <a href="http://wordpress.org/extend/plugins/wordpress-bootstrap-css/" target="_blank">WordPress Twitter Bootstrap CSS</a> make it incredible simple.</p>
<p><strong>7) WORDPRESS POLLS</strong></p>
<p>YOP Poll offers very simple polling software for WordPress. Set up your poll and display graphical results publicly or save them for private viewing. The only limitation I know of is limiting users to voting once per poll. <a href="http://wordpress.org/extend/plugins/yop-poll/" target="_blank">YOP Poll</a> is great if that&#8217;s not a concern.</p>
<p><strong>8) WORDPRESS FACEBOOK COMMENTS</strong></p>
<p><a href="http://wordpress.org/extend/plugins/facebook-comments-plugin/" target="_blank">Great software by Alex Moss</a> that allows your blog readers to comment on your posts with their Facebook logins. No more setting up those annoying WordPress accounts!.</p>
<p><strong>9) WORDPRESS TWITTER FEED EMBEDS</strong></p>
<p>Twitter Feed Pro is a paid plugin ($19.99), but I really like how easy it is to use. There are free alternatives out there if you&#8217;re just posting tweets from a single Twitter account. If you want to post tweets from lots of different Twitter accounts, though, <a href="http://3doordigital.com/wordpress/plugins/wp-twitter-feed-pro/" target="_blank">Twitter Feed Pro</a> makes it simple. There may be good free alternative out there, but there are literally hundreds of Twitter plugins for WordPress, and I had trouble finding an up-to-date, functional plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/freds-list-of-the-best-wordpress-plugins-for-bloggers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full list of Major League Baseball (MLB) teams</title>
		<link>http://www.fredmarion.com/full-list-of-major-league-baseball-mlb-teams/</link>
		<comments>http://www.fredmarion.com/full-list-of-major-league-baseball-mlb-teams/#comments</comments>
		<pubDate>Fri, 12 Apr 2013 15:33:25 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[baseball]]></category>
		<category><![CDATA[lists]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=562</guid>
		<description><![CDATA[Sometimes you need to just copy and paste a list of all the current major league baseball teams (say, for instance, when you&#8217;re organizing a 13-run pool, which is what I&#8217;m doing). Here&#8217;s that list: Arizona Diamondbacks Atlanta Braves Baltimore<span class="ellipsis">&#8230;</span> <span class="read-more"><a href="http://www.fredmarion.com/full-list-of-major-league-baseball-mlb-teams/">Read more &#8250;</a></span>]]></description>
				<content:encoded><![CDATA[<p>Sometimes you need to just copy and paste a list of all the current major league baseball teams (say, for instance, when you&#8217;re organizing a <a href="http://www.free13runpool.com/13-run-pool-rules" target="_blank">13-run pool</a>, which is what I&#8217;m doing). Here&#8217;s that list:</p>
<p>Arizona Diamondbacks<br />
Atlanta Braves<br />
Baltimore Orioles<br />
Boston Red Sox<br />
Chicago Cubs<br />
Chicago White Sox<br />
Cincinnati Reds<br />
Cleveland Indians<br />
Colorado Rockies<br />
Detroit Tigers<br />
Houston Astros<br />
Kansas City Royals<br />
Los Angeles Angels of Aneheim<br />
Los Angeles Dodgers<br />
Miami Marlins<br />
Milwaukee Brewers<br />
Minnesota Twins<br />
New York Mets<br />
New York Yankees<br />
Oakland Athletics<br />
Philadelphia Phillies<br />
Pittsburgh Pirates<br />
San Diego Padres<br />
San Francisco Giants<br />
Seattle Mariners<br />
St. Louis Cardinals<br />
Tampa Bay Rays<br />
Texas Rangers<br />
Toronto Blue Jays<br />
Washington Nationals</p>
<p>This is a full list of all 30 of the Major League Baseball (MLB) teams as of 2013.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/full-list-of-major-league-baseball-mlb-teams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to share photos privately with Picasa</title>
		<link>http://www.fredmarion.com/how-to-share-photos-privately-with-picasa/</link>
		<comments>http://www.fredmarion.com/how-to-share-photos-privately-with-picasa/#comments</comments>
		<pubDate>Sun, 17 Mar 2013 16:54:00 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[Graphic Art]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Picasa]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=531</guid>
		<description><![CDATA[1) Download and install Picasa: http://picasa.google.com/ 2) Launch Picasa. 3) Choose where you want Picasa to search for pictures. I chose the first option: 4) Choose whether you want Picasa to be your default photo-viewing app (which means it will<span class="ellipsis">&#8230;</span> <span class="read-more"><a href="http://www.fredmarion.com/how-to-share-photos-privately-with-picasa/">Read more &#8250;</a></span>]]></description>
				<content:encoded><![CDATA[<p>1) Download and install Picasa: <a href="http://picasa.google.com/" target="_blank">http://picasa.google.com/</a> </p>
<p>2) Launch Picasa.</p>
<p>3) Choose where you want Picasa to search for pictures. I chose the first option:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/3.png"/></p>
<p>4) Choose whether you want Picasa to be your default photo-viewing app (which means it will launch when you click on a photo to view it). I’d recommend selecting the second option: “Don’t use Picasa Photo Viewer”, so you can continue to use the programs you’re already familiar with:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/4.png"/></p>
<p>5) Create a new album to store all the photos from an event:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/5.png"/></p>
<p>6) Give the event a name, date and description:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/6.png"/></p>
<p>Now, that album will show up on the left-hand navigation menu:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/6b.png"/></p>
<p>7) Click on your folders to find the photos you want to add to the Album, then click and drag those photos onto the new event you’ve created:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/7.png"/></p>
<p>In the example above, I’m dragging a photo from the Screen Captures folder to the “San Francisco Event” Album.</p>
<p>8) If you can’t find a folder of photos that’s on your computer, you’ll need to add it to Picasa. Do that by going to <code>File --> Add Folder</code> to Picasa:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/8.png"/></p>
<p>Then, locate the folder on the left-hand side of the popup window, and click the “Scan Always” button and hit “OK”:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/8b.png"/></p>
<p>You should now be able to see that folder in Picasa here:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/8c.png"/></p>
<p>9) After you’ve added all the photos to the Events folder, you can now privately share that folder. Do so by Clicking on the Event name, then Clicking the Share drop-down and selecting “Enable Sync”:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/9.png"/></p>
<p>10) Login with your Google Account:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/10.png"/></p>
<p>11) You may get an error message saying your account is not enabled for Google Photos. If that’s the case, click the Yes button to fix the problem:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/11.png"/></p>
<p>You will then be prompted to Sign in to Picasa Web Albums:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/11b.png"/></p>
<p>After you’re signed in, go back to Picasa and click enable sync again (you’ll probably have to login again, too):</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/11c.png"/></p>
<p>12) In the Enable Sync popup, click the “Change Settings” button:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/12.png"/></p>
<p>13) Change the “Default Upload Size” to “Original Size” (if you plan to make high-quality prints of the photos), then click OK:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/13.png"/></p>
<p>14) Click the Sync button:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/14.png"/></p>
<p>15) Now, click the Share Dropdown again and select “Limited: Anyone with the Link”:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/15.png"/></p>
<p>16) Click the “View online” link:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/16.png"/></p>
<p>17) From your browser, click the “Share” button: </p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/17.png"/></p>
<p>Enter the email address of the person you want to share the album with:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/17b.png"/></p>
<p>Now, the person who gets the email from you can download all the photos you’ve put in your events folder.</p>
<p>That&#8217;s it! If you have any questions, please feel free to use the comment form below, and I&#8217;ll try my best to answer them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/how-to-share-photos-privately-with-picasa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use Bracketpress for WordPress (for free)</title>
		<link>http://www.fredmarion.com/how-to-use-bracketpress-for-wordpress-for-free/</link>
		<comments>http://www.fredmarion.com/how-to-use-bracketpress-for-wordpress-for-free/#comments</comments>
		<pubDate>Sat, 16 Mar 2013 04:23:26 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[BracketPress]]></category>
		<category><![CDATA[March Madness]]></category>
		<category><![CDATA[NCAA]]></category>
		<category><![CDATA[Wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=482</guid>
		<description><![CDATA[Bracketpress makes it simple to run your own NCAA bracket contest on your WordPress site. Here are the steps to get it up and running. 1) Install and activate the Bracketpress Plugin: http://wordpress.org/extend/plugins/bracketpress/ 2) Install and activate the BracketPress Login/Register<span class="ellipsis">&#8230;</span> <span class="read-more"><a href="http://www.fredmarion.com/how-to-use-bracketpress-for-wordpress-for-free/">Read more &#8250;</a></span>]]></description>
				<content:encoded><![CDATA[<style type="text/css">
article.post img {
    border: 2px solid #333;
}
</style>
<p>Bracketpress makes it simple to run your own NCAA bracket contest on your WordPress site. Here are the steps to get it up and running.</p>
<p><strong>1)</strong> Install and activate the <code>Bracketpress Plugin</code>: <a href="http://wordpress.org/extend/plugins/bracketpress/" target="_blank">http://wordpress.org/extend/plugins/bracketpress/</a></p>
<p><strong>2)</strong> Install and activate the <code>BracketPress Login/Register Widget</code>: <a href="http://wordpress.org/extend/plugins/bracketpress-login-and-registration-widget/" target="_blank">http://wordpress.org/extend/plugins/bracketpress-login-and-registration-widget/</a>. NOTE: This step is optional. You could use a different login process, but the widget makes things easier as you&#8217;ll see below.</p>
<p><strong>3)</strong> Upon installation, Bracketpress creates two unpublished blog pages. Navigate to your <code>Pages</code> and publish both of the drafts. They&#8217;ll be titled: &#8220;My Brackets&#8221; and &#8220;BracketPress Leaderboard&#8221;:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/bracketpress-pages.png"/></p>
<p>Change both posts from <code>Draft</code> to <code>Published</code>.</p>
<p><strong>4)</strong> Flush your permalinks to make sure your brackets will show up after you published them (this is required because the plugin creates a new post type for brackets). Do this by going to <code>Settings --> Permalinks</code>, and clicking &#8220;Save Changes.&#8221; You don&#8217;t actually have to change anything, just clicking &#8220;Save Changes&#8221; flushes your permalinks:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/bracketpress-permalinks.png"/></p>
<p><strong>5)</strong> Upon installation, the <code>BracketPress Login plugin</code> creates a new widget type that you&#8217;ll need to add to your site&#8217;s sidebar. Do this by going to <code>Appearance --> Widgets</code> and dragging the <code>Bracket Widget</code> into your sidebar, then saving the changes:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/bracketpress-widgets-1024x478.png"/></p>
<p><strong>6)</strong> Enter data for the brackets by hand (if the tournament draw hasn&#8217;t been done yet, you can enter dummy data or last year&#8217;s data). Do this by going to <code>Brackets --> Team Data</code> and entering the Team, Conference, Region and Seeds: </p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/entering-bracket-data-bracketpress.png"/></p>
<p><strong>7)</strong> Create a login for a user. Do this by going to <code>Users --> And New</code>, and typing in the required information. Set the user&#8217;s <code>Role</code> to <code>Subscriber</code>:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/add-bracketpress-user.png"></p>
<p><strong>8)</strong> Visit your site&#8217;s Bracket page. This will the URL of the WordPress page you published that&#8217;s called &#8220;My Brackets&#8221;. When I was testing the plugin, that page was http://www.fredmarion/my-brackets/. Once you&#8217;re there, login using the subscriber account that you set up in Step 7:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/my-brackets.png"/></p>
<p><strong>9)</strong> Now, that user will be able to view and edit their bracket:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/my-brackets-logged-in.png"/></p>
<p><strong>10)</strong> To update the scores for each round, you&#8217;re going to need to manually update the master bracket. Do this by going to <code>Brackets --> Master Bracket --> View</code>:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/view-master-bracket.png"/></p>
<p>When you&#8217;re viewing that page, click the &#8220;Edit Bracket&#8221; button and enter the game data. If you&#8217;re testing, you can click the &#8220;Randomize&#8221; button to fill out the form with random guesses.</p>
<p><strong>11)</strong> Process your scores. The plugin compares the brackets of everyone who plays against the &#8220;Master Bracket&#8221; to determine the scores each round. To process the scores, you first fill in the Master Bracket (as noted in Step 10), then you need to process the scores. Do that by going to <code>Brackets --> Settings and Scoring</code>. There, scroll to the very bottom of the page and hit the <code>Process Scoring</code> button.</p>
<p>If you run into any problems with this step, it&#8217;s probably because your master bracket <code>Page ID</code> isn&#8217;t correct. Make sure the <code>Page ID</code> for your Master Bracket matches the <code>Page ID</code> listed under <code>Brackets --> Settings and Scoring</code>:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/03/scoring-bracket.png"/></p>
<p>Unsure what your page ID is? This <a href="http://wordpress.org/support/topic/find-page-id" target="_blank">post</a> can help.</p>
<p><strong>12)</strong> View the leaderboard. After you&#8217;ve processed your scores, you can point everyone to the leaderboard page that you set up in Step 3. There, they can see how they&#8217;re doing in the competition.</p>
<p>Best of luck getting your bracket up and running. Many props go out to the BracketPress team for creating a stellar app!</p>
<p><strong>Alternative titles:</strong></p>
<ul>
<li>How to set up Bracketpress</li>
<li>How to run March Madness brackets on your WordPress site</li>
<li>Bracketpress tutorial</li>
<li>Bracketpress tips and tricks</li>
<li>How to install Bracketpress</li>
</li>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/how-to-use-bracketpress-for-wordpress-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free sheet music downloads</title>
		<link>http://www.fredmarion.com/free-sheet-music-downloads/</link>
		<comments>http://www.fredmarion.com/free-sheet-music-downloads/#comments</comments>
		<pubDate>Sun, 10 Feb 2013 19:17:20 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[sheet music]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=447</guid>
		<description><![CDATA[Download as Word document: As the Deer (.doc)]]></description>
				<content:encoded><![CDATA[<p>Download as Word document: <a href="http://www.fredmarion.com/wp-content/uploads/2013/02/as-the-deer-sheet-music-free-download.doc" target="_blank">As the Deer (.doc)</a><br />
<br/><br />
<br/><br />
<a href="http://www.fredmarion.com/wp-content/uploads/2013/02/as-the-deer-free-image-download.png"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/as-the-deer-free-image-download.png"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/free-sheet-music-downloads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best dog food by price</title>
		<link>http://www.fredmarion.com/best-dog-food-by-price/</link>
		<comments>http://www.fredmarion.com/best-dog-food-by-price/#comments</comments>
		<pubDate>Sun, 10 Feb 2013 17:16:04 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[dog lover]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[best dog foods]]></category>
		<category><![CDATA[dog food]]></category>
		<category><![CDATA[dog food by price]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=286</guid>
		<description><![CDATA[Our vet rails against cheap dog food. She did everything but roll her eyes when we told her what we were feeding Maddy last time we visited her office. &#8220;You have to get on DogFoodAdvisor.com to find the best dog<span class="ellipsis">&#8230;</span> <span class="read-more"><a href="http://www.fredmarion.com/best-dog-food-by-price/">Read more &#8250;</a></span>]]></description>
				<content:encoded><![CDATA[<p>Our vet rails against cheap dog food. She did everything but roll her eyes when we told her what we were feeding Maddy last time we visited her office. &#8220;You have to get on <a href="http://www.dogfoodadvisor.com/" target="_blank">DogFoodAdvisor.com</a> to find the best dog food,&#8221; she said. DogFoodAdvisor ranks dog foods on a scale of one to five, with 5 stars being the best. Right now, 54 dog food brands make their list of 5-star dog food. Since DogFoodAdvisor doesn&#8217;t rank the foods by price, I figured I&#8217;d do that to save you some time.</p>
<p>Where possible, I priced the food on Amazon.com (with links) so Prime members can get free shipping in some cases, and – in most states – avoid sales tax, too!</p>
<p>Before diving into the list, here are some interesting facts:</p>
<ul>
<li><strong>Cheapest 5-star dog food not on Amazon:</strong> <a href="http://www.infiniapetfood.com/products/default.aspx" target="_blank">Infinia</a> ($1.33 per pound)</li>
<li><strong>Cheapest 5-star dog foods with Amazon Prime:</strong> <a href="http://www.amazon.com/gp/product/B0002ML7S0/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B0002ML7S0&#038;linkCode=as2&#038;tag=oddkoacom-20" target="_blank">Premium Edge Weight Reduction</a> ($1.46 per pound) or <a href="http://www.amazon.com/gp/product/B005KSPWDW/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B005KSPWDW&#038;linkCode=as2&#038;tag=oddkoacom-20" target="_blank">Wysong Optimal</a> ($1.56 per pound)</li>
<li><strong>Most expensive 5-star dog food (dehydrated):</strong> <a href="http://www.amazon.com/gp/product/B000285MC6/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000285MC6&#038;linkCode=as2&#038;tag=oddkoacom-20" target="_blank">Wysong Archetype</a> ($20.44 per pound). Note that Wysong Archetype is actually dehydrated dog food that you add water to and serve like a gravy. It definitely goes further per ounce than dry food.</li>
<li><strong>Most expensive 5-star dog food (dry):</strong> <a href="http://www.bubbly-petz.com/oven-baked-tradition-grain-free-chicken-dry-dog-food/" target="_blank">Oven-Baked Tradition</a> ($11.68 per pound). We normally buy dog food bags that weigh around 30 lbs. That would mean we&#8217;d be paying $350!</li>
<li><strong>Best dog food for older dogs:</strong> <a href="http://www.amazon.com/gp/product/B00AR64ZIK/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B00AR64ZIK&#038;linkCode=as2&#038;tag=oddkoacom-20" target="_blank">Orijen Senior</a> ($2.42 per pound). Note that this is the only dog food for seniors that makes DogFoodAdvisor&#8217;s list of the 5-star dog foods.</li>
<li><strong>Best dog food for puppies:</strong> <a href="http://www.amazon.com/gp/product/B000W5P0J4/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000W5P0J4&#038;linkCode=as2&#038;tag=oddkoacom-20" target="_blank">Orijen Puppy</a> ($2.60 per pound). Note that this is the only dog food for puppies that makes DogFoodAdvisor&#8217;s list of the 5-star dog foods.</li>
<li><strong>Best dog food for dogs with allergies:</strong> <a href="http://www.brotherscomplete.com/Brothers-Complete/ALLERGY-FORMULA.html" target="_blank">Brothers Complete Allergy Formula</a> ($4.60 per pound). Note that this is the only dog food for dogs with allergies that makes DogFoodAdvisor&#8217;s list of the 5-star dog foods.</li>
<li><strong>Number of 5-star dog foods that qualify for Amazon Prime:</strong> 15 (as noted with the Prime icons below)</li>
<li><strong>Cost of Walmart&#8217;s cheapest dog food:</strong> <a href="http://www.walmart.com/ip/Ol-Roy-Complete-Nutrition-Dog-Food-50-lb-Dogs/22004588" target="_blank">Ol&#8217; Roy</a> ($0.40 per pound)</li>
<li><strong>Most unusual ingredients in the best dog food:</strong> <a href="http://www.amazon.com/gp/product/B003P9XGDG/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B003P9XGDG&#038;linkCode=as2&#038;tag=oddkoacom-20" target="_blank">Blue Buffalo</a> contains salmon and sweet potatoes. <a href="http://www.amazon.com/gp/product/B0030C5ELK/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B0030C5ELK&#038;linkCode=as2&#038;tag=oddkoacom-20" target="_blank">Evo</a> contains cottage cheese and dried chicory root (along with herring and salmon), <a href="http://www.amazon.com/gp/product/B000GTN6L0/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000GTN6L0&#038;linkCode=as2&#038;tag=oddkoacom-20" target="_blank">Fromm</a> contains cauliflower, blueberries, Wisconsin cheddar cheese and parsley, and <a href="http://www.amazon.com/gp/product/B005KSPWDW/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B005KSPWDW&#038;linkCode=as2&#038;tag=oddkoacom-20" target="_blank">Wysong Optimal</a> contains shreds of freeze-dried raw organic chicken.</li>
</ul>
<style type="text/css">
.products {
    margin-top: 1em;
}
.prodwrapper a {
    color: #333;
    text-decoration: none;
}
.prodwrapper a h3 span {
    color: #FF6600;
}
.prodwrapper {
    clear: both;
    padding: 0.2em 1em 1em;
    border-top: 1px dotted #333;
}
.prodwrapper:hover a h3 {
    text-decoration: underline;
}
.prodwrapper img {
    float: left;
    padding-bottom: 1em;
}
.prodwrapper span {
    display: block;
    font-weight: bold;
}
.prodwrapper span span {
    display: inline;
    font-weight: normal;
}
.ppp {
    color:red;
}
.ppp span {
    color: black;
    font-style: italic;
}
</style>
<div class="products">
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"><a href="http://www.amazon.com/gp/product/B002BR9GUU/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002BR9GUU&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Acana Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/arcana-dry-dog-food1.png" alt="Acana Dog Food"/></span><span>Category: <span itemprop="category">Dry Dog Food</span></span><span>Weight: <span itemprop="weight">29.7 lbs</span></span><span>Price: <span itemprop="price">$84.95</span></span><span class="ppp">Price Per Pound: <span>$2.86</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B009LQFFFO/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B009LQFFFO&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Acana Regionals Grain-Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/arcana-regionals-dog-food.png" alt="Acana Regionals Grain-Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">28.6 lbs</span></span> <span>Price: <span itemprop="price">$73.95</span></span> <span class="ppp">Price Per Pound: <span>$2.59</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B00APBDFBU/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00APBDFBU&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Amicus Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amicus-adult-dry-dog-food.png" alt="Amicus Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">5.5 lbs</span></span> <span>Price: <span itemprop="price">$20.45</span></span> <span class="ppp">Price Per Pound: <span>$3.71</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B004QSX6OO/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004QSX6OO&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Annamaet Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/annamaet-dog-food.png" alt="Annamaet Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">16.1 lbs</span></span> <span>Price: <span itemprop="price">$44.99</span></span> <span class="ppp">Price Per Pound: <span>$2.79</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000UYAYU2/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000UYAYU2&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Artemis Fresh Mix Maximal Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/artemis-fresh-mix-maximal-dog-food.png" alt="Artemis Fresh Mix Maximal Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$60.99</span></span> <span class="ppp">Price Per Pound: <span>$2.03</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0063540ES/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0063540ES&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Artemis Osopure Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/artemis-osopure-dog-food.png" alt="Artemis Osopure Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">20 lbs</span></span> <span>Price: <span itemprop="price">$37.99</span></span> <span class="ppp">Price Per Pound: <span>$1.90</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B004Y6KK6K/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004Y6KK6K&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Back to Basics Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/back-to-basics-dog-food.png" alt="Back to Basics Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">27 lbs</span></span> <span>Price: <span itemprop="price">$76.50</span></span> <span class="ppp">Price Per Pound: <span>$2.83</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B003P9XGDG/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B003P9XGDG&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Blue Buffalo Wilderness Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/blue-buffalo-wilderness-dog-food1.png" alt="Blue Buffalo Wilderness Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">24 lbs</span></span> <span>Price: <span itemprop="price">$53.08</span></span> <span class="ppp">Price Per Pound: <span>$2.21</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.brotherscomplete.com/Brothers-Complete/ALLERGY-FORMULA.html" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Brothers Complete Allergy Formula Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/brothers-complete-allergy-formula-dog-food.png" alt="Brothers Complete Allergy Formula Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">5 lbs</span></span> <span>Price: <span itemprop="price">$22.99</span></span> <span class="ppp">Price Per Pound: <span>$4.60</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.brotherscomplete.com/Brothers-Complete/WHITE-MEAT-FORMULA.html" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Brothers Complete Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/brothers-complete-dog-food.png" alt="Brothers Complete Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">5 lbs</span></span> <span>Price: <span itemprop="price">$22.99</span></span> <span class="ppp">Price Per Pound: <span>$4.60</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B00AN6ERF0/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00AN6ERF0&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">By Nature Organics Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/by-nature-organics-dog-food.png" alt="By Nature Organics Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">12.5 lbs</span></span> <span>Price: <span itemprop="price">$39.17</span></span> <span class="ppp">Price Per Pound: <span>$3.14</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B002ANA68G/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002ANA68G&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Canidae Grain Free Pure Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/canidae-dog-food.png" alt="Canidae Grain Free Pure Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$58.99</span></span> <span class="ppp">Price Per Pound: <span>$1.97</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B006H7EAHE/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B006H7EAHE&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Canidae Single Grain Protein Plus Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/canidae-dog-food-protein-plus.png" alt="Canidae Single Grain Protein Plus Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$56.99</span></span> <span class="ppp">Price Per Pound: <span>$1.90</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B001BCUBFK/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001BCUBFK&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Castor and Pollux Natural Ultramix Grain-Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/castor-and-pllux-natural-ultramix-dog-food.png" alt="Castor and Pollux Natural Ultramix Grain-Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">29.8 lbs</span></span> <span>Price: <span itemprop="price">$55.99</span></span> <span>Subscription Available</span> <span class="ppp">Price Per Pound: <span>$1.88</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B001BCOZ3E/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001BCOZ3E&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Castor and Pollux Organix Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/castor-and-pollux-organix-dog-food.png" alt="Castor and Pollux Organix Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">25.6 lbs</span></span> <span>Price: <span itemprop="price">$54.99</span></span> <span>Subscription Available</span> <span class="ppp">Price Per Pound: <span>$2.15</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B008EXEQI2/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B008EXEQI2&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">DNA Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/dna-dried-n-alive-dog-food.png" alt="DNA Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">3 lbs</span></span> <span>Price: <span itemprop="price">$30</span></span> <span class="ppp">Price Per Pound: <span>$10</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B009LQBGM0/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B009LQBGM0&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Dr. Tim’s Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/dr-tims-dog-food.png" alt="Dr. Tim’s Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$72.86</span></span> <span class="ppp">Price Per Pound: <span>$2.43</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0090Y8HK2/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0090Y8HK2&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Dr. Tim’s Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/dr-tims-kinesis-grain-free-dog-food.png" alt="Dr. Tim’s Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$79.30</span></span> <span class="ppp">Price Per Pound: <span>$2.64</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B004MJQ6YY/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004MJQ6YY&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Earthborn Holistic Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/earthborn-holistic-dog-food.png" alt="Earthborn Holistic Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">28 lbs</span></span> <span>Price: <span itemprop="price">$48.91</span></span> <span class="ppp">Price Per Pound: <span>$1.75</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0028H3IE8/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0028H3IE8&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Earthborn Holistic Primitive Natural Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/earthborn-wells-holistic-primitive-dog-food.png" alt="Earthborn Holistic Primitive Natural Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">14 lbs</span></span> <span>Price: <span itemprop="price">$28.99</span></span> <span class="ppp">Price Per Pound: <span>$2.07</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B005KSPVQ0/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B005KSPVQ0&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Evanger’s Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/evangers-grain-free-dog-food.png" alt="Evanger’s Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">4.4 lbs</span></span> <span>Price: <span itemprop="price">$21.95</span></span> <span class="ppp">Price Per Pound: <span>$4.99</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0030C5ELK/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0030C5ELK&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">EVO Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/evo-dog-food.png" alt="EVO Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">28.6 lbs</span></span> <span>Price: <span itemprop="price">$69.99</span></span> <span class="ppp">Price Per Pound: <span>$2.45</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000GTN6L0/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000GTN6L0&#038;linkCode=as2&#038;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Fromm Four Star Nutritionals Grain-Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/fromm-four-star-nutritionals-dog-food.png" alt="Fromm Four Star Nutritionals Grain-Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">5 lbs</span></span> <span>Price: <span itemprop="price">$29.97</span></span> <span class="ppp">Price Per Pound: <span>$5.99</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000W5QT3A/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000W5QT3A&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Go! Fit and Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/go-fit-and-free-dog-food.png" alt="Go! Fit and Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">25 lbs</span></span> <span>Price: <span itemprop="price">$65.09</span></span> <span class="ppp">Price Per Pound: <span>$2.60</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B006X1A9VU/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B006X1A9VU&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Grandma Lucy’s Pureformance Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/grandma-lucys-pureformance-dog-food.png" alt="Grandma Lucy’s Pureformance Dog Food"/></span> <span>Category: <span itemprop="category">Freeze-Dried Dog Food</span></span> <span>Weight: <span itemprop="weight">10 lbs</span></span> <span>Price: <span itemprop="price">$62.29</span></span> <span class="ppp">Price Per Pound: <span>$6.23</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B008MLKFSG/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B008MLKFSG&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Great Life Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/great-life-buffalo-dog-food.png" alt="Great Life Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">7 lbs</span></span> <span>Price: <span itemprop="price">$30</span></span> <span class="ppp">Price Per Pound: <span>$4.29</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B00609PJEC/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00609PJEC&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Hi-Tek Naturals Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/hi-tek-naturals-dog-food.png" alt="Hi-Tek Naturals Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$47.38</span></span> <span class="ppp">Price Per Pound: <span>$1.58</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="https://nakeddingo.com/products/dog/holistic_blend/254" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Holistic Blend Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/holistic-blend-dog-food.png" alt="Holistic Blend Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">25 lbs</span></span> <span>Price: <span itemprop="price">$49.95</span></span> <span class="ppp">Price Per Pound: <span>$2.00</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B003C5JYG6/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B003C5JYG6&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Horizon Legacy Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/horizon-legacy-dog-food.png" alt="Horizon Legacy Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">28.7 lbs</span></span> <span>Price: <span itemprop="price">$56.99</span></span> <span class="ppp">Price Per Pound: <span>$1.99</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.infiniapetfood.com/products/default.aspx" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Infinia Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/infinia-dog-food.png" alt="Infinia Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$39.99</span></span> <span class="ppp">Price Per Pound: <span>$1.33</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0073GIXGW/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0073GIXGW&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Innova Prime Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/innova-prime-dog-food.png" alt="Innova Prime Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">25 lbs</span></span> <span>Price: <span itemprop="price">$53.99</span></span> <span class="ppp">Price Per Pound: <span>$2.16</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0089A62MS/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0089A62MS&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Merrick Classic Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/merrick-classic-dog-food.png" alt="Merrick Classic Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$51.99</span></span> <span class="ppp">Price Per Pound: <span>$1.73</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0089A5JY0/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0089A5JY0&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Merrick Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/merrick-grain-free-dog-food.png" alt="Merrick Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">25 lbs</span></span> <span>Price: <span itemprop="price">$52.99</span></span> <span class="ppp">Price Per Pound: <span>$2.12</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000FAI0J8/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000FAI0J8&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Nature’s Logic Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/natures-logic-dog-food.png" alt="Nature’s Logic Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">26.4 lbs</span></span> <span>Price: <span itemprop="price">$55.49</span></span> <span class="ppp">Price Per Pound: <span>$2.10</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000PEAMP4/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000PEAMP4&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Nature’s Variety Instinct Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/natures-variety-instinct-dog-food.png" alt="Nature’s Variety Instinct Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">25.3 lbs</span></span> <span>Price: <span itemprop="price">$54.98</span></span> <span>Subscription Available</span> <span class="ppp">Price Per Pound: <span>$2.17</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B004B9COVY/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004B9COVY&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Nutrisca Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/nutrisca-dog-food.png" alt="Nutrisca Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">4 lbs</span></span> <span>Price: <span itemprop="price">$12.99</span></span> <span>Subscription Available</span> <span class="ppp">Price Per Pound: <span>$3.25</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0092EYWLS/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0092EYWLS&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Only Natural Pet MaxMeat Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/only-natural-pet-maxmeat-dog-food.png" alt="Only Natural Pet MaxMeat Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">2 lbs</span></span> <span>Price: <span itemprop="price">$22.97</span></span> <span class="ppp">Price Per Pound: <span>$11.49</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000W5SLEU/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000W5SLEU&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Orijen Adult Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/orijen-adult-dog-food.png" alt="Orijen Adult Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">29.7 lbs</span></span> <span>Price: <span itemprop="price">$89.95</span></span> <span class="ppp">Price Per Pound: <span>$3.03</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000W5P0J4/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000W5P0J4&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Orijen Puppy Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/orijen-puppy-dog-food.png" alt="Orijen Puppy Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">29.7 lbs</span></span> <span>Price: <span itemprop="price">$77.29</span></span> <span class="ppp">Price Per Pound: <span>$2.60</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B00AR64ZIK/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00AR64ZIK&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Orijen Senior Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/orijen-senior-dog-food.png" alt="Orijen Senior Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">29.7 lbs</span></span> <span>Price: <span itemprop="price">$71.99</span></span> <span class="ppp">Price Per Pound: <span>$2.42</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.bubbly-petz.com/oven-baked-tradition-grain-free-chicken-dry-dog-food/" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Oven-Baked Tradition Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/ovenbaked-tradition-dog-food.png" alt="Oven-Baked Tradition Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">5 lbs</span></span> <span>Price: <span itemprop="price">$58.40</span></span> <span class="ppp">Price Per Pound: <span>$11.68</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://us.petvalu.com/in-our-store/products/dog/performatrin-ultra-grain-free-adult-0" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Performatrin Ultra Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/performatrin-ultra-dog-food1.png" alt="Performatrin Ultra Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">26.5 lbs</span></span> <span>Price: <span itemprop="price">$49.99</span></span> <span class="ppp">Price Per Pound: <span>$1.89</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000VH3MYI/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000VH3MYI&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Pinnacle Peak Protein Formula Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/pinnacle-peak-dog-food.png" alt="Pinnacle Peak Protein Formula Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$64.99</span></span> <span class="ppp">Price Per Pound: <span>$2.17</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.doctorsfinest.com/Pioneer_Naturals_Venison_Grain_Free_Dog_Food_p/pngfvd.htm" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Pioneer Naturals Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/pioneer-naturals-dog-food.png" alt="Pioneer Naturals Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$55.30</span></span> <span class="ppp">Price Per Pound: <span>$1.84</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0002ML7S0/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0002ML7S0&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Premium Edge Healthy Weight Reduction Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/premium-edge-dog-food.png" alt="Premium Edge Healthy Weight Reduction Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">35 lbs</span></span> <span>Price: <span itemprop="price">$50.99</span></span> <span class="ppp">Price Per Pound: <span>$1.46</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0077OP4V2/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0077OP4V2&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Solid Gold Barking at the Moon Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/solid-gold-barking-at-moon-dog-food.png" alt="Solid Gold Barking at the Moon Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">28.5 lbs</span></span> <span>Price: <span itemprop="price">$53.98</span></span> <span class="ppp">Price Per Pound: <span>$1.89</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.timberwolforganics.com/products.html" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">TimberWolf Platinum Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/timberwolf-organics-dog-food.png" alt="TimberWolf Platinum Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">24 lbs</span></span> <span>Price: <span itemprop="price">$64.20</span></span> <span class="ppp">Price Per Pound: <span>$2.68</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B00B1U7F10/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00B1U7F10&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Victor Grain Free Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/victor-grain-free-dog-food.png" alt="Victor Grain Free Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">30 lbs</span></span> <span>Price: <span itemprop="price">$43.50</span></span> <span class="ppp">Price Per Pound: <span>$1.45</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000VTTAMY/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000VTTAMY&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Wellness Core Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/welness-core-dog-food.png" alt="Wellness Core Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">26 lbs</span></span> <span>Price: <span itemprop="price">$55.99</span></span> <span>Subscription Available</span> <span class="ppp">Price Per Pound: <span>$2.15</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000VTQB6W/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000VTQB6W&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Wellness Core Reduced Fat Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/wellness-core-reduced-fat-dog-food.png" alt="Wellness Core Reduced Fat Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">26 lbs</span></span> <span>Price: <span itemprop="price">$57.99</span></span> <span>Subscription Available</span> <span class="ppp">Price Per Pound: <span>$2.23</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B000285MC6/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000285MC6&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Wysong Archetype Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/wysong-archetype-dog-food.png" alt="Wysong Archetype Dog Food"/></span> <span>Category: <span itemprop="category">Dehydrated Dog Food</span></span> <span>Weight: <span itemprop="weight">1 lbs</span></span> <span>Price: <span itemprop="price">$20.44</span></span> <span class="ppp">Price Per Pound: <span>$20.44</span></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B0048Z8OCO/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0048Z8OCO&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Wysong Epigen Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/wysong-epigen-dog-food.png" alt="Wysong Epigen Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">16 lbs</span></span> <span>Price: <span itemprop="price">$36.99</span></span> <span class="ppp">Price Per Pound: <span>$2.31</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B005KSPWDW/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B005KSPWDW&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">Wysong Optimal Performance Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/wysong-optimal-performance-dog-food.png" alt="Wysong Optimal Performance Dog Food"/></span> <span>Category: <span itemprop="category">Dry Dog Food</span></span> <span>Weight: <span itemprop="weight">32 lbs</span></span> <span>Price: <span itemprop="price">$49.79</span></span> <span class="ppp">Price Per Pound: <span>$1.56</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
<div itemscope itemtype="http://schema.org/Product" class="prodwrapper"> <a href="http://www.amazon.com/gp/product/B002AY5BHG/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002AY5BHG&amp;linkCode=as2&amp;tag=oddkoacom-20" itemprop="url" target="_blank"><br />
<h3><span itemprop="name">ZiwiPeak Daily Dog Food</span></h3>
<p> <span itemprop="image"><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/ziwipeak-dog-food.png" alt="ZiwiPeak Daily Dog Food"/></span> <span>Category: <span itemprop="category">Dehydrated Dog Food</span></span> <span>Weight: <span itemprop="weight">2.2 lbs</span></span> <span>Price: <span itemprop="price">$32.95</span></span> <span class="ppp">Price Per Pound: <span>$14.98</span></span> <span><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/amazon-prime.gif" /></span> </a> </div>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/best-dog-food-by-price/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example: How to use HTML5 microdata with products</title>
		<link>http://www.fredmarion.com/how-to-use-html5-microdata-with-products/</link>
		<comments>http://www.fredmarion.com/how-to-use-html5-microdata-with-products/#comments</comments>
		<pubDate>Sat, 09 Feb 2013 03:04:19 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[microdata]]></category>
		<category><![CDATA[products]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=342</guid>
		<description><![CDATA[Microdata gives web developers an incredible amount of precision when they&#8217;re communicating with search engines. I&#8217;d thought I&#8217;d try it out on a recent product-related blog post I did, and I was surprised to find that there wasn&#8217;t a simple<span class="ellipsis">&#8230;</span> <span class="read-more"><a href="http://www.fredmarion.com/how-to-use-html5-microdata-with-products/">Read more &#8250;</a></span>]]></description>
				<content:encoded><![CDATA[<p>Microdata gives web developers an incredible amount of precision when they&#8217;re communicating with search engines. I&#8217;d thought I&#8217;d try it out on a recent product-related blog post I did, and I was surprised to find that there wasn&#8217;t a simple and complete example of a product listing using microdata and HTML5. Here&#8217;s the code I came up with:</p>
<p><code style="padding:1em; background-color:#ADD8E6;">&lt;!DOCTYPE html&gt;<br />
&lt;html lang="en-US"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;head&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;title&gt;Microdata Test&lt;/title&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;meta charset="UTF-8"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/head&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;body&gt;<br />
<strong>&nbsp;&nbsp;&nbsp;&nbsp;&lt;div itemscope itemtype="http://schema.org/Product"&gt;</strong><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="http://www.amazon.com/gp/product/B002BR9GUU/" itemprop="url" target="_blank"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;h1&gt;&lt;span itemprop="name"&gt;Acana&lt;/span&gt;&lt;/h1&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span itemprop="image"&gt;&lt;img src="http://www.fredmarion.com/wp-content/uploads/2013/02/arcana-dry-dog-food.png" alt="Acana Dog Food"/&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span&gt;Category: &lt;span itemprop="category"&gt;Dry Dog Food&lt;/span&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span&gt;Weight: &lt;span itemprop="weight"&gt;29.7 lbs&lt;/span&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span&gt;Price: &lt;span itemprop="price"&gt;$84.95&lt;/span&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<strong>&lt;/div&gt;</strong><br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></p>
<p>As you can see in the bold area above, this example validates against Schema.org&#8217;s <a href="http://schema.org/Product" target="_blank">product requirements</a>. I also ran the full code through the <a href="http://validator.w3.org/nu/" target="_blank">W3C&#8217;s Nu validator</a> (which supports schemas/microdata), and found that it passed. Try running it through yourself and you should see a success message from the W3C indicating that the HTML was validated against the schema in addition to normal checks. Here&#8217;s the message you&#8217;ll see:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/02/schema-validation-microdata.png" alt="schema-validation-microdata" width="618" class="aligncenter" /></p>
<p>One interesting note in the example above: I used a new HTML5 feature that allows developers to embed block-level elements inside of links. If you look carefully, you&#8217;ll see that the &lt;h1&gt; tag (and the rest of the product information) is wrapped in a link.</p>
<p>All in all, I think microdata presents a significant advancement in enriching web content. It&#8217;s still rough, though. One part of the example above that irks me is the fact that I need to use wrapper spans to associate descriptions with the actual itemprop content. Until we get some new tags to work with, though, I don&#8217;t think there&#8217;s a good way around that. You&#8217;re going to need a superfluous tag to support common layout requirements. </p>
<p>If you have any suggestions or ideas, please post them below, and I&#8217;ll respond as soon as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/how-to-use-html5-microdata-with-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable wholesale pricing with the WordPress Shopp plugin</title>
		<link>http://www.fredmarion.com/how-to-enable-wholesale-pricing-with-the-wordpress-shopp-plugin/</link>
		<comments>http://www.fredmarion.com/how-to-enable-wholesale-pricing-with-the-wordpress-shopp-plugin/#comments</comments>
		<pubDate>Wed, 30 Jan 2013 03:13:34 +0000</pubDate>
		<dc:creator>Fredricky</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[Shopp plugin]]></category>
		<category><![CDATA[wholesale pricing]]></category>

		<guid isPermaLink="false">http://www.fredmarion.com/?p=258</guid>
		<description><![CDATA[The problem: Out-of-the-box, the WordPress Shopp plugin doesn&#8217;t support wholesale pricing. I&#8217;m including the steps to implement it below. If you&#8217;d like me to implement this solution for you, please contact me at info@fredmarion.com, and I&#8217;d be happy to do<span class="ellipsis">&#8230;</span> <span class="read-more"><a href="http://www.fredmarion.com/how-to-enable-wholesale-pricing-with-the-wordpress-shopp-plugin/">Read more &#8250;</a></span>]]></description>
				<content:encoded><![CDATA[<p><strong>The problem:</strong> Out-of-the-box, the <a href="https://shopplugin.net/" target="_blank">WordPress Shopp plugin</a> doesn&#8217;t support wholesale pricing. I&#8217;m including the steps to implement it below. If you&#8217;d like me to implement this solution for you, please contact me at info@fredmarion.com, and I&#8217;d be happy to do so for a fixed rate. I can also try to answer questions in the comment section below.</p>
<p><strong>Note:</strong> This is a client-side solution that utilizes the WordPress Shopp plugin&#8217;s &#8220;Add-on Options Menu.&#8221; That means that if you&#8217;re already offering Add-on&#8217;s in your shop (or if you plan to), this approach will need modified. In this case, my client didn&#8217;t need the Add-on field, so this solution works nicely. Since this approach is all client-side, you should have no problems upgrading the Shopp plugin when the time comes (although that could change if Shopp introduces their own Wholesale solution as noted below).</p>
<p><strong>The end result:</strong> Before we dive into the code, here&#8217;s what the end result looks like to an account holder who&#8217;s entitled to wholesale pricing:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/01/wholesale-pricing-shopp-enabled1.jpg"/></p>
<p>Here&#8217;s the end result for an account holder who&#8217;s <strong>not</strong> logged in or an account holder who&#8217;s logged in but <strong>not</strong> entitled to wholesale pricing:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/01/wholesale-pricing-shopp-disabled.jpg"/></p>
<p><strong>Supported browsers/platforms:</strong> This solution has been tested in IE8+ as well as the latest versions of Chrome and Firefox. This solution was originally written for WordPress 3.5+ and Shopp 1.2.5 (although it could very well work for earlier versions of WordPress and/or Shopp). </p>
<p><strong>Known limitations to this approach:</strong> First, since I&#8217;m unaffiliated with Shopp, I don&#8217;t know if this approach will work seamlessly with future releases of the Shopp plugin. Testing would need to be done at that time. Second, if you use add-ons in your product listing, this approach may need modified. In addition, full product prices (not wholesale prices are displayed on catalog pages). Users must navigate to individual product pages to see the actual wholesale price for each item. This shouldn&#8217;t be much of a limitation for most users. Here&#8217;s a screenshot to illustrate the point:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/01/known-limitation-wholesale-shopp-plugin.png"/></p>
<p><strong>Prerequisites:</strong> Before beginning, ensure you have &#8220;Enable Account Logins&#8221; turned on in your Shopp preferences. Do this by going to <code>Setup -> Preferences</code> and scrolling down to the &#8220;Checkout Preferences&#8221; section. Check the box that says &#8220;Enable Account Logins&#8221; and save your changes.</p>
<p><strong>Step 1: Creating a wholesale account:</strong> By default, the Shopp plugin has a &#8220;Wholesale&#8221; customer type available as an option. Start by setting up a wholesale account for testing. Navigate to <code>Shopp -> Customers -> Add New</code>. Fill in the following fields:</p>
<ul>
<li>First name</li>
<li>Last name</li>
<li>Email</li>
<li>New password</li>
<li>Confirm the new password</li>
</ul>
<p>Also, on the same screen, in the drop-down menu under &#8220;Settings,&#8221; be sure to select &#8220;Wholesale,&#8221; then save your changes:</p>
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/01/wholesale-user-shopp.jpg"/></p>
<p><strong>Step 2: Ensure your theme supports jQuery:</strong> The easiest way to do that is by going to your web site&#8217;s homepage and seeing if jQuery is getting loaded in the <code>&lt;head/&gt;</code> tag of your document. Alternatively, you can go to your theme&#8217;s <code>functions.php</code> file to see if jQuery is referenced there. If jQuery is <strong>not</strong> being loaded, you&#8217;ll need to add a reference to your <code>functions.php</code> that enables jQuery. Eric Martin has a great tutorial on doing just that <a href="http://www.ericmmartin.com/5-tips-for-using-jquery-with-wordpress/">here</a>.</p>
<p><strong>Step 3: Update your theme&#8217;s footer file:</strong> Go to <code>Appearance -> Editor -> Footer.php</code>, find the closing <code>&lt;/body&gt;</code> tag and insert the following just before the <code>&lt;/body&gt;</code> tag:</p>
<p><code class="padcode">&lt;!--wholesale pricing display or hide--&gt;<br />
&lt;?php if( current_user_can( 'shopp_wholesale' ) ) {<br />
$myString = "'Wholesale'";<br />
echo '&lt;script type="text/javascript"&gt;';<br />
echo 'jQuery(document).ready(function() {';<br />
echo 'jQuery("select.addons option:eq(0)").detach();';<br />
echo 'jQuery("select.addons option:eq(0)").html(jQuery("select.addons option:eq(0)").html().replace("+","")).parents("select").hide();';<br />
echo 'jQuery("select.addons option:eq(0)").html(jQuery("select.addons option:eq(0)").html().replace("-","")).parents("select").hide();var wholesaleText = jQuery("select.addons option:eq(0)").html();jQuery("ul.addons label").append(" " + wholesaleText);';<br />
echo 'var priceNum = jQuery("h3.price").text().replace("$",""); parseFloat(priceNum); var wholesaleDiscount = jQuery("ul.addons li label:eq(0)").html().slice(20,24); jQuery("h3.price").css("text-decoration","line-through"); var newPrice = priceNum - wholesaleDiscount; jQuery("h3.price").after("&lt;h3&gt;$" + newPrice.toFixed(2) + " (with your discount)&lt;/h3&gt;").addClass("price");';<br />
echo '});';<br />
echo '&lt;/script&gt;';<br />
} else {<br />
echo '&lt;script type="text/javascript"&gt;';<br />
echo 'jQuery(document).ready(function() {';<br />
echo 'jQuery(".addons").detach()';<br />
echo '});';<br />
echo '&lt;/script&gt;';<br />
}<br />
?&gt;<br />
&lt;/body&gt;<br />
</code></p>
<p>In a nutshell, the code above does the following:</p>
<ol>
<li>Determines if a user is entitled to see wholesale pricing.</li>
<li>Loads javascript when the page has downloaded that hides the add-on drop-down menu.</li>
<li>Adds &#8220;Wholesale Pricing&#8221; text.</li>
<li>Deletes the plus and minus signs from the &#8220;Wholesale Pricing&#8221; text.</li>
<li>Captures the regular price and subtracts the wholesale price from it.</li>
<li>Puts a line through the normal price.</li>
<li>Adds the new (wholesale) price to the screen.</li>
<li>If a user is not entitled to wholesale prices, the script detaches wholesale pricing from the DOM (effectively hiding the lower rate).</li>
</ol>
<p><strong>Step 4: Create a product with a wholesale price:</strong> In order for the script above to be effective, you must enter wholesale prices exactly as follows:</p>
<ol>
<li>Go to <code>Catalog -> Products</code> within the WordPress Admin.</li>
<li>Add a new product or click on an existing product to edit it.</li>
<li>Enter all the product details like you normally would, then click the <code>Settings -> Add-ons</code> option in the right-hand column:
<p><img src="http://www.fredmarion.com/wp-content/uploads/2013/01/shopp-addon-wholesale-price.png"/>
</li>
<li>Scroll down to the &#8220;Add-on Options Menus&#8221; box, which should have appeared after completing the previous step.</li>
<li>Create an add-on option menu titled &#8220;Wholesale&#8221; with a option titled &#8220;Savings&#8221;:
<p><a href="http://www.fredmarion.com/wp-content/uploads/2013/01/add-on-options-menus-shopp1.png"><img src="http://www.fredmarion.com/wp-content/uploads/2013/01/add-on-options-menus-shopp1.png"/></a></li>
<li><strong style="color:red">IMPORTANT:</strong> Enter your wholesale discount with a &#8220;minus&#8221; sign in front of it!</li>
<li>Save your changes.</li>
</ol>
<p><strong>Step 5: Test your changes:</strong> Log in with the wholesale account information that you created in <strong>Step 1</strong> above. See if the wholesale pricing is displayed as intended. Log out and log in with a customer account that does <strong>not</strong> have whole pricing entitled. Wholesale pricing should now be hidden.</p>
<p>Hopefully, this tutorial helps you enhance your e-commerce site. Best of luck, and feel free to post questions/suggestions below. I&#8217;ll do my best to answer them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fredmarion.com/how-to-enable-wholesale-pricing-with-the-wordpress-shopp-plugin/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
