<?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: Custom background images not loading in home slider</title>
		<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Custom background images not loading in home slider</description>
		<language>en-US</language>
		<pubDate>Wed, 06 May 2026 06:13:21 +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/custom-background-images-not-loading-in-home-slider" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17424</link>
			<pubDate>Wed, 16 Jan 2013 10:15:30 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">17424@http://www.themolitor.com/forums/</guid>
			<description><p>Oh good! I was really confused about that one ;-) </p>
<p>Thanks for following up!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>zenbedouin on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17408</link>
			<pubDate>Tue, 15 Jan 2013 13:41:20 +0000</pubDate>
			<dc:creator>zenbedouin</dc:creator>
			<guid isPermaLink="false">17408@http://www.themolitor.com/forums/</guid>
			<description><p>Hey Chris,</p>
<p>I reinstalled the whole template on a different subdomain, and everything works fine now. Maybe it was the database on the first domain.</p>
<p>Thanks!
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17402</link>
			<pubDate>Tue, 15 Jan 2013 11:13:52 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">17402@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I'm really at a loss for what the issue could be. I'm not seeing this issue on two separate installations of this theme, so I'm unable to effectively troubleshoot as I can't recreate the issue. </p>
<p>Do you have another dev environment you can test on to see if this issue IS unique to your current WordPress/server/host setup?</p>
<p>Let me know!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>zenbedouin on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17389</link>
			<pubDate>Tue, 15 Jan 2013 10:10:02 +0000</pubDate>
			<dc:creator>zenbedouin</dc:creator>
			<guid isPermaLink="false">17389@http://www.themolitor.com/forums/</guid>
			<description><p>Hey Chris,</p>
<p>Any luck on solving this?</p>
<p>Could it be something with the host I'm using? Right now it's hosted on mediatemple.</p>
<p>If I can't get this issue solved this week, I'm going to have to use a different template for my client.</p>
<p>Let me know!
</p></description>
		</item>
		<item>
			<title>zenbedouin on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17315</link>
			<pubDate>Fri, 11 Jan 2013 15:32:27 +0000</pubDate>
			<dc:creator>zenbedouin</dc:creator>
			<guid isPermaLink="false">17315@http://www.themolitor.com/forums/</guid>
			<description><p>Hey Chris,</p>
<p>That fixed the transition issue, but not the image issue.</p>
<p>It still just shows black background or the dark theme pattern, depending on which browser I view with...</p>
<p>Not to rush, but I need to launch this site for a client by the end of next week, so please try to find out more soon!</p>
<p>Thanks!
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17289</link>
			<pubDate>Fri, 11 Jan 2013 10:52:20 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">17289@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I found out the issue with the transition effect...</p>
<p>With the latest version of jQuery, it's incorrectly adding a fading animation when elements are told to "display:none".</p>
<p>The temporary fix is to open up "style.css" and replace the following chunk of code at the top of the page...</p>
<pre><code>-moz-transition-property:background-color, color, opacity;
-moz-transition-duration:0.20s;
-moz-transition-timing-function:linear;

-webkit-transition-property:background-color, color, opacity;
-webkit-transition-duration:0.20s;
-webkit-transition-timing-function:linear; 

-o-transition-property:background-color, color, opacity;
-o-transition-duration:0.20s;
-o-transition-timing-function:linear;</code></pre>
<p>...with this...</p>
<pre><code>-moz-transition-property:background-color, color;
-moz-transition-duration:0.20s;
-moz-transition-timing-function:linear;

-webkit-transition-property:background-color, color;
-webkit-transition-duration:0.20s;
-webkit-transition-timing-function:linear; 

-o-transition-property:background-color, color;
-o-transition-duration:0.20s;
-o-transition-timing-function:linear;</code></pre>
<p>Let me know if this also addresses the image issue.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17286</link>
			<pubDate>Fri, 11 Jan 2013 10:23:19 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">17286@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I thought about that too, but looked at one of your images and didn't think it would be an issue with size/resolution.</p>
