<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Tag: portfolio sorting - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/portfolio-sorting</link>
		<description>Support Forum - Tag: portfolio sorting - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 21:37:26 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/tags/portfolio-sorting" rel="self" type="application/rss+xml" />

		<item>
			<title>sethbutler on "Coherence Portfolio Sort by Title"</title>
			<link>http://www.kriesi.at/support/topic/coherence-portfolio-sort-by-title#post-79983</link>
			<pubDate>Tue, 16 Oct 2012 17:01:17 +0000</pubDate>
			<dc:creator>sethbutler</dc:creator>
			<guid isPermaLink="false">79983@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;A mighty thanks to you both for the easy workarounds! That custom page ID sort will prove to be VERY helpful!&#60;/p&#62;
&#60;p&#62;Cheers&#60;br /&#62;
Seth
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Coherence Portfolio Sort by Title"</title>
			<link>http://www.kriesi.at/support/topic/coherence-portfolio-sort-by-title#post-77856</link>
			<pubDate>Sat, 29 Sep 2012 07:22:52 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">77856@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Add following code to the bottom of functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function loop_portfolio_query( $location )
{
   if ( $location == &#38;#39;loop-portfolio&#38;#39; )
    {
        global $avia_config;
         if(isset($avia_config[&#38;#39;new_query&#38;#39;])) {
            $avia_config[&#38;#39;new_query&#38;#39;][&#38;#39;orderby&#38;#39;] = &#38;quot;title&#38;quot;;
            $avia_config[&#38;#39;new_query&#38;#39;][&#38;#39;order&#38;#39;] = &#38;quot;ASC&#38;quot;;
            query_posts($avia_config[&#38;#39;new_query&#38;#39;]);
         }
   }
}
add_action( &#38;#39;avia_action_query_check&#38;#39; , &#38;#39;loop_portfolio_query&#38;#39;, 10, 1 );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can replace ASC with DESC for a descending order. &#60;/p&#62;
&#60;p&#62;If you want to sort a certain portfolio page by using the &#34;random&#34; parameter try following code. Instead of 15 insert your portfolio page id (which should display the items/entries in a random order).&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function loop_portfolio_query( $location )
{
   if ( $location == &#38;#39;loop-portfolio&#38;#39; )
    {
        global $avia_config;
         if(isset($avia_config[&#38;#39;new_query&#38;#39;])) {
            $avia_config[&#38;#39;new_query&#38;#39;][&#38;#39;orderby&#38;#39;] = &#38;quot;title&#38;quot;;
            $avia_config[&#38;#39;new_query&#38;#39;][&#38;#39;order&#38;#39;] = &#38;quot;ASC&#38;quot;;

if(is_page(&#38;#39;15&#38;#39;))
{
            $avia_config[&#38;#39;new_query&#38;#39;][&#38;#39;orderby&#38;#39;] = &#38;quot;rand&#38;quot;;
}
            query_posts($avia_config[&#38;#39;new_query&#38;#39;]);
         }
   }
}
add_action( &#38;#39;avia_action_query_check&#38;#39; , &#38;#39;loop_portfolio_query&#38;#39;, 10, 1 );&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>theaklarsen on "Coherence Portfolio Sort by Title"</title>
			<link>http://www.kriesi.at/support/topic/coherence-portfolio-sort-by-title#post-77684</link>
			<pubDate>Thu, 27 Sep 2012 22:37:08 +0000</pubDate>
			<dc:creator>theaklarsen</dc:creator>
			<guid isPermaLink="false">77684@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I would like to second this request. I'm using Coherence as well.&#60;br /&#62;
I've tried the suggestion above - going into the editor in WordPress, modifying the helper-template-logic.php file  as noted and updating the file. Doesn't work, it still sorts by ID. &#60;/p&#62;
&#60;p&#62;If I could change the ID, that might help. But, it would be best if I could just have the portfolio items sort alphabetically by title.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Coherence Portfolio Sort by Title"</title>
			<link>http://www.kriesi.at/support/topic/coherence-portfolio-sort-by-title#post-72277</link>
			<pubDate>Wed, 22 Aug 2012 10:31:12 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">72277@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Open includes &#38;gt; helper-template-logic.php and find this code under avia_set_portfolio_query() function.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;new_query&#38;#39;] = array(	&#38;#39;orderby&#38;#39; 	=&#38;gt; &#38;#39;ID&#38;#39;,
												&#38;#39;order&#38;#39; 	=&#38;gt; &#38;#39;ASC&#38;#39;,
												&#38;#39;paged&#38;#39; 	=&#38;gt; get_query_var( &#38;#39;paged&#38;#39; ),
												&#38;#39;posts_per_page&#38;#39; =&#38;gt; $itemcount,
												&#38;#39;tax_query&#38;#39; =&#38;gt; array( 	array( 	&#38;#39;taxonomy&#38;#39; 	=&#38;gt; &#38;#39;portfolio_entries&#38;#39;,&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change order from ASC to DESC, random. You can also visit &#60;a href=&#34;http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters&#60;/a&#62; for more options.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sethbutler on "Coherence Portfolio Sort by Title"</title>
			<link>http://www.kriesi.at/support/topic/coherence-portfolio-sort-by-title#post-72104</link>
			<pubDate>Tue, 21 Aug 2012 15:11:44 +0000</pubDate>
			<dc:creator>sethbutler</dc:creator>
			<guid isPermaLink="false">72104@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi All,&#60;/p&#62;
&#60;p&#62;Does anyone know of a simple way to resort the portfolio items alphabetically (by title) ?&#60;/p&#62;
&#60;p&#62;I'm guessing it would be an edit in the PHP loop for portfolio but didn't want to risk breaking the theme.&#60;/p&#62;
&#60;p&#62;Any ideas welcome!&#60;/p&#62;
&#60;p&#62;Many Thanks&#60;br /&#62;
Seth&#60;/p&#62;
&#60;p&#62;P.S. Also, is there any way to run a separate sort as random?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Flagship Portfolio in random order"</title>
			<link>http://www.kriesi.at/support/topic/flagship-portfolio-in-random-order#post-64985</link>
			<pubDate>Wed, 11 Jul 2012 09:39:47 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">64985@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Just a hint - the pro version of the post types order plugin allows you to exclude queries with an orderby parameter. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blont on "Flagship Portfolio in random order"</title>
			<link>http://www.kriesi.at/support/topic/flagship-portfolio-in-random-order#post-64954</link>
			<pubDate>Wed, 11 Jul 2012 07:58:55 +0000</pubDate>
			<dc:creator>blont</dc:creator>
			<guid isPermaLink="false">64954@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello, I deactivated the &#34;post types order&#34;-plugin and now it works.&#60;br /&#62;
  Supadupa! Thanks for your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Flagship Portfolio in random order"</title>
			<link>http://www.kriesi.at/support/topic/flagship-portfolio-in-random-order#post-64820</link>
			<pubDate>Tue, 10 Jul 2012 19:35:59 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">64820@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;The snippet above should work. Try to remove browser histroy then refresh the page. You will notice that the portfolio entries will change order every page load.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blont on "Flagship Portfolio in random order"</title>
			<link>http://www.kriesi.at/support/topic/flagship-portfolio-in-random-order#post-64710</link>
			<pubDate>Tue, 10 Jul 2012 10:16:10 +0000</pubDate>
			<dc:creator>blont</dc:creator>
			<guid isPermaLink="false">64710@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dude, thanks for the function.&#60;br /&#62;
I pasted it in the file but every time I load the page (start page with some images from portfolio, or the portfolio page) I get the same pics in the same order.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Flagship Portfolio in random order"</title>
			<link>http://www.kriesi.at/support/topic/flagship-portfolio-in-random-order#post-63155</link>
			<pubDate>Mon, 02 Jul 2012 09:15:20 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">63155@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Open up functions.php and add following code to the bottom of the file:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function loop_portfolio_query( $location )
{
   if ( $location == &#38;#39;loop-portfolio&#38;#39; )
    {
        global $avia_config;
         if(isset($avia_config[&#38;#39;new_query&#38;#39;])) {
            $avia_config[&#38;#39;new_query&#38;#39;][&#38;#39;orderby&#38;#39;] = &#38;quot;rand&#38;quot;;
            query_posts($avia_config[&#38;#39;new_query&#38;#39;]);
         }
   }
}
add_action( &#38;#39;avia_action_query_check&#38;#39; , &#38;#39;loop_portfolio_query&#38;#39;, 10, 1 );&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>blont on "Flagship Portfolio in random order"</title>
			<link>http://www.kriesi.at/support/topic/flagship-portfolio-in-random-order#post-63108</link>
			<pubDate>Sun, 01 Jul 2012 18:13:16 +0000</pubDate>
			<dc:creator>blont</dc:creator>
			<guid isPermaLink="false">63108@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello, I need help: How can I change the sorting of portfolio items?&#60;br /&#62;
I need a random order.&#60;br /&#62;
thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Portfolio Sort buttons"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sort-buttons#post-53974</link>
			<pubDate>Mon, 30 Apr 2012 16:24:24 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">53974@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi ovistomih,&#60;/p&#62;
&#60;p&#62;I'm not sure that is something that could be easily done without a brute force css hack to move it once its loaded. The function that creates the sortable categories actually replaces the header text when its a portfolio template. To move it, you would need to change where that function gets spit out and then create new css to accommodate the change in layout.&#60;/p&#62;
&#60;p&#62;If you are interested in going down that path, open up the template_portfolio.php in the main theme files. The code you'll be looking at is between lines ~40-70.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "Portfolio Sort buttons"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sort-buttons#post-53963</link>
			<pubDate>Mon, 30 Apr 2012 15:47:21 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">53963@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi ovistomih,&#60;/p&#62;
&#60;p&#62;I'm not as familiar with Avisio as I am with other themes so I'm going to flag this for other support members in hopes they can give you specific instructions.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ovistomih on "Portfolio Sort buttons"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sort-buttons#post-53593</link>
			<pubDate>Thu, 26 Apr 2012 21:16:19 +0000</pubDate>
			<dc:creator>ovistomih</dc:creator>
			<guid isPermaLink="false">53593@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;any hints?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ovistomih on "Portfolio Sort buttons"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sort-buttons#post-53287</link>
			<pubDate>Wed, 25 Apr 2012 14:40:04 +0000</pubDate>
			<dc:creator>ovistomih</dc:creator>
			<guid isPermaLink="false">53287@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;This is my portfolio page: &#60;a href=&#34;http://nycdoggies.com/dogphotovideo/&#34; rel=&#34;nofollow&#34;&#62;http://nycdoggies.com/dogphotovideo/&#60;/a&#62;&#60;br /&#62;
I would like the sort buttons to show between the breadcrumb navigation and the photos. &#60;/p&#62;
&#60;p&#62;As you see, I moved the title to the header, the original place for the sort buttons, so they can't be there anymore
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Portfolio Sort buttons"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sort-buttons#post-53245</link>
			<pubDate>Wed, 25 Apr 2012 05:55:21 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">53245@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Can you give us a link?&#60;/p&#62;
&#60;p&#62;You can find the breadcrumbs on header.php.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ovistomih on "Portfolio Sort buttons"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sort-buttons#post-53141</link>
			<pubDate>Tue, 24 Apr 2012 17:32:16 +0000</pubDate>
			<dc:creator>ovistomih</dc:creator>
			<guid isPermaLink="false">53141@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In portfolio pages, how do I move the sort buttons below the breadcrumb navigation and above portfolio items?&#60;br /&#62;
I don't want them in the headline space.&#60;/p&#62;
&#60;p&#62;Thank you for your help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jessicahonikman on "Portfolio - Sorting - Reset"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sorting-reset#post-13076</link>
			<pubDate>Thu, 17 Feb 2011 18:14:30 +0000</pubDate>
			<dc:creator>jessicahonikman</dc:creator>
			<guid isPermaLink="false">13076@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Here you go:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pastebin.com/raw.php?i=ayRgr8nZ&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/raw.php?i=ayRgr8nZ&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thank you so much!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Portfolio - Sorting - Reset"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sorting-reset#post-13056</link>
			<pubDate>Thu, 17 Feb 2011 11:53:57 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">13056@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Without seeing the code you've modified it difficult to figure out what's causing the bug. Can you upload the contents of template_portfolio.php to &#60;a href=&#34;http://pastebin.com&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com&#60;/a&#62; and I'll take a look.&#60;/p&#62;
&#60;p&#62;I can't make any promises about a fix as this is a modification but I'll certainly give it a go.&#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jessicahonikman on "Portfolio - Sorting - Reset"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sorting-reset#post-13031</link>
			<pubDate>Thu, 17 Feb 2011 03:57:41 +0000</pubDate>
			<dc:creator>jessicahonikman</dc:creator>
			<guid isPermaLink="false">13031@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey there - I'm having the same problem, only the fix above didn't resolve it. Any chance you could take a look or point me to the right place in style.css or css/style3.css where the error may have occurred? I'm sure that I am responsible for this bug, but anything you could do to help me remedy this would be greatly appreciated! You'll notice that I'm attempting to hide the &#34;read more&#34; button as well as the &#34;sort by date&#34; from the portfolio page... perhaps the bug is related to those changes? Thanks! &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://345design.com/wordpress/work/&#34; rel=&#34;nofollow&#34;&#62;http://345design.com/wordpress/work/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Portfolio - Sorting - Reset"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sorting-reset#post-10855</link>
			<pubDate>Mon, 03 Jan 2011 10:46:17 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10855@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tinsterman on "Portfolio - Sorting - Reset"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sorting-reset#post-10837</link>
			<pubDate>Mon, 03 Jan 2011 03:24:25 +0000</pubDate>
			<dc:creator>Tinsterman</dc:creator>
			<guid isPermaLink="false">10837@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Silly me! Many thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Portfolio - Sorting - Reset"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sorting-reset#post-10788</link>
			<pubDate>Sat, 01 Jan 2011 12:27:31 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10788@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
you changed the padding for the main container in style.css - this modification causes your problem :)&#60;/p&#62;
&#60;p&#62;Change:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#main{ /*main area, contains all content and sidebars*/
float:left;
/*padding:35px 0 0 0;*/
position:relative;
width:100%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#main{ /*main area, contains all content and sidebars*/
float:left;
padding:35px 0 0 0;
position:relative;
width:100%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and everything should work as expected :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tinsterman on "Portfolio - Sorting - Reset"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sorting-reset#post-10783</link>
			<pubDate>Fri, 31 Dec 2010 17:50:32 +0000</pubDate>
			<dc:creator>Tinsterman</dc:creator>
			<guid isPermaLink="false">10783@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sure check out the portfolio I am building here: &#60;a href=&#34;http://www.54solutions.co.uk/cms/portfolio/&#34; rel=&#34;nofollow&#34;&#62;http://www.54solutions.co.uk/cms/portfolio/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Portfolio - Sorting - Reset"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sorting-reset#post-10532</link>
			<pubDate>Thu, 23 Dec 2010 06:17:37 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10532@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
do you have a link for us? It can be a css problem.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tinsterman on "Portfolio - Sorting - Reset"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-sorting-reset#post-10526</link>
			<pubDate>Thu, 23 Dec 2010 01:26:58 +0000</pubDate>
			<dc:creator>Tinsterman</dc:creator>
			<guid isPermaLink="false">10526@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I have a 3 Column sortable portfolio. When I click on each portfolio category everything sorts nicely. &#60;/p&#62;
&#60;p&#62;However, when I click on &#34;All&#34; to reset the portfolio back to its original state, portfolio items hide behind each other, and only a few items show. &#60;/p&#62;
&#60;p&#62;Any suggestions? I am using Wordpress 3.0.1
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
