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

		<item>
			<title>Devin on "Fusion tables map"</title>
			<link>http://www.kriesi.at/support/topic/fusion-tables-map#post-111155</link>
			<pubDate>Tue, 14 May 2013 16:32:00 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">111155@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi geogecko,&#60;/p&#62;
&#60;p&#62;You could use a custom page template for the page and add it in that way. See: &#60;a href=&#34;http://codex.wordpress.org/Page_Templates#Custom_Page_Template&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Page_Templates#Custom_Page_Template&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>geogecko on "Fusion tables map"</title>
			<link>http://www.kriesi.at/support/topic/fusion-tables-map#post-111078</link>
			<pubDate>Tue, 14 May 2013 10:05:54 +0000</pubDate>
			<dc:creator>geogecko</dc:creator>
			<guid isPermaLink="false">111078@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi folks,&#60;br /&#62;
I want to add a fusion table map to my site, I can't manage it. Can you suggest how I might amend the code to post it?&#60;br /&#62;
Thanks&#60;br /&#62;
Bernard (htt://www.geogecko.com)&#60;/p&#62;
&#60;p&#62;&#38;lt;!DOCTYPE html&#38;gt;&#60;br /&#62;
&#38;lt;html&#38;gt;&#60;br /&#62;
  &#38;lt;head&#38;gt;&#60;br /&#62;
  &#38;lt;style&#38;gt;&#60;br /&#62;
    #map-canvas { width:1000px; height:800px; }&#60;br /&#62;
  &#38;lt;/style&#38;gt;&#60;br /&#62;
  &#38;lt;script type=&#34;text/javascript&#34;&#60;br /&#62;
    src=&#34;http://maps.google.com/maps/api/js?sensor=false&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;/script&#38;gt;&#60;br /&#62;
  &#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
    var map;&#60;br /&#62;
    var layerl0;&#60;br /&#62;
    var layerl1;&#60;br /&#62;
    var layerl2;&#60;br /&#62;
    function initialize() {&#60;br /&#62;
      map = new google.maps.Map(document.getElementById('map-canvas'), {&#60;br /&#62;
        center: new google.maps.LatLng(-13.297911901638637, 27.9502080625),&#60;br /&#62;
        zoom: 7&#60;br /&#62;
      });&#60;br /&#62;
      var style = [&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'all',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { saturation: 99 }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'road.highway',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'road.arterial',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'road.local',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'administrative.neighborhood',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'administrative.land_parcel',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'poi',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'transit',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        }&#60;br /&#62;
      ];&#60;br /&#62;
      var styledMapType = new google.maps.StyledMapType(style, {&#60;br /&#62;
        map: map,&#60;br /&#62;
        name: 'Styled Map'&#60;br /&#62;
      });&#60;br /&#62;
      map.mapTypes.set('map-style', styledMapType);&#60;br /&#62;
      map.setMapTypeId('map-style');&#60;br /&#62;
      layerl0 = new google.maps.FusionTablesLayer({&#60;br /&#62;
        query: {&#60;br /&#62;
          select: &#34;'col2&#38;gt;&#38;gt;0'&#34;,&#60;br /&#62;
          from: '186gYAPNi43m_pTD29ZbTB_JaunrAKikJh0jRdYE'&#60;br /&#62;
        },&#60;br /&#62;
        map: map,&#60;br /&#62;
        styleId: 2,&#60;br /&#62;
        templateId: 2&#60;br /&#62;
      });&#60;br /&#62;
      layerl1 = new google.maps.FusionTablesLayer({&#60;br /&#62;
        query: {&#60;br /&#62;
          select: &#34;'col2&#38;gt;&#38;gt;0'&#34;,&#60;br /&#62;
          from: '1exlL0hvwX6z1Vc245ZGsIwGcTbDiu5pCWSxi7xM'&#60;br /&#62;
        },&#60;br /&#62;
        map: map,&#60;br /&#62;
        styleId: 2,&#60;br /&#62;
        templateId: 2&#60;br /&#62;
      });&#60;br /&#62;
      layerl2 = new google.maps.FusionTablesLayer({&#60;br /&#62;
        query: {&#60;br /&#62;
          select: &#34;'col2'&#34;,&#60;br /&#62;
          from: '12hb056xSAX01zQadeuxYg-ZciwHjOVFg9jf6UMU'&#60;br /&#62;
        },&#60;br /&#62;
        map: map,&#60;br /&#62;
        styleId: 2,&#60;br /&#62;
        templateId: 2&#60;br /&#62;
      });&#60;br /&#62;
    }&#60;br /&#62;
    google.maps.event.addDomListener(window, 'load', initialize);&#60;br /&#62;
  &#38;lt;/script&#38;gt;&#60;br /&#62;
  &#38;lt;/head&#38;gt;&#60;br /&#62;
  &#38;lt;body&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;map-canvas&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/body&#38;gt;&#60;br /&#62;
