<?xml version="1.0" encoding="iso-8859-1"?>

<rdf:RDF 
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns="http://purl.org/rss/1.0/"
>

	<channel rdf:about="http://www.getmura.com/forum/">
	<title>Mura CMS Support Forum : Conference : Mura Themes</title>
	<description>Conference : Mura Themes : Support and Discussion of Mura Themes</description>
	<link>http://www.getmura.com/forum/</link>
	
	<items>
		<rdf:Seq>
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=5E2F74D8-FDD1-46C8-A6E5F989DCEB461C&amp;r=1" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=0FE9788A-ED64-43FB-A001BBA8CA3F4DC0&amp;r=2" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=0FE9788A-ED64-43FB-A001BBA8CA3F4DC0&amp;r=3" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=4" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=5" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=6" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=7" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=8" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=9" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=10" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=11" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=12" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=13" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=14" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=9C8607A4-8BEF-4D3A-BE4A6B54832C7DE0&amp;r=15" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=9C8607A4-8BEF-4D3A-BE4A6B54832C7DE0&amp;r=16" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=9C8607A4-8BEF-4D3A-BE4A6B54832C7DE0&amp;r=17" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=2D2C845E-6414-471E-9BAEB119F4618FEF&amp;r=18" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=2D2C845E-6414-471E-9BAEB119F4618FEF&amp;r=19" />
				
			
				
				<rdf:li rdf:resource="http://www.getmura.com/forum/messages.cfm?threadid=2D2C845E-6414-471E-9BAEB119F4618FEF&amp;r=20" />
				
			
		</rdf:Seq>
	</items>
	
	</channel>

	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=5E2F74D8-FDD1-46C8-A6E5F989DCEB461C&amp;r=1">
			<title>Removing the drodown navigation and just show the standard superfish nav even when the broswer width is small</title>
			<description>[code]&lt;cf_cacheOMatic key=&quot;customTopNav&quot;&gt;
						&lt;cfoutput&gt;
							&lt;cfset home=$.getBean(&quot;content&quot;).loadBy(filename=&quot;&quot;)&gt;
							&lt;cfset iterator=home.getKidsIterator(aggregation=true)&gt;
							&lt;form id=&quot;responsive-nav&quot; action=&quot;insert_action&quot; method=&quot;post&quot;&gt;
								&lt;select class=&quot;chzn-select&quot;&gt;
									&lt;option value=&quot;#home.getURL()#&quot;&gt;#HTMLEditFormat(home.getMenutitle())#&lt;/option&gt;
									&lt;cfloop condition=&quot;iterator.hasNext()&quot;&gt;
										&lt;cfset item=iterator.next()&gt;
										&lt;option value=&quot;#item.getURL()#&quot;&gt;#HTMLEditFormat(item.getMenutitle())#&lt;/option&gt;
									&lt;/cfloop&gt;
								&lt;/select&gt;
							&lt;/form&gt;
						&lt;/cfoutput&gt;
						&lt;/cf_cacheOMatic&gt;[/code]

How can I remove the default functionality of showing the dropdown  when the browser width gets too small? I just want to display the standard superfish navigation for all screen sizes as I still need to work on the display for smaller screen size.</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=5E2F74D8-FDD1-46C8-A6E5F989DCEB461C&amp;r=1</link>
			<dc:date>2013-04-24T10:34:38-04:00</dc:date>
			<dc:subject>Removing the drodown navigation and just show the standard superfish nav even when the broswer width is small</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=0FE9788A-ED64-43FB-A001BBA8CA3F4DC0&amp;r=2">
			<title>RE: Slidedeck is stacking slides</title>
			<description>Additional question: is there something that happens when a new site is created that might overwrite earlier, core files? Really a mystery to me at this point...</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=0FE9788A-ED64-43FB-A001BBA8CA3F4DC0&amp;r=2</link>
			<dc:date>2013-04-19T17:34:19-04:00</dc:date>
			<dc:subject>Slidedeck is stacking slides</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=0FE9788A-ED64-43FB-A001BBA8CA3F4DC0&amp;r=3">
			<title>Slidedeck is stacking slides</title>
			<description>mindgames.us.mensa.org

