<?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 - User Favorites: reganfrank</title>
		<link><a href='http://www.kriesi.at/support/profile/reganfrank'>reganfrank</a></link>
		<description>Support Forum - User Favorites: reganfrank</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 12:31:48 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Coherence goes very slow with IE8"</title>
			<link>http://www.kriesi.at/support/topic/coherence-goes-very-slow-with-ie8#post-67700</link>
			<pubDate>Thu, 26 Jul 2012 06:35:30 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">67700@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Did you try to deactivate all third party plugins? Maybe one causes your IE8 issues? Personally I can't test the website with a native IE8 installation but it works fine with IE9 (set to IE8 browser mode).&#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Coherence goes very slow with IE8"</title>
			<link>http://www.kriesi.at/support/topic/coherence-goes-very-slow-with-ie8#post-67523</link>
			<pubDate>Wed, 25 Jul 2012 07:00:20 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">67523@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for that @radugidei&#60;/p&#62;
&#60;p&#62;Does anybody have suggestions regarding the dreadful speed issues?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Current menu Item - CSS Rule"</title>
			<link>http://www.kriesi.at/support/topic/current-menu-item-css-rule#post-67490</link>
			<pubDate>Wed, 25 Jul 2012 01:32:19 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">67490@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey ragudei,&#60;/p&#62;
&#60;p&#62;Thanks for helping. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>radugidei on "Current menu Item - CSS Rule"</title>
			<link>http://www.kriesi.at/support/topic/current-menu-item-css-rule#post-67342</link>
			<pubDate>Tue, 24 Jul 2012 09:05:44 +0000</pubDate>
			<dc:creator>radugidei</dc:creator>
			<guid isPermaLink="false">67342@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;this is the HTML source that you need to take a look at (example on Policies page)&#60;br /&#62;
&#60;code&#62;&#38;lt;div class=&#34;menu-topnav-container&#34;&#38;gt;&#60;br /&#62;
&#38;lt;ul id=&#34;menu-topnav-1&#34; class=&#34;menu&#34;&#38;gt;&#60;br /&#62;
&#38;lt;li class=&#34;menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-menu-ancestor current-menu-parent current-page-parent current_page_parent current_page_ancestor menu-item-3816&#34;&#38;gt;&#60;a href=&#34;http://sharetel.com.au/about-us/&#34;&#62;About Us&#60;/a&#62;&#60;br /&#62;
&#38;lt;ul class=&#34;sub-menu&#34;&#38;gt;&#60;br /&#62;
	&#38;lt;li class=&#34;menu-item menu-item-type-post_type menu-item-object-page menu-item-3614&#34;&#38;gt;&#60;a href=&#34;http://sharetel.com.au/about-us/why-choose-us/&#34;&#62;Why Choose Us?&#60;/a&#62;&#60;br /&#62;
	&#38;lt;li class=&#34;menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-15 current_page_item menu-item-3615&#34;&#38;gt;&#60;a href=&#34;http://sharetel.com.au/about-us/policies/&#34;&#62;Policies&#60;/a&#62;&#60;br /&#62;
	&#38;lt;li class=&#34;menu-item menu-item-type-post_type menu-item-object-page menu-item-3645&#34;&#38;gt;&#60;a href=&#34;http://sharetel.com.au/contact-us/&#34;&#62;Contact Us&#60;/a&#62;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The problem is that your CSS code doesn't seem to target any of those classes/IDs, more specifically, the #nav_menu-4 id.&#60;/p&#62;
&#60;p&#62;try this :&#60;br /&#62;
&#60;code&#62;.menu-topnav-container ul:first-child &#38;gt; li.current_page_item &#38;gt; a{&#60;br /&#62;
font-weight: bold;&#60;br /&#62;
background: #f0b70c !important;&#60;br /&#62;
-webkit-border-radius: 3px;&#60;br /&#62;
-moz-border-radius: 3px;&#60;br /&#62;
border-radius: 3px;&#60;br /&#62;
}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;or&#60;/p&#62;
&#60;p&#62;&#60;code&#62;.menu-topnav-container ul.submenu &#38;gt; li.current_page_item &#38;gt; a{&#60;br /&#62;
...&#60;br /&#62;
}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;if it doesn't work , try using only this :&#60;br /&#62;
&#60;code&#62;.current_page_item {&#60;br /&#62;
font-weight: bold;&#60;br /&#62;
background: #f0b70c !important;&#60;br /&#62;
-webkit-border-radius: 3px;&#60;br /&#62;
-moz-border-radius: 3px;&#60;br /&#62;
border-radius: 3px;&#60;br /&#62;
}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;hope it helps
&#60;/p&#62;</description>
		</item>
		<item>
			<title>radugidei on "Coherence goes very slow with IE8"</title>
			<link>http://www.kriesi.at/support/topic/coherence-goes-very-slow-with-ie8#post-67340</link>
			<pubDate>Tue, 24 Jul 2012 08:40:39 +0000</pubDate>
			<dc:creator>radugidei</dc:creator>
			<guid isPermaLink="false">67340@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;IE8 does not support CSS3 media queries.&#60;br /&#62;
