<?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 - Recent Posts</title>
		<link>http://www.kriesi.at/support/</link>
		<description>Support Forum - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 12:08:37 +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/" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Unable to install zip file"</title>
			<link>http://www.kriesi.at/support/topic/unable-to-install-zip-file#post-112414</link>
			<pubDate>Mon, 20 May 2013 12:07:01 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112414@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi KyrreTex,&#60;/p&#62;
&#60;p&#62;I would suggest uploading via FTP if you are having issues. I did a video walkthrough here: &#60;a href=&#34;https://vimeo.com/channels/aviathemes/64927356&#34; rel=&#34;nofollow&#34;&#62;https://vimeo.com/channels/aviathemes/64927356&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andypeck on "Enfold - Responsive Slide Out Menu **ISSUE**"</title>
			<link>http://www.kriesi.at/support/topic/enfold-responsive-slide-out-menu-issue#post-112413</link>
			<pubDate>Mon, 20 May 2013 12:05:12 +0000</pubDate>
			<dc:creator>andypeck</dc:creator>
			<guid isPermaLink="false">112413@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;Im not working online hence me sending the clipular link:&#60;br /&#62;
&#60;a href=&#34;http://www.clipular.com/c?6044013=M66Ac_fn-H0sYdLewieu-vVGIMA&#38;amp;f=eb6d72c77f6f72f1ab09eaf9b55d3d7c&#34; rel=&#34;nofollow&#34;&#62;http://www.clipular.com/c?6044013=M66Ac_fn-H0sYdLewieu-vVGIMA&#38;amp;f=eb6d72c77f6f72f1ab09eaf9b55d3d7c&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If you dont think its the CSS code then ill have to wait till its all online and then if its still playing up ill come back to you. Although im pretty sure its due to me moving the line above the main menu so the error will still be there when its online. Before I do that, did you have any thoughts on the first question ---- creating the feint line across the menu. The link to my concept designs should show what im after&#60;/p&#62;
&#60;p&#62;Cheers as always Nick&#60;br /&#62;
Andy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Menu doesn&#039;t show up on Mobile"</title>
			<link>http://www.kriesi.at/support/topic/menu-doesnt-show-up-on-mobile#post-112412</link>
			<pubDate>Mon, 20 May 2013 12:04:57 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112412@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Andy,&#60;/p&#62;
&#60;p&#62;Which phone specifically? I'm not having any issues on my end when testing your site live right now so it could be a phone specific issue or even a phone+browser if you are running a non default browser on the phone as well.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Countdown clock"</title>
			<link>http://www.kriesi.at/support/topic/countdown-clock#post-112411</link>
			<pubDate>Mon, 20 May 2013 12:04:10 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">112411@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;There's no option for this atm but you can try to modify the theme files. Open up wp-content\themes\incarnation\config-events-calendar\config.php and replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$defaults 	= array( &#38;#39;posts_per_page&#38;#39; =&#38;gt; 2, &#38;#39;eventDisplay&#38;#39;=&#38;gt;&#38;#39;upcoming&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$defaults 	= array( &#38;#39;posts_per_page&#38;#39; =&#38;gt; 2, &#38;#39;eventDisplay&#38;#39;=&#38;gt;&#38;#39;upcoming&#38;#39;, &#38;#39;tax_query&#38;#39;=&#38;gt; array(
				array(
					&#38;#39;taxonomy&#38;#39; =&#38;gt; &#38;#39;tribe_events_cat&#38;#39;,
					&#38;#39;field&#38;#39; =&#38;gt; &#38;#39;slug&#38;#39;,
					&#38;#39;terms&#38;#39; =&#38;gt; &#38;#39;conferences&#38;#39;
				)
			) );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Instead of &#34;conferences&#34; use a custom event category which contains the events you want to use for the countdown clock. &#60;/p&#62;
&#60;p&#62;The change won't take effect immediately - if you don't want to wait for the next event remove following line:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$next_event = get_transient(&#38;#39;avia_next_event&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then reload your website and insert the code again.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Can&#039;t save portfolio categories"</title>
			<link>http://www.kriesi.at/support/topic/cant-save-portfolio-categories#post-112410</link>
			<pubDate>Mon, 20 May 2013 12:01:36 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112410@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi dweb,&#60;/p&#62;
