<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Internet Explorer &#8211; Not displyaing correctly with internet explorer</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/feed/</link>
		<description></description>
		<pubDate>Fri, 17 Jul 2026 12:12:49 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20354</guid>
					<title><![CDATA[Internet Explorer &#8211; Not displyaing correctly with internet explorer]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20354</link>
					<pubDate>Sun, 08 Jun 2014 22:45:40 +0000</pubDate>
					<dc:creator>Torres</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>The website is not displaying proper in Internet Exoplorer. When scrolling down the responsive site doesn&#8217;t show the content. I have to refresh in order for the content to show. I doesn&#8217;t open the first time.</p>
<p>Secondly I have another issue in IE. I want to adjust the top menu margin for IE alone. In other browsers, it shows fine bun in IE the menu is too high.</p>
<p>Thanks in advance</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20355</guid>
					<title><![CDATA[Reply To: Internet Explorer &#8211; Not displyaing correctly with internet explorer]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20355</link>
					<pubDate>Mon, 09 Jun 2014 07:18:04 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>You mean IE for mobile? What version of IE?</p>
<p>Secondly, what is your URL so I can take a look at what you are attempting.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20356</guid>
					<title><![CDATA[Reply To: Internet Explorer &#8211; Not displyaing correctly with internet explorer]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20356</link>
					<pubDate>Mon, 09 Jun 2014 10:04:21 +0000</pubDate>
					<dc:creator>Torres</dc:creator>

					<description>
						<![CDATA[
						<p>No,not mobile. IE version 11.</p>
<p>URl: <a href="http://energyandwatersavers.com/" rel="nofollow">http://energyandwatersavers.com/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20357</guid>
					<title><![CDATA[Reply To: Internet Explorer &#8211; Not displyaing correctly with internet explorer]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20357</link>
					<pubDate>Mon, 09 Jun 2014 10:44:14 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>It loads just fine here in IE but as image caching in IE seems to be problematic you can simply disable it for it, here&#8217;s how, edit your js/common.js and replace the preloadImages method with this:</p>
<pre><code>function preloadImages(imgs, callback) {
	var cache = [],
		imgsTotal = imgs.length,
		imgsLoaded = 0;

		
	// If IE start off animations right away
	var ua = window.navigator.userAgent;
    var msie = ua.indexOf(&#039;MSIE &#039;);	
	var trident = ua.indexOf(&#039;Trident/&#039;);
	
	if (msie &gt; 0) {
        // IE 10 or older =&gt; return version number
        callback();
    }

    if (trident &gt; 0) {
        // IE 11 (or newer) =&gt; return version number
        callback();
    }
		
	if(jQuery(imgs).length){
		jQuery(imgs).each(function (i, img) {
			var cacheImage = document.createElement(&#039;img&#039;);
			cacheImage.onload = function () {
				if (++imgsLoaded == imgsTotal) callback();
			};
			cacheImage.src = jQuery(img).attr(&#039;src&#039;);
			cache.push(cacheImage);
		});
	}else {
		callback();
	}
}</code></pre>
<p>The logo in IE 11 doesn&#8217;t resize for some reason, I will definitely take a look into this for the next update, till then you can add this to your custom styles under Theme Options:</p>
<pre><code>#logo img {
max-height: 72px;
}</code></pre>
<p>or simply upload a smaller logo image! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20365</guid>
					<title><![CDATA[Reply To: Internet Explorer &#8211; Not displyaing correctly with internet explorer]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/internet-explorer-not-displyaing-correctly-with-internet-explorer/#post-20365</link>
					<pubDate>Wed, 11 Jun 2014 13:05:14 +0000</pubDate>
					<dc:creator>Torres</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you&#8230; I will try this.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

