<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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>THE MOLITOR FORUMS &#187; Topic: How to keep the Home Slider on every page? Not just the front page.</title>
		<link>http://www.themolitor.com/forums/topic/how-to-keep-the-home-slider-on-every-page-not-just-the-front-page</link>
		<description>THE MOLITOR FORUMS &#187; Topic: How to keep the Home Slider on every page? Not just the front page.</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 20:23:48 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/how-to-keep-the-home-slider-on-every-page-not-just-the-front-page" rel="self" type="application/rss+xml" />

		<item>
			<title>simonlavallee on "How to keep the Home Slider on every page? Not just the front page."</title>
			<link>http://www.themolitor.com/forums/topic/how-to-keep-the-home-slider-on-every-page-not-just-the-front-page#post-7486</link>
			<pubDate>Mon, 05 Mar 2012 19:14:06 +0000</pubDate>
			<dc:creator>simonlavallee</dc:creator>
			<guid isPermaLink="false">7486@http://www.themolitor.com/forums/</guid>
			<description><p>lohsmith!</p>
<p>Here it is:</p>
<p>You need to edit this in the CSS stylesheet</p>
<p>*************around line 80-90********************************</p>
<p>/*--------MENU CONTAINER------*/<br />
#menuContainer {<br />
	height: 100px;<br />
	width: 100%;<br />
	position: relative;<br />
	-moz-box-shadow: inset 0 0 5px rgba(0,0,0,.8);<br />
	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,.8);<br />
	box-shadow: inset 0 0 5px rgba(0,0,0,.8);<br />
}<br />
body.home #menuContainer {height: 500px;}</p>
<p>********************************************************</p>
<p>As you can see, in the default code up here there is an overwrite value of 500px height if dealing with the home page.</p>
<p>What you want to do is edit this part:</p>
<p>===========================<br />
/*--------MENU CONTAINER------*/<br />
#menuContainer {<br />
	height: 100px;<br />
===========================</p>
<p>Change it to 500px and now the menu bar on all your pages will be 500px, allowing enough room for the slider!</p>
<p>Please test it and let me know if it worked.<br />
I just tried here and it worked for me.</p>
<p>Hope this helps :)</p>
<p>Simon
</p></description>
		</item>
		<item>
			<title>simonlavallee on "How to keep the Home Slider on every page? Not just the front page."</title>
			<link>http://www.themolitor.com/forums/topic/how-to-keep-the-home-slider-on-every-page-not-just-the-front-page#post-7419</link>
			<pubDate>Sun, 04 Mar 2012 01:45:31 +0000</pubDate>
			<dc:creator>simonlavallee</dc:creator>
			<guid isPermaLink="false">7419@http://www.themolitor.com/forums/</guid>
			<description><p>I don't know the exact code to change, but I can give you some clues.</p>
<p>Try doing the opposite action: </p>
<p>Initial code was:<br />
&#60;?php if(is_front_page()){ get_template_part('slider'); } else { get_template_part('menu');}?&#62;</p>
<p>To have the slider on all pages, you can use:<br />
&#60;?php if(is_front_page()){ get_template_part('slider'); } else { get_template_part('slider');}?&#62;</p>
<p>To help you understand what is happening, try putting the menu on the front page:<br />
&#60;?php if(is_front_page()){ get_template_part('menu'); } else { get_template_part('menu');}?&#62;</p>
<p>You will notice that the front page now has a big menu bar, even though the slider isnt there anymore.</p>
<p>This means that in order to have "enough room for the slider" on your content pages (all other pages other than the front page), you will need to edit the pixel heigh of the menu itself on the content pages.</p>
<p>I'm sorry, but I don't have the time to look it up right now. However you can now take a look and try to find how to change that pixel value on the content pages. When you will find the value to change, you will notice a big difference between the front page and other pages.</p>
<p>I hope this helped. And to clarify, don't take my post for granted, I'm just a visitor here :)
</p></description>
		</item>
		<item>
			<title>lohsmith on "How to keep the Home Slider on every page? Not just the front page."</title>
			<link>http://www.themolitor.com/forums/topic/how-to-keep-the-home-slider-on-every-page-not-just-the-front-page#post-7240</link>
			<pubDate>Mon, 27 Feb 2012 06:04:05 +0000</pubDate>
			<dc:creator>lohsmith</dc:creator>
			<guid isPermaLink="false">7240@http://www.themolitor.com/forums/</guid>
			<description><p>Any thoughts on the problem I am having?
</p></description>
		</item>
		<item>
			<title>lohsmith on "How to keep the Home Slider on every page? Not just the front page."</title>
			<link>http://www.themolitor.com/forums/topic/how-to-keep-the-home-slider-on-every-page-not-just-the-front-page#post-6246</link>
			<pubDate>Sun, 29 Jan 2012 17:50:40 +0000</pubDate>
			<dc:creator>lohsmith</dc:creator>
			<guid isPermaLink="false">6246@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>This is the exact thing I am looking for...however, when I replace the following;</p>
<p>&#60;?php if(is_front_page()){ get_template_part('slider'); } else { get_template_part('menu');}?&#62;</p>
<p>with;</p>
<p>&#60;?php get_template_part('slider'); ?&#62;</p>
<p>The carousel is displayed, but the menu overlaps the carousel. How do I retain the exact same formatting as on the home page??</p>
<p>Many thanks</p>
<p>(www.bansanghospitalappeal.org)
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "How to keep the Home Slider on every page? Not just the front page."</title>
			<link>http://www.themolitor.com/forums/topic/how-to-keep-the-home-slider-on-every-page-not-just-the-front-page#post-5288</link>
			<pubDate>Tue, 27 Dec 2011 13:40:54 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">5288@http://www.themolitor.com/forums/</guid>
			<description><p>Open up "header.php" and locate the following...</p>
<p><code>&#60;?php if(is_front_page()){ get_template_part(&#039;slider&#039;); } else { get_template_part(&#039;menu&#039;);}?&#62;</code></p>
<p>...and change it to the following...</p>
<p><code>&#60;?php get_template_part(&#039;slider&#039;); ?&#62;</code></p>
<p>PLEASE NOTE: This has not been tested. Please let me know any issues you encounter.
</p></description>
		</item>
		<item>
			<title>cchen on "How to keep the Home Slider on every page? Not just the front page."</title>
			<link>http://www.themolitor.com/forums/topic/how-to-keep-the-home-slider-on-every-page-not-just-the-front-page#post-5245</link>
			<pubDate>Mon, 26 Dec 2011 13:06:34 +0000</pubDate>
			<dc:creator>cchen</dc:creator>
			<guid isPermaLink="false">5245@http://www.themolitor.com/forums/</guid>
			<description><p>How can I set it so that the Home Slider appears on other pages as well, not just the home page. </p>
<p>I found the code starting with:<br />
&#60;div id="menuContainer"&#62;</p>
<p>Is that where the Home Slider is? Where can I copy this in order to have the Home Slider appear on other pages. Ideally, I don't even need the home slider, just a large image in the same size as the slider. One large slider that belongs to each page on my site. The home one can scroll through but for each individual page, I just need 1 large image across the top above the menu items.</p>
<p>I'm not a pro coder but I can follow instructions well and figure things out pretty quickly. thanks.
</p></description>
		</item>

	</channel>
</rss>