Has anyone seen this behavior? The slides in the slidedeck have started stacking vertically over the rest of the content on the home page. This seems to have started after a new site was created in Mura (the URL above is NOT the new site, and the two may be unrelated, but that was the only major event to occur between the slides working properly, then suddenly stacking).

We host 3 sites that use the Solved theme (mindgames.us.mensa.org, ag.us.mensa.org, colloquium.us.mensa.org), and all of them broke/began stacking at the same time. There were no updates to the 3 sites at the time the stacking began and there were no updates to Mura&apos;s core files at that time either (currently on version 5.6.5024). Again, the only thing major that changed was the creation of a new site (using the Merced theme).

Any insight would be appreciated!</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=0FE9788A-ED64-43FB-A001BBA8CA3F4DC0&amp;r=3</link>
			<dc:date>2013-04-19T13:05:03-04:00</dc:date>
			<dc:subject>Slidedeck is stacking slides</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=4">
			<title>RE: Interesting IE Issue</title>
			<description>Very happy to hear your issue was resolved, Carl. Thank you very much for sharing how you &quot;Solved&quot; it.</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=4</link>
			<dc:date>2013-04-13T18:42:22-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=5">
			<title>RE: Interesting IE Issue</title>
			<description>Good day everyone, I thought I would give an update on my Solved theme Slidedeck and IE problem in case anyone else runs into it.

The issue has been &quot;Solved&quot;.

Basically there is a problem with IE in the slidedeck.jquery.lite.js file.  It is the Slidedeck Lite version 1.1.7 which is part of the Solved theme in the Mura Marketplace.  I don&apos;t know the exact reason yet, but I will continue to investigate.

Rather than spending many hours working on correcting the issue, I went to the developer and purchased a newer pro version.

I replaced the Slidedeck Lite 1.1.7 with Slidedeck Pro 1.4.3.  All I really needed to do was replace the js file with the new version.

The developers seem to focus on Wordpress plugin develop and I didn&apos;t find a new Lite version to try.  But they do have a Pro version for developers.  The downside, it cost me a little bit of cash.  The upside, it works and now I have the pro version with more features and an unlimited number of sites to use it on.