&#60;p&#62;Please do not make multiple posts for the same issue. You've made 4 posts on this same issue and causes issues with our ability to respond and for others to search for solutions.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "seeking those with extreme patience"</title>
			<link>http://www.kriesi.at/support/topic/seeking-those-with-extreme-patience#post-112409</link>
			<pubDate>Mon, 20 May 2013 11:59:25 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112409@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi medwar1212,&#60;/p&#62;
&#60;p&#62;You may need to re-set your home page in the main theme options (the first tab). Also make sure in the Wordpress Settings&#38;gt;Reading, you don't have a page selected for the home page but instead have the display blog posts option (so no page selected for frontpage).&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Removing space left by blank widget title"</title>
			<link>http://www.kriesi.at/support/topic/removing-space-left-by-blank-widget-title#post-112408</link>
			<pubDate>Mon, 20 May 2013 11:57:01 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112408@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Pixelist,&#60;/p&#62;
&#60;p&#62;When there is no widget title, the space is only 3px or so. However, you can target all of them within the footer with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#footer .widgettitle {
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Or, you can use the widget ID to target them individually. Which would be more like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#text-2 .widgettitle {
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But you have to inspect the code with your browsers dev tools to see the ID of each widget.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Thumbnail of Comb Plugin."</title>
			<link>http://www.kriesi.at/support/topic/thumbnail-of-comb-plugin#post-112407</link>
			<pubDate>Mon, 20 May 2013 11:53:36 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112407@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;On the right hand side of the visual editor is a wordpress meta box named &#34;Featured Image&#34;. If you don't see it, go to the top right of your screen and click the Screen Options tab. Check the box for Featured Image then close the tab and you should now see the featured image box. &#60;/p&#62;
&#60;p&#62;You just click on Set Featured Image and it will prompt you on setting one.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Change menus&#039; background color?"</title>
			<link>http://www.kriesi.at/support/topic/change-menus-background-color#post-112406</link>
			<pubDate>Mon, 20 May 2013 11:51:49 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112406@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Drucci,&#60;/p&#62;