&#38;lt;/html&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Adding a URL to the slideshow images 2"</title>
			<link>http://www.kriesi.at/support/topic/adding-a-url-to-the-slideshow-images-2#post-108444</link>
			<pubDate>Thu, 02 May 2013 15:07:30 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">108444@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi larronde,&#60;/p&#62;
&#60;p&#62;I'm not sure what you mean exactly. Cubit is a bit of an older theme so if you can help provide some context we can look further into what it is you are looking for.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>larronde on "Adding a URL to the slideshow images 2"</title>
			<link>http://www.kriesi.at/support/topic/adding-a-url-to-the-slideshow-images-2#post-108303</link>
			<pubDate>Wed, 01 May 2013 23:45:33 +0000</pubDate>
			<dc:creator>larronde</dc:creator>
			<guid isPermaLink="false">108303@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;&#60;img /&#62;/images&#38;lt;?php echo $kriesi_options['whichdesign']; ?&#38;gt;/header_image6.jpg' alt='' height=&#34;240&#34; width=&#34;900&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;Above is the code for one of my images in the header.&#60;br /&#62;
How do you add a URL link, or a link that will open a PDF with &#34;_blank&#34; ?&#60;/p&#62;
&#60;p&#62;Can you add links to some (but not all) of the Slideshow images?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Problem with lightbox"</title>
			<link>http://www.kriesi.at/support/topic/problem-with-lightbox#post-106276</link>
			<pubDate>Fri, 19 Apr 2013 16:34:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">106276@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Open up functions.php and delete following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$my_jquery = get_bloginfo(&#38;#39;template_url&#38;#39;). &#38;quot;/js/jquery-1.3.1.min.js&#38;quot;;
	wp_deregister_script( &#38;#39;jquery&#38;#39; );
    wp_register_script( &#38;#39;jquery&#38;#39;, $my_jquery, false, &#38;#39;&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This will remove the custom jquery script and WP will load the standard jquery script which is bundled with WP. However there's still a good chance that it won't work because Kriesi didn't update the custom.js script for a while and I'm not sure if it's compatible with jquery 1.8 (jquery version which is bundled with wp3.5) or 1.9.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>eleclipse on "Problem with lightbox"</title>
			<link>http://www.kriesi.at/support/topic/problem-with-lightbox#post-106133</link>
			<pubDate>Thu, 18 Apr 2013 16:00:11 +0000</pubDate>
			<dc:creator>eleclipse</dc:creator>
			<guid isPermaLink="false">106133@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I add that i was wrong, i didn't find the:&#60;/p&#62;
&#60;p&#62;&#38;lt;script type=&#34;text/javascript&#34; src=&#34;http://www.floccaturasaplast.it/wp-content/themes/cubit/js/jquery-1.3.1.min.js?ver=3.3&#34;&#38;gt;&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;line :(
&#60;/p&#62;</description>
		</item>
		<item>
			<title>eleclipse on "Problem with lightbox"</title>
			<link>http://www.kriesi.at/support/topic/problem-with-lightbox#post-106118</link>
			<pubDate>Thu, 18 Apr 2013 13:46:00 +0000</pubDate>
			<dc:creator>eleclipse</dc:creator>
			<guid isPermaLink="false">106118@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I've a little problem with jquery, suddenly the plugin lightbox evolution ( &#60;a href=&#34;http://codecanyon.net/item/lightbox-evolution-for-wordpress/119478&#34; rel=&#34;nofollow&#34;&#62;http://codecanyon.net/item/lightbox-evolution-for-wordpress/119478&#60;/a&#62; ) that i installed in the site stopped working, i also tried other gallery plug in but nothing worked so far. &#60;/p&#62;
&#60;p&#62;The support of one of this plug in (all in themeforest) told me:&#60;/p&#62;
&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;The problem is a jQuery problem. To solve it please delete this line:&#60;/p&#62;
&#60;p&#62;&#38;lt;script type=&#34;text/javascript&#34; src=&#34;http://www.floccaturasaplast.it/wp-content/themes/cubit/js/jquery-1.3.1.min.js?ver=3.3&#34;&#38;gt;&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;The proper way to load jQuery into your theme or plugin is the following (your add it into your theme’s header):&#60;/p&#62;
&#60;p&#62;if (!wp_script_is('jquery', 'queue')){&#60;br /&#62;
     wp_enqueue_script('jquery');&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;After some search i found that line in the function page, deleted it and put the other line of code in the header.php file at the end of the head but the problem remain so... what can i do?&#60;/p&#62;
&#60;p&#62;Thanks in advance for any help
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Remove side in blogpost"</title>
			<link>http://www.kriesi.at/support/topic/remove-side-in-blogpost#post-102246</link>
			<pubDate>Wed, 20 Mar 2013 12:51:52 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">102246@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Go to wordpress Settings&#38;gt;Reading and see what the home page and blog page are designated to display on. &#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>geogecko on "Remove side in blogpost"</title>
			<link>http://www.kriesi.at/support/topic/remove-side-in-blogpost#post-102019</link>
			<pubDate>Tue, 19 Mar 2013 09:20:39 +0000</pubDate>
			<dc:creator>geogecko</dc:creator>
			<guid isPermaLink="false">102019@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;thanks for the tips on layout. &#60;/p&#62;
&#60;p&#62;However I can't manage to fix the posts being a child of services problem. Any more ideas as to how I can fix this?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Remove side in blogpost"</title>
			<link>http://www.kriesi.at/support/topic/remove-side-in-blogpost#post-100645</link>
			<pubDate>Mon, 11 Mar 2013 16:35:42 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">100645@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Bernard,&#60;/p&#62;
&#60;p&#62;No, individual blog posts don't have a way to modify the layout.&#60;/p&#62;
&#60;p&#62;The code is showing that the current page item is indeed Services but its being output like that by wordpress. My guess is maybe the blog page is designated as child of services or something like that.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>geogecko on "Remove side in blogpost"</title>
			<link>http://www.kriesi.at/support/topic/remove-side-in-blogpost#post-100563</link>
			<pubDate>Mon, 11 Mar 2013 11:11:48 +0000</pubDate>
			<dc:creator>geogecko</dc:creator>
			<guid isPermaLink="false">100563@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi folks,&#60;/p&#62;
&#60;p&#62;I have another problem with sidebars. Can I edit a blog post to remove the sidebar? See here &#60;a href=&#34;http://www.geogecko.com/2013/03/11/kenya-risk-map/&#34; rel=&#34;nofollow&#34;&#62;http://www.geogecko.com/2013/03/11/kenya-risk-map/&#60;/a&#62;. My web map is squashed. &#60;/p&#62;
&#60;p&#62;Also, when I open a blog post, services in the main menu is highlighted. Any idea how I fix this? I'd really appreciate a fast reply.&#60;/p&#62;
&#60;p&#62;Thanks a million!&#60;/p&#62;
&#60;p&#62;Bernard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Remove sidebar"</title>
			<link>http://www.kriesi.at/support/topic/remove-sidebar-1#post-99519</link>
			<pubDate>Tue, 05 Mar 2013 04:01:32 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">99519@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that Devin set you back on track.&#60;/p&#62;
&#60;p&#62;Good luck!&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>geogecko on "Remove sidebar"</title>
			<link>http://www.kriesi.at/support/topic/remove-sidebar-1#post-99395</link>
			<pubDate>Mon, 04 Mar 2013 16:28:10 +0000</pubDate>
			<dc:creator>geogecko</dc:creator>
			<guid isPermaLink="false">99395@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Excellent, that works fine. Thanks Devin!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Remove sidebar"</title>
			<link>http://www.kriesi.at/support/topic/remove-sidebar-1#post-99363</link>
			<pubDate>Mon, 04 Mar 2013 15:04:57 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">99363@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi B,&#60;/p&#62;
&#60;p&#62;Add the following file to your theme files: &#60;a href=&#34;https://dl.dropbox.com/u/9222756/template_fullwidth.php&#34; rel=&#34;nofollow&#34;&#62;https://dl.dropbox.com/u/9222756/template_fullwidth.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Then you can select the Fullwidth template from the Template dropdown on that page.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>geogecko on "Remove sidebar"</title>
			<link>http://www.kriesi.at/support/topic/remove-sidebar-1#post-99292</link>
			<pubDate>Mon, 04 Mar 2013 07:00:07 +0000</pubDate>
			<dc:creator>geogecko</dc:creator>
			<guid isPermaLink="false">99292@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
can you help me to create a template page that has no sidebar? I want to create a wide webmap here &#60;a href=&#34;http://www.geogecko.com/services/web-maps/&#34; rel=&#34;nofollow&#34;&#62;http://www.geogecko.com/services/web-maps/&#60;/a&#62;,&#60;br /&#62;
thanks,&#60;br /&#62;
B
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Widgets won&#039;t work and Add Media Button won&#039;t work with latest version of WP"</title>
			<link>http://www.kriesi.at/support/topic/widgets-wont-work-and-add-media-button-wont-work-with-latest-version-of-wp#post-99000</link>
			<pubDate>Fri, 01 Mar 2013 08:41:55 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">99000@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Fixed. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Widgets won&#039;t work and Add Media Button won&#039;t work with latest version of WP"</title>
			<link>http://www.kriesi.at/support/topic/widgets-wont-work-and-add-media-button-wont-work-with-latest-version-of-wp#post-98897</link>
			<pubDate>Thu, 28 Feb 2013 15:54:46 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">98897@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi shelgies,&#60;/p&#62;
&#60;p&#62;I've tagged Peter on the topic so it will show up in his personal Queue.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>shelgies on "Widgets won&#039;t work and Add Media Button won&#039;t work with latest version of WP"</title>
			<link>http://www.kriesi.at/support/topic/widgets-wont-work-and-add-media-button-wont-work-with-latest-version-of-wp#post-98888</link>
			<pubDate>Thu, 28 Feb 2013 15:32:13 +0000</pubDate>
			<dc:creator>shelgies</dc:creator>
			<guid isPermaLink="false">98888@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks!  I sent the login info to you just now.  Also, I have tried with Chrome, Firefox and IE9.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Widgets won&#039;t work and Add Media Button won&#039;t work with latest version of WP"</title>
			<link>http://www.kriesi.at/support/topic/widgets-wont-work-and-add-media-button-wont-work-with-latest-version-of-wp#post-98816</link>
			<pubDate>Thu, 28 Feb 2013 08:14:06 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">98816@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; I can't reproduce the  issue on my test server. Please create me a wordpress admin account and send me the login data to: &#60;a href=&#34;mailto:kriesi2000-dude@yahoo.com&#34;&#62;kriesi2000-dude@yahoo.com&#60;/a&#62; - I'll look into it. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>shelgies on "Widgets won&#039;t work and Add Media Button won&#039;t work with latest version of WP"</title>
			<link>http://www.kriesi.at/support/topic/widgets-wont-work-and-add-media-button-wont-work-with-latest-version-of-wp#post-98753</link>
			<pubDate>Wed, 27 Feb 2013 22:34:49 +0000</pubDate>
			<dc:creator>shelgies</dc:creator>
			<guid isPermaLink="false">98753@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Help!  I updated Wordpress to 3.5.1.  I can no longer use the &#34;Add media&#34; button.  Also, can no longer drag a widget to the sidebar.  If I revert to the TwentyTwelve theme both of those things work fine, so it seems to be a problem with Cubit.  Any suggestions? pioneersearchgroup.com&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "demo sitemap xml reqire"</title>
			<link>http://www.kriesi.at/support/topic/demo-sitemap-xml-reqire#post-97901</link>
			<pubDate>Thu, 21 Feb 2013 18:22:01 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">97901@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi AMAR,&#60;/p&#62;
&#60;p&#62;Try using something like this: &#60;a href=&#34;http://wordpress.org/extend/plugins/google-sitemap-generator/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/google-sitemap-generator/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>go4download on "demo sitemap xml reqire"</title>
			<link>http://www.kriesi.at/support/topic/demo-sitemap-xml-reqire#post-97850</link>
			<pubDate>Thu, 21 Feb 2013 16:05:01 +0000</pubDate>
			<dc:creator>go4download</dc:creator>
			<guid isPermaLink="false">97850@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;HI,&#60;/p&#62;
&#60;p&#62;How can i get demo sitemap xml for this website.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
AMAR
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How do I remove page titles from content area?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-remove-page-titles-from-content-area#post-94770</link>
			<pubDate>Sun, 03 Feb 2013 07:26:14 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">94770@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You add something like at the very bottom of the style.css to hide the page title.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;h2{display:none}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PeterCunneen on "How do I remove page titles from content area?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-remove-page-titles-from-content-area#post-94675</link>
			<pubDate>Sat, 02 Feb 2013 14:27:18 +0000</pubDate>
			<dc:creator>PeterCunneen</dc:creator>
			<guid isPermaLink="false">94675@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey guys.  When I saw this post title I thought it might contain information that I would like to know. i.e. how I remove the page titles from the content area of pages.  Just a suggestion but if someone has worked out the answer, it might be worth posting it anyway so the rest of us can learn without having to ask the question again.  Any help much appreciated
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Cubit Slideshow Timing"</title>
			<link>http://www.kriesi.at/support/topic/cubit-slideshow-timing#post-94275</link>
			<pubDate>Thu, 31 Jan 2013 08:01:52 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">94275@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Open up wp-content/themes/cubit/js/custom.js and search for following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;duration:700, // transition duration for each block
			display_for:5000,&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The first value will affect the slider transition speed, the second value will change the time between the slide rotation.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>larronde on "Cubit Slideshow Timing"</title>
			<link>http://www.kriesi.at/support/topic/cubit-slideshow-timing#post-94219</link>
			<pubDate>Wed, 30 Jan 2013 21:44:58 +0000</pubDate>
			<dc:creator>larronde</dc:creator>
			<guid isPermaLink="false">94219@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;All the sudden my client is requesting that the images in the home page slider transition a little slower. Where is the code to adjust that?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Cubit Responsive Upgrade?"</title>
			<link>http://www.kriesi.at/support/topic/cubit-responsive-upgrade#post-93805</link>
			<pubDate>Mon, 28 Jan 2013 19:55:05 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">93805@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey jphipps99,&#60;/p&#62;
&#60;p&#62;Cubit will not be getting a responsive upgrade as far as I know. It is a pretty old theme and any of Kriesi's new themes would be big upgrades for in depth functionality changes but the designs are all much more in depth than with Cubit.&#60;/p&#62;
&#60;p&#62;Propulsion or Angular are both pretty minimal designs and both responsive:&#60;br /&#62;
&#60;a href=&#34;http://www.kriesi.at/themes/propulsion/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/propulsion/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.kriesi.at/themes/angular/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/angular/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jphipps99 on "Cubit Responsive Upgrade?"</title>
			<link>http://www.kriesi.at/support/topic/cubit-responsive-upgrade#post-93759</link>
			<pubDate>Mon, 28 Jan 2013 17:20:41 +0000</pubDate>
			<dc:creator>jphipps99</dc:creator>
			<guid isPermaLink="false">93759@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Any chance this great theme will be upgraded to be responsive? If not - could you advise one of your themes that is close to the cubit design but responsive?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Move Sidebar to right and increase content space"</title>
			<link>http://www.kriesi.at/support/topic/move-sidebar-to-right-and-increase-content-space#post-89504</link>
			<pubDate>Wed, 02 Jan 2013 00:39:50 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">89504@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi turboper4mer,&#60;/p&#62;
&#60;p&#62;The code here should only be used for the Cubit theme. If you have made changes for another theme, post in that support forum and provide a link to the pages so we can take a look at the changes/code live.&#60;/p&#62;
&#60;p&#62;For #2, you'll need to look into a plugin to do something like that.&#60;/p&#62;
&#60;p&#62;#3, this depends on the theme so if you can ask this again in when you re-post we can address it then.&#60;/p&#62;
&#60;p&#62;I'm gonna go ahead and lock this topic for now since the support answers are 2 years old now and the topic doesn't get off the cubit theme further :)&#60;/p&#62;
&#60;p&#62;Just make your new topic in the correct forum here: &#60;a href=&#34;http://www.kriesi.at/support/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>turboper4mer on "Move Sidebar to right and increase content space"</title>
			<link>http://www.kriesi.at/support/topic/move-sidebar-to-right-and-increase-content-space#post-89496</link>
			<pubDate>Tue, 01 Jan 2013 23:57:05 +0000</pubDate>
			<dc:creator>turboper4mer</dc:creator>
			<guid isPermaLink="false">89496@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;1. I am making a website &#60;a href=&#34;http://tosigns.com&#34; rel=&#34;nofollow&#34;&#62;http://tosigns.com&#60;/a&#62; and pirated codes from the past post to extend content size but now my right side bar cannot be used so I would like to float the right sidebar to right with a little margin left sidebar to left with same margin and maximze the content space between them but ONLY on certain pages like the SHOP and PRODUCT for now, my level is &#34;No Experience&#34;just a good pirate!&#60;/p&#62;
&#60;p&#62;2. I would like to use click the home button to enter, is there a way to have a window display in the center of the screen to click the home button and then disappear if customer clicks OK on it? Also would like to increase the size of the home icon.&#60;/p&#62;
&#60;p&#62;3. How do I move the search field in the widget area to display under logo and above the navigation buttons on all pages?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
