<?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 - Topic: Page with slideshow kills breadcrumbs</title>
		<link>http://www.kriesi.at/support/topic/page-with-slideshow-kills-breadcrumbs</link>
		<description>Support Forum - Topic: Page with slideshow kills breadcrumbs</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 13:51:02 +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/topic/page-with-slideshow-kills-breadcrumbs" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "Page with slideshow kills breadcrumbs"</title>
			<link>http://www.kriesi.at/support/topic/page-with-slideshow-kills-breadcrumbs#post-32504</link>
			<pubDate>Sun, 20 Nov 2011 05:49:50 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">32504@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Good to see I could help you on your way :) Thanks for sharing your solution!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "Page with slideshow kills breadcrumbs"</title>
			<link>http://www.kriesi.at/support/topic/page-with-slideshow-kills-breadcrumbs#post-32434</link>
			<pubDate>Sat, 19 Nov 2011 09:03:53 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">32434@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you very much, Chris, works like a charm concerning the display of the breadcrumbs on slideshow pages, however it kills the line before and after the breadcrumbs, but I have tweaked the CSS for this, so it works no fine.&#60;/p&#62;
&#60;p&#62;The following CSS are necessary, so that it doesn't display the line of the breadcrumb twice, if you use a page without slideshow - and on the other side, that the frontpage shows well as before.&#60;/p&#62;
&#60;p&#62;If somebody likes to have the breadcrumbs at slideshow pages, too, here is - in addition to Chris' PHP changes - my CSS for your custom.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*************** Breadcrumbs for Slideshow-Pages ***************/

#top #breadcrumb_wrapper {
	border-bottom: 1px solid #cabec8;
    font-size: 11px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 1000px;
    z-index: 10;
}

#top .slideshow_big {
    margin-bottom: -140px;
    margin-top: 10px;
}

#breadcrumb_wrapper .breadcrumb {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #555555;
    margin-right: 30px;
}

#top #header.slideshow_big_container {
    border-bottom: 1px solid #DDD2DC;
    margin-bottom: 20px;
    padding-bottom: 75px;
}

#header {
    background-color: #E8E1EA;
    background-image: url(&#38;quot;../images/skin-minimal/bg-header.png&#38;quot;);
    background-repeat: repeat-x;
  /*   border-bottom: 1px solid #DDD2DC;   */
	border-bottom: 0px !important;
    color: #333333;
}

/************************************************************/&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You only need to replace the color for your backgrounds and the line.&#60;br /&#62;
To figure this out, Firebug is my very best friend ;-)))&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://addons.mozilla.org/de/firefox/addon/firebug/&#34; rel=&#34;nofollow&#34;&#62;https://addons.mozilla.org/de/firefox/addon/firebug/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;:-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "Page with slideshow kills breadcrumbs"</title>
			<link>http://www.kriesi.at/support/topic/page-with-slideshow-kills-breadcrumbs#post-32399</link>
			<pubDate>Fri, 18 Nov 2011 22:08:47 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">32399@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;try replacing it with this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
//if we aren&#38;#39;t on the frontpage display breadcrumb
					if(!is_front_page())
					{
						echo &#38;quot;&#38;lt;div id=&#38;#39;breadcrumb_wrapper&#38;#39; class=&#38;#39;container&#38;#39;&#38;gt;&#38;quot;;
						new avia_breadcrumb(array(&#38;#39;delimiter&#38;#39; =&#38;gt; &#38;#39;/&#38;#39;));
						echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
					}
					//display slideshow big if one is available
					if(!empty($avia_config[&#38;#39;slide_output&#38;#39;])) {echo &#38;quot;&#38;lt;div class=&#38;#39;container slideshow_big&#38;#39;&#38;gt;&#38;quot;.$avia_config[&#38;#39;slide_output&#38;#39;].&#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;}
				?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>colorit2 on "Page with slideshow kills breadcrumbs"</title>
			<link>http://www.kriesi.at/support/topic/page-with-slideshow-kills-breadcrumbs#post-32313</link>
			<pubDate>Fri, 18 Nov 2011 14:08:31 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">32313@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks, but this doesn't work, means it has no effect: no breadcrumbs with big slideshow at top of a page&#60;/p&#62;
&#60;p&#62;This is what I have now in header.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
					//display slideshow big if one is available
					if(!empty($avia_config[&#38;#39;slide_output&#38;#39;])) echo &#38;quot;&#38;lt;div class=&#38;#39;container slideshow_big&#38;#39;&#38;gt;&#38;quot;.$avia_config[&#38;#39;slide_output&#38;#39;].&#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
					//if we dont are located on teh frontpge and if there is no big slideshow availabel display breadcrumb
					if(!is_front_page())
					{
						echo &#38;quot;&#38;lt;div id=&#38;#39;breadcrumb_wrapper&#38;#39; class=&#38;#39;container&#38;#39;&#38;gt;&#38;quot;;
						new avia_breadcrumb(array(&#38;#39;delimiter&#38;#39; =&#38;gt; &#38;#39;/&#38;#39;));
						echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
					}
				?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>VBM on "Page with slideshow kills breadcrumbs"</title>
			<link>http://www.kriesi.at/support/topic/page-with-slideshow-kills-breadcrumbs#post-32308</link>
			<pubDate>Fri, 18 Nov 2011 13:50:18 +0000</pubDate>
			<dc:creator>VBM</dc:creator>
			<guid isPermaLink="false">32308@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;perhaps ths will help, in header.php you have:&#60;br /&#62;
´&#60;br /&#62;
//if we dont are located on teh frontpge and if there is no big slideshow availabel display breadcrumb&#60;br /&#62;
					if(!is_front_page() &#38;amp;&#38;amp; empty($avia_config['slide_output']))&#60;br /&#62;
					{&#60;br /&#62;
						echo &#34;&#38;lt;div id='breadcrumb_wrapper' class='container'&#38;gt;&#34;;&#60;br /&#62;
						new avia_breadcrumb(array('delimiter' =&#38;gt; '/'));&#60;br /&#62;
						echo &#34;&#38;lt;/div&#38;gt;&#34;;&#60;br /&#62;
					}&#60;br /&#62;
´&#60;br /&#62;
try with deleting this the part below, so you won't get breadcrumb only at front page&#60;br /&#62;
´ &#38;amp;&#38;amp; empty($avia_config['slide_output']) ´&#60;br /&#62;
and see what you'll get
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "Page with slideshow kills breadcrumbs"</title>
			<link>http://www.kriesi.at/support/topic/page-with-slideshow-kills-breadcrumbs#post-32301</link>
			<pubDate>Fri, 18 Nov 2011 13:16:03 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">32301@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have created some pages. As long as I &#60;strong&#62;do not&#60;/strong&#62; add a &#60;strong&#62;slideshow&#60;/strong&#62; by adding images as &#34;featured media&#34;, the breadcrumbs are shown:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://i39.tinypic.com/161akxl.jpg&#34; rel=&#34;nofollow&#34;&#62;http://i39.tinypic.com/161akxl.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;But as soon as I upload images to a page by using the &#34;featured media&#34; and the settings for the slideshow options - no matter what slider I use! -, the breadcrumbs are killed:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://i44.tinypic.com/n7wpx.jpg&#34; rel=&#34;nofollow&#34;&#62;http://i44.tinypic.com/n7wpx.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The breadcrumbs &#60;strong&#62;are not hidden&#60;/strong&#62; behind the slider, because I've used Firebug and add some margin-top to the slider, but no breadcrumbs appear.&#60;/p&#62;
&#60;p&#62;How can I get back the breadcrumbs to all pages using the slideshow options (except for HOME, of course)?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