<p>I see what you mean about the transitions too. </p>
<p>I'm going to mark this thread as "pending review" because I need to look into this some more. I'm really confused as to what the issue could be. </p>
<p>I appreciate your patience!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>zenbedouin on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17266</link>
			<pubDate>Thu, 10 Jan 2013 15:22:04 +0000</pubDate>
			<dc:creator>zenbedouin</dc:creator>
			<guid isPermaLink="false">17266@http://www.themolitor.com/forums/</guid>
			<description><p>Do the images need to be a specific optimum resolution?</p>
<p>I noticed when I have multiple slides on the slider, and I click through a few times so the images show up, they don't transition smoothly like in the demo. They kind of pop in and out, if they show up at all.
</p></description>
		</item>
		<item>
			<title>zenbedouin on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17255</link>
			<pubDate>Thu, 10 Jan 2013 12:32:40 +0000</pubDate>
			<dc:creator>zenbedouin</dc:creator>
			<guid isPermaLink="false">17255@http://www.themolitor.com/forums/</guid>
			<description><p>The post does have an assigned image, and original slider category was a new one called "Films", which has its own image.</p>
<p>I only switched to I categorized to include more than one post.</p>
<p>Any ideas on why its broken?
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17231</link>
			<pubDate>Thu, 10 Jan 2013 10:18:39 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">17231@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>This is odd...</p>
<p>I see the other slides don't have any images. Did you assign an image for the post you added?</p>
<p>Also, try creating a category other than "uncategorized" and be sure to add an image for that category as well.</p>
<p>Let me know if that has any impact.</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>zenbedouin on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17210</link>
			<pubDate>Wed, 09 Jan 2013 19:40:17 +0000</pubDate>
			<dc:creator>zenbedouin</dc:creator>
			<guid isPermaLink="false">17210@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>I tried deactivating all plugins, didn't work.</p>
<p>I reinstalled the whole template and reset all the files. Didn't work.</p>
<p>Right now I added another slide, still same issue.</p>
<p>The only thing I noticed is that when I switched back to the dark theme, the patterns show up in the slider now instead of a black background.</p>
<p>I've also tried different images, to no avail.</p>
<p>Anyways, can you help me make it work the way it's intended to?
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17189</link>
			<pubDate>Wed, 09 Jan 2013 10:36:05 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">17189@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Just a couple of basic troubleshooting questions to get out of the way...</p>
<p>1. Do you have any plugins installed? If so, please try deactivating those.<br />
2. Have you made ANY edits to the template files? If so, please undo those edits.</p>
<p>Another thing to try is to add another slide as it might possibly be an issue with just having 1 post in the slider.</p>
<p>Let me know!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>zenbedouin on "Custom background images not loading in home slider"</title>
			<link>http://www.themolitor.com/forums/topic/custom-background-images-not-loading-in-home-slider#post-17164</link>
			<pubDate>Mon, 07 Jan 2013 21:33:39 +0000</pubDate>
			<dc:creator>zenbedouin</dc:creator>
			<guid isPermaLink="false">17164@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>When I set the custom background image for a post on my site, it works fine on the actual page, but not in the Home slider.</p>
<p>When you scroll to the slider or hit continue, the first post pops up with a black background (not even the theme pattern) and the only way for it to display my custom background is if you navigate to another slider tab and then back to the first one.</p>
<p>On the demo the background images work fine on the Home slider; each post has its own background loaded when you load the page. Can you help me fix mine?</p>
<p>Check it out: <a href="http://kosmicdesign.com/heaven/" rel="nofollow">http://kosmicdesign.com/heaven/</a></p>
<p>I inspected the element with Firebug, and the section div class="backstretch" does not even appear until after you play with the slider.</p>
<p>I've tried it on Chrome, and also on a Mac with Firefox, and got the same result.</p>
<p>Please help!
</p></description>
		</item>

	</channel>
</rss>