See here :&#60;br /&#62;
&#60;code&#62;&#60;a href=&#34;http://stackoverflow.com/questions/10387569/responsive-website-issue-in-ie7-and-ie8&#34; rel=&#34;nofollow&#34;&#62;http://stackoverflow.com/questions/10387569/responsive-website-issue-in-ie7-and-ie8&#60;/a&#62;&#60;/code&#62;&#60;br /&#62;
follow the respond.js link and you should be able to set it up.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Coherence goes very slow with IE8"</title>
			<link>http://www.kriesi.at/support/topic/coherence-goes-very-slow-with-ie8#post-67314</link>
			<pubDate>Tue, 24 Jul 2012 05:43:43 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">67314@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Also just to add to the issues i am having with IE8:&#60;/p&#62;
&#60;p&#62;On the 404 error page. the search box is miss aligned.&#60;/p&#62;
&#60;p&#62;Could this be a bug?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Coherence goes very slow with IE8"</title>
			<link>http://www.kriesi.at/support/topic/coherence-goes-very-slow-with-ie8#post-67313</link>
			<pubDate>Tue, 24 Jul 2012 05:41:48 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">67313@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I just wanted add that in IE8 the coherence theme is NOT responsive.&#60;/p&#62;
&#60;p&#62;This is could be a separate issue to above, or part for the same as above
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Current menu Item - CSS Rule"</title>
			<link>http://www.kriesi.at/support/topic/current-menu-item-css-rule#post-67311</link>
			<pubDate>Tue, 24 Jul 2012 05:34:56 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">67311@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have added a custom css. rule to highlight the current page/menu item.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/*Sidebar Nav Menu - Current Menu Items*/
#nav_menu-4.widget_nav_menu .current-menu-item &#38;gt; a, #nav_menu-4.widget_nav_menu .current_page_item &#38;gt; a {
    font-weight: bold;
	background: #f0b70c !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Unfortunately, when I set it on my local system it works fine, but on the live server it does not display.&#60;/p&#62;
&#60;p&#62;Am I missing something?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bit.ly/MCdWL8&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/MCdWL8&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Coherence goes very slow with IE8"</title>
			<link>http://www.kriesi.at/support/topic/coherence-goes-very-slow-with-ie8#post-67310</link>
			<pubDate>Tue, 24 Jul 2012 05:27:45 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">67310@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
Am having a number of issues with IE8 that I need some help with, most notably is a speed issue. &#60;/p&#62;
&#60;p&#62;This issue is mostly when browsing the Navigation menus. &#60;/p&#62;
&#60;p&#62;Is there a fix? This seems to only be the case in IE8 as I have checked the other browser and it worked fine.&#60;/p&#62;
&#60;p&#62;Here it the link: &#60;a href=&#34;http://bit.ly/MCdWL8&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/MCdWL8&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Add shortcode form Choices to Coherence"</title>
			<link>http://www.kriesi.at/support/topic/add-shortcode-form-choices-to-coherence#post-66027</link>
			<pubDate>Tue, 17 Jul 2012 06:55:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">66027@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You also need to add following code to functions.php (add it at the very bottom) to activate the new shortcodes:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*
 *  add shortcode editor functions
 *
 *  allowed positions: inline, small_box, content, widget
 */
