<?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: Image Boxes Flip on IE</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/feed/</link>
		<description></description>
		<pubDate>Thu, 27 Aug 2026 02:04:21 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30124</guid>
					<title><![CDATA[Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30124</link>
					<pubDate>Wed, 12 Oct 2016 07:51:34 +0000</pubDate>
					<dc:creator>FabianVerdure</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I want to use the Images Boxes with the Transition, but It doesnt seem to work on the IE.</p>
<p><a href="http://blueowlcreative.com/wp/fortuna/image-box/" rel="nofollow">http://blueowlcreative.com/wp/fortuna/image-box/</a></p>
<p>I mean the last ones.</p>
<p>Do you have any ideas? Thank you </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30132</guid>
					<title><![CDATA[Reply To: Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30132</link>
					<pubDate>Thu, 13 Oct 2016 06:57:12 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Can you find this bit:</p>
<p><code>.pic_info.type6 .info_overlay</code></p>
<p>in your style.css file, then remove this below it:</p>
<pre><code>-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;</code></pre>
<p>Then refresh after clearing up cache.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30135</guid>
					<title><![CDATA[Reply To: Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30135</link>
					<pubDate>Thu, 13 Oct 2016 07:46:26 +0000</pubDate>
					<dc:creator>FabianVerdure</dc:creator>

					<description>
						<![CDATA[
						<p>Hey,<br />
thanks for the reply, but this method doesnt solve my problem.<br />
The only thing thats changes is that the overlay becomes visible, too. </p>
<p>I tried to set the z-index of the overlay to 0 and on hover to 2. But it doesnt take the z-index on hover </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30155</guid>
					<title><![CDATA[Reply To: Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30155</link>
					<pubDate>Mon, 17 Oct 2016 08:30:43 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>Let&#8217;s replace the whole section then, find these 2 comments and replace whatever is in between with this (<code>/* pic info type6 */</code> and <code>/* pic info type6 :: END*/</code>):</p>
<pre><code>/* pic info type6 */
.padded_carousel .owl-carousel .owl-stage-outer {
	padding: 20px 0;
}

.pic_info_link_type6 {
	-webkit-perspective: 1600;
	-moz-perspective: 1600;
	perspective: 1600;
	display: block;
}
.pic_info.type6 {
	-webkit-transition: 0.6s;
	-webkit-transform-style: preserve-3d;
	-moz-transition: 0.6s;
	-moz-transform-style: preserve-3d;
	transition: 0.6s;
	transform-style: preserve-3d;
	position: relative;
	overflow: visible;
}

a:hover.pic_info_link_type6 .pic_info.type6 .pic {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

a:hover .pic_info.type6 .info_overlay {
   	-webkit-transform: rotateY(0);
	-moz-transform: rotateY(0);
	transform: rotateY(0);
}

.pic_info.type6 .pic {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
	z-index: 2;
}

a .pic_info.type6 .info_overlay_padding {
	width: 100%;
	height: 100%;
}

.pic_info.type6 .info_overlay {	
	width: 100%;
	height: 100%;
    transform-style: preserve-3d;
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;	

	background: rgba(8, 173, 167, 0.8);
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
}

a .pic_info.type6 .plus_overlay_icon {
	background: url(images/icon_plus_white.png) 0 0 no-repeat;
	width: 13px;
	height: 13px;
	bottom: 9px;
	position: absolute;
	right: 9px;
	-webkit-transition: all 0.2s cubic-bezier(.63,.08,.35,.92);
	-moz-transition: all 0.2s cubic-bezier(.63,.08,.35,.92);
	-o-transition: all 0.2s cubic-bezier(.63,.08,.35,.92);
	-ms-transition: all 0.2s cubic-bezier(.63,.08,.35,.92);
	transition: all 0.2s cubic-bezier(.63,.08,.35,.92);
}

a .pic_info.type6 .plus_overlay {
	border-bottom: 50px solid rgba(8, 173, 167, 0.9);
	border-left: 50px solid transparent;
	bottom: 0;
	height: 0;
	opacity: .95;
	position: absolute;
	right: 0;
	text-indent: -9999px;
	-webkit-transition: all 0.2s cubic-bezier(.63,.08,.35,.92);
	-moz-transition: all 0.2s cubic-bezier(.63,.08,.35,.92);
	-o-transition: all 0.2s cubic-bezier(.63,.08,.35,.92);
	-ms-transition: all 0.2s cubic-bezier(.63,.08,.35,.92);
	transition: all 0.2s cubic-bezier(.63,.08,.35,.92);

	width: 0;
}

.pic_info.type6 .info_overlay .info_desc {
	position: absolute;
	top: 50%;
	margin-top: -46px;
	width: 100%;
	-webkit-transition: all 0.1s cubic-bezier(.63,.08,.35,.92);
	-moz-transition: all 0.1s cubic-bezier(.63,.08,.35,.92);
	-o-transition: all 0.1s cubic-bezier(.63,.08,.35,.92);
	-ms-transition: all 0.1s cubic-bezier(.63,.08,.35,.92);
	transition: all 0.1s cubic-bezier(.63,.08,.35,.92);
}

a .pic_info.type6 .img_overlay_icon {
	display: none;
}
a .pic_info.type6 .plus_overlay_icon {
	z-index: 100;
}

a .pic_info.type6 .portfolio_icon{
	display: inline-block;
	color: #fff;
	width: 36px;
	height: 36px;
	background-color: rgba(0,0,0,0.8);
	border-radius: 50%;
	
	-webkit-transition: all 0.2s 0 cubic-bezier(.63,.08,.35,.92);
	-moz-transition: all 0.2s 0 cubic-bezier(.63,.08,.35,.92);
	-o-transition: all 0.2s 0 cubic-bezier(.63,.08,.35,.92);
	-ms-transition: all 0.2s 0 cubic-bezier(.63,.08,.35,.92);
	transition: all 0.2s 0 cubic-bezier(.63,.08,.35,.92);		
}
.pic_info.type6 .info_overlay h3, .pic_info.type6 .info_overlay p {
	color: #fff;
}
/* pic info type6 :: END*/</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30219</guid>
					<title><![CDATA[Reply To: Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30219</link>
					<pubDate>Mon, 24 Oct 2016 07:44:43 +0000</pubDate>
					<dc:creator>FabianVerdure</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks again for the fast support. I wasnt there for a week, but you solution doesnt solve the problem again on IE. I have no clue </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30228</guid>
					<title><![CDATA[Reply To: Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30228</link>
					<pubDate>Mon, 24 Oct 2016 08:54:18 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>It did for me, may I please see your URL? </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30229</guid>
					<title><![CDATA[Reply To: Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30229</link>
					<pubDate>Mon, 24 Oct 2016 08:55:43 +0000</pubDate>
					<dc:creator>FabianVerdure</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,<br />
of course you can! </p>
<p><a href="http://www.asutec.eu/unternehmen/karriere/" rel="nofollow">http://www.asutec.eu/unternehmen/karriere/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30232</guid>
					<title><![CDATA[Reply To: Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30232</link>
					<pubDate>Mon, 24 Oct 2016 09:52:56 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>Can you doublecheck if you updated your style.css? I just checked and the above changes are missing&#8230; <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30235</guid>
					<title><![CDATA[Reply To: Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30235</link>
					<pubDate>Mon, 24 Oct 2016 11:21:46 +0000</pubDate>
					<dc:creator>FabianVerdure</dc:creator>

					<description>
						<![CDATA[
						<p>I updated the style.css <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" />  </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30238</guid>
					<title><![CDATA[Reply To: Image Boxes Flip on IE]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/image-boxes-flip-on-ie/#post-30238</link>
					<pubDate>Mon, 24 Oct 2016 13:10:14 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>And it seems to work now from what I see&#8230; <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