&#60;p&#62;The main menu is styled with this which you can add to your custom.css file or Quick CSS and change:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.main_menu {
background: #f8f8f8;
border: 1px solid #e1e1e1;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The sidebar only has a single background color for all widgets which is:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.sidebar .widget {
background: #fff;
color: #eee; /*default color of text*/
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And the footer:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#footer {
background: #fff;
border-top: 1px solid #EEEEEE;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Colors within the widgets however is a bit more complicated. Most can be done with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.sidebar .widget a{
color: #fff;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However there are quite a few that have specific color styling which needs to be targeted individually.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wolfross on "Can&#039;t edit text in advanced layout editor"</title>
			<link>http://www.kriesi.at/support/topic/cant-edit-text-in-advanced-layout-editor#post-112405</link>
			<pubDate>Mon, 20 May 2013 11:48:57 +0000</pubDate>
			<dc:creator>wolfross</dc:creator>
			<guid isPermaLink="false">112405@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, I have the same problem. I deactivated ALL plugins, nothing changed, still I can not use the Advanced Layout Editor :-((((&#60;br /&#62;
... I am really desperate, I need to get work done! Pls help!&#60;br /&#62;
Regards,&#60;br /&#62;
Wolfie
&#60;/p&#62;</description>
		</item>
		<item>
			<title>immoarcachon on "home page demo replete"</title>
			<link>http://www.kriesi.at/support/topic/home-page-demo-replete#post-112404</link>
			<pubDate>Mon, 20 May 2013 11:47:28 +0000</pubDate>
			<dc:creator>immoarcachon</dc:creator>
			<guid isPermaLink="false">112404@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Devin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Syncing featured media with WPML"</title>
			<link>http://www.kriesi.at/support/topic/syncing-featured-media-with-wpml#post-112403</link>
			<pubDate>Mon, 20 May 2013 11:46:19 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112403@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Berza,&#60;/p&#62;
&#60;p&#62;No, not as far as I know. They used to use the same data but Kriesi found that it created unreliable translations and the best way to solve it was to create duplicates for each language that can be customized as needed.&#60;/p&#62;
&#60;p&#62;Its an extra step of work but one that is the best solution and removes the larger issues that would be created otherwise.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "help!!"</title>
			<link>http://www.kriesi.at/support/topic/help-7#post-112402</link>
			<pubDate>Mon, 20 May 2013 11:43:40 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112402@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi slee7329,&#60;/p&#62;
&#60;p&#62;Try changing the option in your General Settings of the theme settings for Responsive Layout to &#34;Responsive Layout Default&#34; instead of the large layout.&#60;/p&#62;
&#60;p&#62;There are currently some issues with the larger layout which need to be addressed.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>slee7329 on "the pages don&#039;t show up properly on internet explorer"</title>
			<link>http://www.kriesi.at/support/topic/the-pages-dont-show-up-properly-on-internet-explorer#post-112401</link>
			<pubDate>Mon, 20 May 2013 11:42:36 +0000</pubDate>
			<dc:creator>slee7329</dc:creator>
			<guid isPermaLink="false">112401@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;i've developed the page on chrome. &#60;/p&#62;
&#60;p&#62;the format is broken if i browse it on internet explorer&#60;/p&#62;
&#60;p&#62;please give me some helps&#60;/p&#62;
&#60;p&#62;the address is &#60;a href=&#34;http://www.shubo.co.kr&#34; rel=&#34;nofollow&#34;&#62;http://www.shubo.co.kr&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "A lot fo Enfold/Avia Errors"</title>
			<link>http://www.kriesi.at/support/topic/a-lot-fo-enfoldavia-errors#post-112400</link>
			<pubDate>Mon, 20 May 2013 11:39:53 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112400@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi goodplum,&#60;/p&#62;
&#60;p&#62;I'll mark the topic for Kriesi but often times there will be errors logged even when they have no real consequences that need to be addressed asap.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Need a logo carousel (or a way to accomplish that behavior) with Enfold"</title>
			<link>http://www.kriesi.at/support/topic/need-a-logo-carousel-or-a-way-to-accomplish-that-behavior-with-enfold#post-112399</link>
			<pubDate>Mon, 20 May 2013 11:38:10 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112399@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi MikehJPP,&#60;/p&#62;
&#60;p&#62;It really depends on the final presentation you are looking for. A full width image slider will work but its still an image slider. You could even use a wordpress gallery grid if you want them to show up as a grid of images or any of the other image display options.&#60;/p&#62;
&#60;p&#62;With how open ended the idea is, you really could do just about any option.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Simple Download Functionality"</title>
			<link>http://www.kriesi.at/support/topic/simple-download-functionality#post-112398</link>
			<pubDate>Mon, 20 May 2013 11:34:57 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112398@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Chris,&#60;/p&#62;
&#60;p&#62;See: &#60;a href=&#34;http://www.w3schools.com/tags/att_a_href.asp&#34; rel=&#34;nofollow&#34;&#62;http://www.w3schools.com/tags/att_a_href.asp&#60;/a&#62; and &#60;a href=&#34;http://www.w3schools.com/tags/att_a_target.asp&#34; rel=&#34;nofollow&#34;&#62;http://www.w3schools.com/tags/att_a_target.asp&#60;/a&#62; .&#60;/p&#62;
&#60;p&#62;The file will be wherever you have designated uploads and you just upload it like you would any other file from within wordpress. Then you are just linking to that file and using the target attribute to tell the browser to open the link in a new window (which if its a pdf file will initiate a download or open it in the browser if the user has that enabled).&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Can&#039;t edit text in advanced layout editor"</title>
			<link>http://www.kriesi.at/support/topic/cant-edit-text-in-advanced-layout-editor#post-112397</link>
			<pubDate>Mon, 20 May 2013 11:32:41 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112397@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi All,&#60;/p&#62;
&#60;p&#62;Can you try deactivating all active plugins and trying the same thing. I know there have been a lot of issues with conflicts between plugins and the editors on the advanced layout editor.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aweterings on "Avia Builder - Misbehaviour when editing content"</title>
			<link>http://www.kriesi.at/support/topic/avia-builder-misbehaviour-when-editing-content#post-112396</link>
			<pubDate>Mon, 20 May 2013 11:28:45 +0000</pubDate>
			<dc:creator>aweterings</dc:creator>
			<guid isPermaLink="false">112396@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Seems the same problem as in this thread...&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kriesi.at/support/topic/cant-edit-text-in-advanced-layout-editor&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/cant-edit-text-in-advanced-layout-editor&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Edit: I've also noticed when inspecting the editor element via Google Chrome, the text is present but not shown. Maybe this screenshot will help.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.arnoweterings.nl/screenshot_001.png&#34; rel=&#34;nofollow&#34;&#62;http://www.arnoweterings.nl/screenshot_001.png&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Portfolio categories"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-categories-6#post-112395</link>
			<pubDate>Mon, 20 May 2013 11:27:45 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112395@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;If you can create a temporary admin account for me, I'll log in and take a look.&#60;/p&#62;
&#60;p&#62;You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn't grab it :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hipisland on "full frame image background issues"</title>
			<link>http://www.kriesi.at/support/topic/full-frame-image-background-issues#post-112394</link>
			<pubDate>Mon, 20 May 2013 11:22:15 +0000</pubDate>
			<dc:creator>hipisland</dc:creator>
			<guid isPermaLink="false">112394@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello, On flashlight I have problems with background image on my home page :&#60;/p&#62;
&#60;p&#62;on computer browser it works fine image is full  as in this adress : &#60;a href=&#34;http://www.hip-island.com&#34; rel=&#34;nofollow&#34;&#62;http://www.hip-island.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;but on tablets or iphone the background is resized and smaller : this is only happening on the homepage (that happen to be the shop page from woocommerce)&#60;/p&#62;
&#60;p&#62;here is a page I have made on the site with screens : &#60;a href=&#34;http://www.hip-island.com/screenshot-hip-island&#34; rel=&#34;nofollow&#34;&#62;http://www.hip-island.com/screenshot-hip-island&#60;/a&#62; (the page is pass protected, password is : &#34;open&#34; )&#60;/p&#62;
&#60;p&#62;Any idea of what should be change to get same results on all the different devices?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Avia Builder - Misbehaviour when editing content"</title>
			<link>http://www.kriesi.at/support/topic/avia-builder-misbehaviour-when-editing-content#post-112393</link>
			<pubDate>Mon, 20 May 2013 11:21:20 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112393@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi formateins,&#60;/p&#62;
&#60;p&#62;I understand that you get frustrated when something doesn't work as you expect it, but there is no reason to get hostile. We are trying to help and understand the issue as best we can. &#60;/p&#62;
&#60;p&#62;From your screenshots above, you point out the tabs but offer no explanation. Its pretty easy to see that and have no idea what you are referring to as an issue.&#60;/p&#62;
&#60;p&#62;If we were to try and recreate every screenshot that was submitted with no context on what we are looking for as an issue, we would never be able to answer anyone.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>_nanga on "portfolio thumbnails - grid size"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-thumbnails-grid-size#post-112392</link>
			<pubDate>Mon, 20 May 2013 11:20:41 +0000</pubDate>
			<dc:creator>_nanga</dc:creator>
			<guid isPermaLink="false">112392@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;thank you for your reply!&#60;br /&#62;
I changed the image-sizes with the simple-image-size-plugin like you wrote, but the problem isn´t solved :(&#60;/p&#62;
&#60;p&#62;After the portfolio-overview is loaded all looks correct like it should be. It´s just while loading the pictures ... there you see these black rectangles which are taller than the pictures (just in the height). When a picture is loaded the rectangle shrinks to the correct size.&#60;/p&#62;
&#60;p&#62;Most of my uploaded pictures have the dimensions 1024x576, some a bit smaller like 960x540 ... but always in the 16:9 aspect ratio and big enough to get not blurry or incomplete.&#60;/p&#62;
&#60;p&#62;And a last question: is it possible that the portfolio categories are shown earlier, because at present they appear only after the whole portfolio-overview-loading?&#60;/p&#62;
&#60;p&#62;Thanx so much!&#60;br /&#62;
Bianca
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Change The Behavior of ISOTOP / Portfolio Filtering"</title>
			<link>http://www.kriesi.at/support/topic/change-the-behavior-of-isotop-portfolio-filtering#post-112391</link>
			<pubDate>Mon, 20 May 2013 11:15:10 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112391@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi A,&#60;/p&#62;
&#60;p&#62;Its one of those things that has been asked quite a few times but what it comes down to is performance. Each time you call something from the database it has to query that data. So if it were to pull items that aren't in the currently shown data; new query entirely. &#60;/p&#62;
&#60;p&#62;If a user were to quickly click on categories it would be like quickly hitting search in rapid succession and would feel unresponsive. Buddypress currently does this via ajax on their member list and it feels sluggish on most servers.&#60;/p&#62;
&#60;p&#62;As for the category display, if you want to show a specific amount from each category then I would suggest creating a new template builder template. Then have a portfolio element with a single category selected multiple times on the new template. &#60;/p&#62;
&#60;p&#62;You lost out on the sort, but you get 16 of each item. At its core, this is just how wordpress works. You query the data which defaults to date. Since you have a group of categories in a single query it just grabs X number of items from Y categories and then displays them.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>traveljunks on "Eunoia header top line color"</title>
			<link>http://www.kriesi.at/support/topic/eunoia-header-top-line-color#post-112390</link>
			<pubDate>Mon, 20 May 2013 11:05:32 +0000</pubDate>
			<dc:creator>traveljunks</dc:creator>
			<guid isPermaLink="false">112390@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;how can I change the color of the line (with menu pointing line) on top of the main header in Eunoia. It now has the same as the main color from theme settings, but I want to use another color.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Robert
&#60;/p&#62;</description>
		</item>
		<item>
			<title>louiskoo on "Disable shopping cart function temporary"</title>
			<link>http://www.kriesi.at/support/topic/disable-shopping-cart-function-temporary#post-112389</link>
			<pubDate>Mon, 20 May 2013 11:05:20 +0000</pubDate>
			<dc:creator>louiskoo</dc:creator>
			<guid isPermaLink="false">112389@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I need to disable My Account, Shopping Cart, Checkout features temporary. I use WooCommerce with their &#34;Catalog Visibility Options&#34; plugin, but when I activate that plugin, all pages cannot show, even homepage. Getting &#34;Error 404 - page not found&#34; on every pages.&#60;/p&#62;
&#60;p&#62;Deactivate this plugin, all pages become normal. Is there any solution for this case?&#60;/p&#62;
&#60;p&#62;Excuse my bad english.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "home page demo replete"</title>
			<link>http://www.kriesi.at/support/topic/home-page-demo-replete#post-112388</link>
			<pubDate>Mon, 20 May 2013 11:00:07 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">112388@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi immoarcachon,&#60;/p&#62;
&#60;p&#62;On the front pages template builder template, that is a page section that has a shortcode for tab content which is what those are.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>_nanga on "contact form"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-22#post-112387</link>
			<pubDate>Mon, 20 May 2013 10:40:56 +0000</pubDate>
			<dc:creator>_nanga</dc:creator>
			<guid isPermaLink="false">112387@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;br /&#62;
thank you, works fine now!!!!&#60;br /&#62;
Regards, Bianca
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alwayson on "Change &#039;Sale&#039; sticker"</title>
			<link>http://www.kriesi.at/support/topic/change-sale-sticker#post-112386</link>
			<pubDate>Mon, 20 May 2013 10:23:17 +0000</pubDate>
			<dc:creator>alwayson</dc:creator>
			<guid isPermaLink="false">112386@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey guys, I'm hoping you can help me. I'm trying to change the 'Sale' sticker to read 'Sold' instead.&#60;br /&#62;
I've had a look in various files but not sure where this is being pulled from.&#60;br /&#62;
Any advice would be appreciated.&#60;br /&#62;
Eric
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Spiv on "easyslider captions animation"</title>
			<link>http://www.kriesi.at/support/topic/easyslider-captions-animation#post-112385</link>
			<pubDate>Mon, 20 May 2013 10:18:34 +0000</pubDate>
			<dc:creator>Spiv</dc:creator>
			<guid isPermaLink="false">112385@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'd like to animate captions like on this page: &#60;a href=&#34;http://www.kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/&#60;/a&#62;&#60;br /&#62;
Using easyslider, I don't see any options to animate the captions like in the demo page?&#60;/p&#62;
&#60;p&#62;I tried to figure out by importing the demo pages, but the slider demo pages aren't included.&#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lemedia on "Featured Image in Single Author Small - Grey Background?!?"</title>
			<link>http://www.kriesi.at/support/topic/featured-image-in-single-author-small-grey-background#post-112384</link>
			<pubDate>Mon, 20 May 2013 10:12:38 +0000</pubDate>
			<dc:creator>lemedia</dc:creator>
			<guid isPermaLink="false">112384@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Guys,&#60;/p&#62;
&#60;p&#62;how can you simply change the color of the background of the image ?&#60;br /&#62;
let us say from Grey to White ?&#60;br /&#62;
thanks&#60;br /&#62;
john
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hotelsolutions on "Header space"</title>
			<link>http://www.kriesi.at/support/topic/header-space#post-112383</link>
			<pubDate>Mon, 20 May 2013 10:03:55 +0000</pubDate>
			<dc:creator>Hotelsolutions</dc:creator>
			<guid isPermaLink="false">112383@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;Thanks for the advice. I've added the CSS code for issue 1, but unfortunately it does not change anything. There is still a gap between the top and the navigation bar.&#60;/p&#62;
&#60;p&#62;Regarding issue 2: Really strange, I checked the link and it goes to the page on our website... no idea how you get a Japanese site :)&#60;br /&#62;
The problem exists for example on the 'Kamers' or 'Arrangementen' page (main navigation). In the text block, you'll see on the right hand side a button ' Meer informatie'. On the left hand side you'll see a text 'Boek Nu'. For some reason we cannot get this on the same line. Is this due to a css code of the Theme?&#60;/p&#62;
&#60;p&#62;Thanks again for all your advice. Very much appreciated!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RandyJupiter on "Slider image got cut off"</title>
			<link>http://www.kriesi.at/support/topic/slider-image-got-cut-off#post-112382</link>
			<pubDate>Mon, 20 May 2013 10:02:53 +0000</pubDate>
			<dc:creator>RandyJupiter</dc:creator>
			<guid isPermaLink="false">112382@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Thanks for the reply! Okay I guess I have to live with the smaller size.&#60;/p&#62;
&#60;p&#62;Anyway, if I would like to replace the default jQuery slider with one that I wrote myself, possible?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mgma on "Need to move the nav button for the content slide on TOP of the content..."</title>
			<link>http://www.kriesi.at/support/topic/need-to-move-the-nav-button-for-the-content-slide-on-top-of-the-content#post-112381</link>
			<pubDate>Mon, 20 May 2013 09:57:34 +0000</pubDate>
			<dc:creator>mgma</dc:creator>
			<guid isPermaLink="false">112381@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi guys... you helped me do this in Choices, but I can't find the post. I need the little numbered nav buttons for the content slider on top of the content instead of at the bottom, so they stay put vertically as different lengths of content appear. Like the bottom of this page...&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://djdevelopment.net/2/edmark-for-educators/&#34; rel=&#34;nofollow&#34;&#62;http://djdevelopment.net/2/edmark-for-educators/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;can you help?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>R3V0X on "Insert the button social network"</title>
			<link>http://www.kriesi.at/support/topic/insert-the-button-social-network#post-112380</link>
			<pubDate>Mon, 20 May 2013 09:55:29 +0000</pubDate>
			<dc:creator>R3V0X</dc:creator>
			<guid isPermaLink="false">112380@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi guys, any ideas for my problem ? &#60;/p&#62;
&#60;p&#62;R3v0x
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