add_theme_support( &#38;#39;avia-shortcodes&#38;#39;, array( &#38;#39;content&#38;#39; =&#38;gt; array(&#38;#39;sidebar_tabs&#38;#39;=&#38;gt;&#38;#39;Sidebar Tabs&#38;#39;, &#38;#39;table&#38;#39;=&#38;gt;&#38;#39;Table&#38;#39;), &#38;#39;small_box&#38;#39; =&#38;gt; array(&#38;#39;iconbox_top&#38;#39;=&#38;gt;&#38;#39;Icon Box (Icon on Top)&#38;#39;, &#38;#39;big_box&#38;#39;=&#38;gt;&#38;#39;Superbig Content Box&#38;#39;) ) );&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Add shortcode form Choices to Coherence"</title>
			<link>http://www.kriesi.at/support/topic/add-shortcode-form-choices-to-coherence#post-66018</link>
			<pubDate>Tue, 17 Jul 2012 06:01:25 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">66018@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;So I just spent the last day trying to get this to work.&#60;/p&#62;
&#60;p&#62;I used a mix of directory and file comparisons, and well here is the verdict&#60;/p&#62;
&#60;p&#62;HHHHHHHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGGGGGGGHHHHHHH!&#60;/p&#62;
&#60;p&#62;That was a wasted day.&#60;/p&#62;
&#60;p&#62;:)&#60;/p&#62;
&#60;p&#62;I wonder if Kriesi can shed some light because I am stumped!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Add shortcode form Choices to Coherence"</title>
			<link>http://www.kriesi.at/support/topic/add-shortcode-form-choices-to-coherence#post-65837</link>
			<pubDate>Mon, 16 Jul 2012 10:09:52 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">65837@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can find the code for shortcodes on framework &#38;gt; php &#38;gt; avia_shortcodes &#38;gt; sc &#38;gt; big_box.php and sidebar_tabs.php. Then you can locate register shortcodes on includes &#38;gt; admin &#38;gt; register-shortcodes.php. Just find big_box and sidebar_tabs. Another file you need is the shortcodes.css on your css folder. &#60;/p&#62;
&#60;p&#62;This is the files that you need to make the shortcode work but there may still be some points that I am missing. This will get you started.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Add shortcode form Choices to Coherence"</title>
			<link>http://www.kriesi.at/support/topic/add-shortcode-form-choices-to-coherence#post-65835</link>
			<pubDate>Mon, 16 Jul 2012 09:56:47 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">65835@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok, so I officially love Kriesi's themes, and have 5 of them at he moment.&#60;/p&#62;
&#60;p&#62;But right now the project that I am working on is based on the Coherence theme. but I would like to add the Sidebar tab and Bigbox shortcode from the Choices theme.&#60;/p&#62;
&#60;p&#62;I know that this is outside of the theme support 'concept&#34; but am just asking for a few pointers to do this myself.&#60;/p&#62;
&#60;p&#62;Any help would be appreciated.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Coherence:  move menu under Logo"</title>
			<link>http://www.kriesi.at/support/topic/coherence-move-menu-under-logo#post-62299</link>
			<pubDate>Tue, 26 Jun 2012 18:37:35 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">62299@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad Dude was able to help :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pelyon on "Coherence:  move menu under Logo"</title>
			<link>http://www.kriesi.at/support/topic/coherence-move-menu-under-logo#post-62288</link>
			<pubDate>Tue, 26 Jun 2012 18:02:26 +0000</pubDate>
			<dc:creator>pelyon</dc:creator>
			<guid isPermaLink="false">62288@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;the higher the number, the lower the menu goes. Thanks Dude!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "Sidebar Blog - not showing with a blog &#34;post&#34; using a dynamic template"</title>
			<link>http://www.kriesi.at/support/topic/sidebar-blog-not-showing-with-a-blog-post-using-a-dynamic-template#post-62166</link>
			<pubDate>Tue, 26 Jun 2012 05:17:46 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">62166@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi reganfrank,&#60;/p&#62;
&#60;p&#62;The work around would most likely require editing the framework. I know Kriesi's currently working on a new round of updates so hopefully the issue will be fixed in the next update.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "BUG - Shortcodes - Icon box, in Columns, in Slider content produces &#34;  &#34;"</title>
			<link>http://www.kriesi.at/support/topic/bug-shortcodes-icon-box-in-columns-in-slider-content-produces#post-62163</link>
			<pubDate>Tue, 26 Jun 2012 05:10:54 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">62163@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Let us know if you have more questions.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Sidebar Blog - not showing with a blog &#34;post&#34; using a dynamic template"</title>
			<link>http://www.kriesi.at/support/topic/sidebar-blog-not-showing-with-a-blog-post-using-a-dynamic-template#post-62140</link>
			<pubDate>Tue, 26 Jun 2012 03:26:46 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">62140@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks mate.&#60;/p&#62;
&#60;p&#62;Do you have a work around at all?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "BUG - Shortcodes - Icon box, in Columns, in Slider content produces &#34;  &#34;"</title>
			<link>http://www.kriesi.at/support/topic/bug-shortcodes-icon-box-in-columns-in-slider-content-produces#post-62139</link>
			<pubDate>Tue, 26 Jun 2012 03:25:59 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">62139@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;No Problems.&#60;/p&#62;
&#60;p&#62;I have changed the layout.&#60;/p&#62;
&#60;p&#62;Thanks for the reply mate.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "BUG - Shortcodes - Icon box, in Columns, in Slider content produces &#34;  &#34;"</title>
			<link>http://www.kriesi.at/support/topic/bug-shortcodes-icon-box-in-columns-in-slider-content-produces#post-61660</link>
			<pubDate>Fri, 22 Jun 2012 09:57:16 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">61660@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! Would you mind pasting the code you have used? &#60;/p&#62;
&#60;p&#62;The general problem of shortcodes is that they sometimes try to add various tags were they shouldnt.&#60;/p&#62;
&#60;p&#62;So it can make a huge difference if you write&#60;/p&#62;
&#60;pre&#62;
[shortcode1]

[shortcode2]

Test

[shortcode2]

[/shortcode1]
&#60;/pre&#62;
&#60;pre&#62;

[shortcode1]
[shortcode2]

Test

[shortcode2]
[/shortcode1]
&#60;/pre&#62;
&#60;p&#62;or&#60;/p&#62;
&#60;pre&#62;
[shortcode1][shortcode2]Test[shortcode2][/shortcode1]
&#60;/pre&#62;
&#60;p&#62;I usually try to suggest to try it in either way :) Unfortunately a WordPress Core Problem that I am not able to solve :/
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "Sidebar Blog - not showing with a blog &#34;post&#34; using a dynamic template"</title>
			<link>http://www.kriesi.at/support/topic/sidebar-blog-not-showing-with-a-blog-post-using-a-dynamic-template#post-61648</link>
			<pubDate>Fri, 22 Jun 2012 09:27:25 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">61648@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! Thanks for the notice I will see If I can fix the issue with the next release!&#60;/p&#62;
&#60;p&#62;Cheers!&#60;br /&#62;
Kriesi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "BUG - Shortcodes - Icon box, in Columns, in Slider content produces &#34;  &#34;"</title>
			<link>http://www.kriesi.at/support/topic/bug-shortcodes-icon-box-in-columns-in-slider-content-produces#post-61636</link>
			<pubDate>Fri, 22 Jun 2012 08:58:35 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">61636@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Just wanted to add that's after further testing, it seems that this bug will not allow you to Bold text using :&#60;br /&#62;
&#60;code&#62;&#38;lt;strong&#38;gt; &#38;lt;/strong&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "BUG - Shortcodes - Icon box, in Columns, in Slider content produces &#34;  &#34;"</title>
			<link>http://www.kriesi.at/support/topic/bug-shortcodes-icon-box-in-columns-in-slider-content-produces#post-61579</link>
			<pubDate>Fri, 22 Jun 2012 04:52:39 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">61579@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi all.&#60;/p&#62;
&#60;p&#62;Not sure if this is the correct way to report a bug in the Coherence theme, but here goes:&#60;/p&#62;
&#60;p&#62;Bug:&#60;br /&#62;
When an iconbox shortcode, is laid out in the Columns shortcode, and placed inside a Slider content Shortcode, an additional &#34;&#38;lt;p&#38;gt; &#38;lt;/p&#38;gt;&#34; is generated that affects the layout of the iconbox.&#60;/p&#62;
&#60;p&#62;Sitelink:&#60;br /&#62;
&#60;a href=&#34;http://bit.ly/La35mp&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/La35mp&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Trouble shooting to date:&#60;br /&#62;
1. Please see the page above. i have laid out the shortcode to display the error. A quick look will confirm this bug.&#60;br /&#62;
2. I have been able to replicate this bug on my local install, with no plugins installed.&#60;/p&#62;
&#60;p&#62;Enviroment:&#60;br /&#62;
Wordpress 3.4 Green - Multisite with Mapped Domain&#60;br /&#62;
Theme: Coherence 1.0.3
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Sidebar Blog - not showing with a blog &#34;post&#34; using a dynamic template"</title>
			<link>http://www.kriesi.at/support/topic/sidebar-blog-not-showing-with-a-blog-post-using-a-dynamic-template#post-60921</link>
			<pubDate>Tue, 19 Jun 2012 11:10:18 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">60921@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am having troubles with the Sidebar - Blog.&#60;/p&#62;
&#60;p&#62;I have created a dynamic template, and assigned it to my blog posts. Then I added specific widgets in the Sidebar - Blog, wanting them to show only in posts&#60;/p&#62;
&#60;p&#62;Unfortunately, when a blog post is loaded, the &#34;Sidebar - Pages&#34; sidebar is loaded instead.&#60;/p&#62;
&#60;p&#62;I have troubleshooted this by:&#60;br /&#62;
Changing the &#34;layout&#34; option and selecting Right, and left sidebar in the editor. - THIS WORKED! the &#34;Sidebar - Blog&#34; sidebar displayed correctly.&#60;/p&#62;
&#60;p&#62;So the issue specifically - When a dynamic template is selected for posts, the &#34;Sidebar - Posts&#34; is not displayed. &#60;/p&#62;
&#60;p&#62;Environment:&#60;br /&#62;
Wordpress =3.4&#60;br /&#62;
Theme= v1.0.3&#60;/p&#62;
&#60;p&#62;Any help would be appreciated.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Edit excerpt length on Latest news widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-excerpt-length-on-latest-news-widget#post-59863</link>
			<pubDate>Tue, 12 Jun 2012 19:29:33 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">59863@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi wvanderzee,&#60;/p&#62;
&#60;p&#62;You can do either. If you keep a copy of the theme before an update you can always add your changes back in as well. Its a little less work than going through and creating a child theme but does take forethought when updating.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wvanderzee on "Edit excerpt length on Latest news widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-excerpt-length-on-latest-news-widget#post-59802</link>
			<pubDate>Tue, 12 Jun 2012 09:00:20 +0000</pubDate>
			<dc:creator>wvanderzee</dc:creator>
			<guid isPermaLink="false">59802@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Do I have to add it to the functions.php of the theme itself, or create a theme-child. I assume the last option is best for updating the theme without loosing custom functions. Am I right about that?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Child Theme"</title>
			<link>http://www.kriesi.at/support/topic/child-theme#post-57705</link>
			<pubDate>Sun, 27 May 2012 09:10:18 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">57705@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Style.css is enough because it will overwrite all other files/rules. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Coherence:  move menu under Logo"</title>
			<link>http://www.kriesi.at/support/topic/coherence-move-menu-under-logo#post-57629</link>
			<pubDate>Sat, 26 May 2012 10:12:04 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">57629@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can use following css code t push the menu down:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.main_menu {
    top: 20%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Increase or decrease the value to move the menu up or down. You can add the code to css/custom.css or the quick css field.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>condonpb on "Child Theme"</title>
			<link>http://www.kriesi.at/support/topic/child-theme#post-57524</link>
			<pubDate>Fri, 25 May 2012 10:44:27 +0000</pubDate>
			<dc:creator>condonpb</dc:creator>
			<guid isPermaLink="false">57524@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Many Tanks for this ....just one query do i need to create seperate .css file in the child folder for each of the other style files i.e layout.css, Style1.css (as I am using thsi skin) or will one ccss child file be OK?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mebebrown on "Coherence:  move menu under Logo"</title>
			<link>http://www.kriesi.at/support/topic/coherence-move-menu-under-logo#post-57517</link>
			<pubDate>Fri, 25 May 2012 07:50:24 +0000</pubDate>
			<dc:creator>mebebrown</dc:creator>
			<guid isPermaLink="false">57517@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello.&#60;/p&#62;
&#60;p&#62;Love, Love, Love the theme!&#60;/p&#62;
&#60;p&#62;I'd like to move the navigation menu so that it sits underneath my logo, since when I add more pages, it is now running into the logo.&#60;/p&#62;
&#60;p&#62;Please advise...&#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
&#60;a href=&#34;http://www.mebeimagery.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.mebeimagery.com/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