There is a problem with the Slidedeck Lite being using in the Mura Solved theme and IE.  I don&apos;t know if Blue River is looking into it.  However, you can fix the issue by upgrading to the Slidedeck Pro.  You can find it here:  [url=http://developers.slidedeck.com/]http://developers.slidedeck.com/[/url]

Carl
[i]* Last updated by: RedWombat on 4/13/2013 @ 3:11 PM *[/i]</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=5</link>
			<dc:date>2013-04-13T15:10:10-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=6">
			<title>RE: Interesting IE Issue</title>
			<description>Thanks jr.  I have found two IE 9 computers where it does work.  Others not.  I would say that even though it&apos;s working for you, you will have visitors that it will not work for.

And IE 10 is even worse.  The vertical bars do show up, but they are horizontal and at the top of the slide deck.

So far that&apos;s 9 computers I&apos;ve test this on and it only works on 2.

I&apos;m thinking it&apos;s connected to jquery and the accordion plugin because I found another developer who created a similar slider which has the same issue for me.  His site is [url=http://www.madeincima.it/download/samples/jquery/easyAccordion/]here[/url].

And on the main [url=http://www.slidedeck.com/]SlideDeck website[/url] who I believe is the developer of the original slidedeck, their samples, with an updated version of slidedeck, seem to work well in IE 9 for me.  I have found forum posts related to issues with IE9 and the slidedeck on their site, but they only make reference to - send us your transaction information and we&apos;ll send you a link to download an update.  So I don&apos;t have an answer for sure.

I&apos;m thinking it&apos;s a compatibility coding issue between jquery and IE, or at least a recently updated version of IE.  The slider was working fine about 3 weeks ago.

I also did a core and site files update just to make sure.  It had no effect.

Carl</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=6</link>
			<dc:date>2013-04-09T13:21:50-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=7">
			<title>RE: Interesting IE Issue</title>
			<description>Carl, 
The good news is that I&apos;m on IE9 and see your client&apos;s Plush Grass slider just fine. (You&apos;ve built a nice site here.) So I would imagine many others do as well. However, I realize that does not solve your problem or the client&apos;s anxiety.

Based on your description, it sounds like a browser update issue compared to the slider&apos;s code. You should report this to MS, even though response is doubtful. I would also look for an update for the slider&apos;s core files (JS/slidedeck.jquery.lite.js and {theme-color}/CSS/slidedeck.skin.ie.css). My guess is one or both of these files needs to be edited.

Sean, I recommended LinkedIn because Ronnie Duke told me he worked on this theme and I know Ronnie views the LinkedIn group. Ronnie seems to be a little quicker on the response when he has an idea.</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=7</link>
			<dc:date>2013-04-09T10:38:15-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=8">
			<title>RE: Interesting IE Issue</title>
			<description>Just a quick post to add that I completed a test with a fresh install of the Solved theme in both Mura 6 and 5.6 just on the off chance there was some difference between them.  I got the same results in both versions of Mura.

Carl</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=8</link>
			<dc:date>2013-04-08T23:36:38-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=9">
			<title>RE: Interesting IE Issue</title>
			<description>Thank you for the reply guys.

Jrhicks, I do see the same issue on your site.  See my attached screen capture.  I see the same issue on my client site and even the demo site on Theme Forest from the Mura marketplace.  Chances are your visitors now won&apos;t see your slider they way you do.

I have one computer that the slider works fine in, and it has the same version of IE 9 as two others in our office which do have the issue.  We have a total four computers in our office that have the problem as well as our client.  Three on windows 7, one on windows 8, two with IE 9 and two with IE 10.

I know MS pushed out a forced update recently, and feel that it&apos;s likely connected.  But I can&apos;t really tell users not to use IE no matter how much I really want to.  :-)

I&apos;ll keep searching.  If you have any other thoughts, send them along.

Thanks again!
Carl</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=9</link>
			<dc:date>2013-04-08T23:22:18-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=10">
			<title>RE: Interesting IE Issue</title>
			<description>No, this is the official free support channel for Mura. Please post all theme-specific questions here.

I haven&apos;t had a chance to look at your issue, but jrhicks suggestion was good. Thanks for helping out!</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=10</link>
			<dc:date>2013-04-08T22:15:59-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=11">
			<title>RE: Interesting IE Issue</title>
			<description>Carl,

I have the Solved theme and IE9. I cannot reproduce your error. 

See if you have the same problem viewing my site: colinriley.com. If you don&apos;t, then it might be specific to your site. If you do, then it might be a problem with an incremental upgrade of IE9. If that&apos;s the case, you may want to insert a different slider. There are hundreds out there. Also, it looks like this may be a standard jQuery slider. If so, you can check on that site for updates.

Finally, it may help if you post this on the Linkedin Mura group. Not everyone views these theme-specific forums.</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=11</link>
			<dc:date>2013-04-08T21:14:10-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=12">
			<title>RE: Interesting IE Issue</title>
			<description>Hmm, does anyone else see the same issue I&apos;m seeing in IE, ver 9?  My client can duplicate the issue as well.

It seems to be an issue between the version of the slidedeck and a recent update to IE.

I&apos;m not a big IE fan, and I can&apos;t do anything when MS messes with IE, so if anyone has any recommendations on how I can fix the slidedeck, I&apos;m all ears.  Thanks in advance!

Carl</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=12</link>
			<dc:date>2013-04-08T18:50:48-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=13">
			<title>RE: Interesting IE Issue</title>
			<description>This is an example of what I&apos;m seeing in IE.

Carl</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=13</link>
			<dc:date>2013-04-04T18:45:08-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=14">
			<title>Interesting IE Issue</title>
			<description>Good day everyone,

I&apos;ve come across an interesting and problematic issue in IE.  In IE, the vertical bars on my slider have gone blank, or white.  It&apos;s only in IE and on two of the computers in our office.

I checked in an IE rendering site, http://netrenderer.com/ and they show up when I render the various IE versions.  I also have a second laptop, which has not been updated in awhile, running the same version of IE, but with no issues.

To compound things, the demo site for the Solved theme, http://tf.dtbaker.com.au/preview/?theme=16&amp;style=14 has the same issue in IE for me.

I&apos;m thinking MS did an update to IE recently which must have changed a setting or such.  Does anyone know what might have changed in IE to cause this?  What I might do to fix it, etc.?

You can see the site I&apos;m building off the Solved them at [url=http://plushgrass.bigplan.net/]http://plushgrass.bigplan.net/[/url] 

I would like to know if anyone else has the same issue I do in IE.

Thanks for any input!
Carl</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=8395F992-7E41-444D-897474A963489420&amp;r=14</link>
			<dc:date>2013-04-04T18:35:30-04:00</dc:date>
			<dc:subject>Interesting IE Issue</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=9C8607A4-8BEF-4D3A-BE4A6B54832C7DE0&amp;r=15">
			<title>RE: Timeout when applying the Theme</title>
			<description>Hi Sean,

Am on ColdFusion 10 and mura 6.0.

Regards,
kishore</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=9C8607A4-8BEF-4D3A-BE4A6B54832C7DE0&amp;r=15</link>
			<dc:date>2013-04-02T12:50:32-04:00</dc:date>
			<dc:subject>Timeout when applying the Theme</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=9C8607A4-8BEF-4D3A-BE4A6B54832C7DE0&amp;r=16">
			<title>RE: Timeout when applying the Theme</title>
			<description>Thanks for letting us know. What version of Mura are you on? Also, what version of ColdFusion or Railo?</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=9C8607A4-8BEF-4D3A-BE4A6B54832C7DE0&amp;r=16</link>
			<dc:date>2013-04-02T10:17:45-04:00</dc:date>
			<dc:subject>Timeout when applying the Theme</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=9C8607A4-8BEF-4D3A-BE4A6B54832C7DE0&amp;r=17">
			<title>Timeout when applying the Theme</title>
			<description>Hi,

When I applied the Forceful theme, it timed out with the error &quot;Element RC.ACTION is undefined in ARGUMENTS. &quot;. I tried increasing the timeout period but it did not help.

Any help would be greatly appreciated.

Regards,
kishore</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=9C8607A4-8BEF-4D3A-BE4A6B54832C7DE0&amp;r=17</link>
			<dc:date>2013-04-02T09:50:48-04:00</dc:date>
			<dc:subject>Timeout when applying the Theme</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=2D2C845E-6414-471E-9BAEB119F4618FEF&amp;r=18">
			<title>RE: New Form Outputs Code</title>
			<description>@Carl,

No problem, glad to hear it worked!

-Steve</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=2D2C845E-6414-471E-9BAEB119F4618FEF&amp;r=18</link>
			<dc:date>2013-03-26T12:52:34-04:00</dc:date>
			<dc:subject>New Form Outputs Code</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=2D2C845E-6414-471E-9BAEB119F4618FEF&amp;r=19">
			<title>RE: New Form Outputs Code</title>
			<description>Thank you Steve!

My core files were up-to-date, but updating the site files seemed to do the trick.  I&apos;ll remember to check those first next time.

Thanks again!
Carl</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=2D2C845E-6414-471E-9BAEB119F4618FEF&amp;r=19</link>
			<dc:date>2013-03-26T09:46:34-04:00</dc:date>
			<dc:subject>New Form Outputs Code</dc:subject>
			</item>
		
		
		
	
		

			
			
			
		
			<item rdf:about="http://www.getmura.com/forum/messages.cfm?threadid=2D2C845E-6414-471E-9BAEB119F4618FEF&amp;r=20">
			<title>RE: New Form Outputs Code</title>
			<description>@Carl,

I would recommend making a backup of your site, then update your Core and Site files. If you still see the issue, let us know.

Thanks,
Steve</description>
			<link>http://www.getmura.com/forum/messages.cfm?threadid=2D2C845E-6414-471E-9BAEB119F4618FEF&amp;r=20</link>
			<dc:date>2013-03-26T09:16:27-04:00</dc:date>
			<dc:subject>New Form Outputs Code</dc:subject>
			</item>
		
		
		
	

</rdf:RDF>

