<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Tag: image hover - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/image-hover</link>
		<description>Support Forum - Tag: image hover - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 20 Jun 2013 01:52:19 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/tags/image-hover" rel="self" type="application/rss+xml" />

		<item>
			<title>vitaliss on "How to Disable Image hover and Icon"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-image-hover-and-icon#post-119549</link>
			<pubDate>Wed, 19 Jun 2013 23:34:42 +0000</pubDate>
			<dc:creator>vitaliss</dc:creator>
			<guid isPermaLink="false">119549@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'd also be interested in removing image hover/arrow in all the images. Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Daniel on "Portfolio Item Hover"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-item-hover#post-119533</link>
			<pubDate>Wed, 19 Jun 2013 20:05:59 +0000</pubDate>
			<dc:creator>Daniel</dc:creator>
			<guid isPermaLink="false">119533@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Try this one then:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.image-overlay .image-overlay-inside::before {
      background: none !important;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>mj109 on "How to Disable Image hover and Icon"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-image-hover-and-icon#post-119527</link>
			<pubDate>Wed, 19 Jun 2013 19:24:05 +0000</pubDate>
			<dc:creator>mj109</dc:creator>
			<guid isPermaLink="false">119527@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,  &#60;/p&#62;
&#60;p&#62;I would like to disable the image hover and icon when I am using the Justified Image Grid plugin. And allow the hover and icon for normal media images.&#60;/p&#62;
&#60;p&#62;thanks, &#60;/p&#62;
&#60;p&#62;MJ
&#60;/p&#62;</description>
		</item>
		<item>
			<title>potterlawson on "Portfolio Item Hover"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-item-hover#post-119509</link>
			<pubDate>Wed, 19 Jun 2013 17:23:50 +0000</pubDate>
			<dc:creator>potterlawson</dc:creator>
			<guid isPermaLink="false">119509@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for your help.  I placed that text into my custom.css file and uploaded it, but it didn't work....wondering what I did wrong???
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Daniel on "Portfolio Item Hover"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-item-hover#post-119466</link>
			<pubDate>Wed, 19 Jun 2013 15:17:40 +0000</pubDate>
			<dc:creator>Daniel</dc:creator>
			<guid isPermaLink="false">119466@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Okay I solved it!&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;First potterlawso here is the answer to your question:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.image-overlay .image-overlay-inside::before {
      background: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Post the above into your custom.css file.&#60;/p&#62;
&#60;p&#62;If you only want it done to a certain page, remember to look at the page's sourcecode and get the portfolios page-id-&#38;lt;number&#38;gt; e.g page-id-507&#60;/p&#62;
&#60;p&#62;In that case all you would do is add .page-id-507 infront as follows:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.page-id-507 .image-overlay .image-overlay-inside::before {
      background: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;As for my question here is how to replace the circle + icon and add something you want:&#60;/p&#62;
&#60;p&#62;Original code found in layout.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.image-overlay .image-overlay-inside::before {
	position: absolute; border-radius: 50px;
	background: #000; height:80px; width:80px;
	line-height:80px; left:50%; top:50%; margin: -40px 0 0 -40px;
	z-index: 500; text-align: center; color:#fff;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then added my own in custom.css to a specific page:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.page-id-756 .image-overlay .image-overlay-inside::before{
	position: absolute; border-radius: 0px !important;
	background: url(../images/portfolio-hover-image.png) no-repeat !important; height:114px !important; width:141px !important;
	line-height:114px; left:35%; top:45%;
	z-index: 500;
	text-align: center; color:#fff;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Please note I put my image in the image folder. The path is /theme_name/images/ folder. Default /enfold/images/ = ../images/&#60;/p&#62;
&#60;p&#62;Hope that helps,&#60;br /&#62;
Peace,&#60;br /&#62;
Daniel
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Daniel on "Portfolio Item Hover"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-item-hover#post-119381</link>
			<pubDate>Wed, 19 Jun 2013 08:59:01 +0000</pubDate>
			<dc:creator>Daniel</dc:creator>
			<guid isPermaLink="false">119381@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello, considering this falls under the same topic I'll request it here also. I want the same as potterlawso. But I would also like to know how to change this image to a custom image I've created, lets call it: portfolio-image.jpg&#60;/p&#62;
&#60;p&#62;So instead of the Circle with the Icon, how can I make this be replaced by my portfolio-image.jpg?&#60;/p&#62;
&#60;p&#62;Cheers all,&#60;br /&#62;
Daniel
&#60;/p&#62;</description>
		</item>
		<item>
			<title>potterlawson on "Portfolio Item Hover"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-item-hover#post-119278</link>
			<pubDate>Tue, 18 Jun 2013 20:33:47 +0000</pubDate>
			<dc:creator>potterlawson</dc:creator>
			<guid isPermaLink="false">119278@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm trying to figure out how to remove the circle with an arrow that pops up when you hover over a portfolio item.  I would like to keep the transparent white that appears just rid of the circle with arrow....thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Woocommerce &#039;Add to cart&#039; Image Hover question"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-add-to-cart-image-hover-question#post-81671</link>
			<pubDate>Wed, 31 Oct 2012 12:17:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">81671@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Yes, open up flashlight\woocommerce-config\config.php and delete following line:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo $link;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>coenie on "Woocommerce &#039;Add to cart&#039; Image Hover question"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-add-to-cart-image-hover-question#post-81537</link>
			<pubDate>Tue, 30 Oct 2012 11:55:18 +0000</pubDate>
			<dc:creator>coenie</dc:creator>
			<guid isPermaLink="false">81537@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am developing a website for relatively expensive watches, and no one is buying a watch by just looking at a thumbnail. At the moment when you hover over an image 2 buttons appear: 1 for 'add to cart' and the other for 'more details'. Is it possible to only show the 'more details' button?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Coenie
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Image Hover - Post"</title>
			<link>http://www.kriesi.at/support/topic/image-hover-post#post-58820</link>
			<pubDate>Tue, 05 Jun 2012 06:08:30 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">58820@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Phil,&#60;/p&#62;
&#60;p&#62;Glad that you found the solution. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>philipjamesbarnes on "Image Hover - Post"</title>
			<link>http://www.kriesi.at/support/topic/image-hover-post#post-58333</link>
			<pubDate>Thu, 31 May 2012 23:01:13 +0000</pubDate>
			<dc:creator>philipjamesbarnes</dc:creator>
			<guid isPermaLink="false">58333@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;found it - put in this if it helps anyone;&#60;/p&#62;
&#60;p&#62;.lightbox_video, .lightbox_image, .image_overlay_effect, .image_overlay_effect_inside {&#60;br /&#62;
opacity: 0!important;&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>philipjamesbarnes on "Image Hover - Post"</title>
			<link>http://www.kriesi.at/support/topic/image-hover-post#post-58330</link>
			<pubDate>Thu, 31 May 2012 22:47:52 +0000</pubDate>
			<dc:creator>philipjamesbarnes</dc:creator>
			<guid isPermaLink="false">58330@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Guys,&#60;/p&#62;
&#60;p&#62;How can I remove the image hover function on posts?  See this example - &#60;a href=&#34;http://www.whatisoninlondon.com/2012/boutique-cinema-put-your-feet-up/&#34; rel=&#34;nofollow&#34;&#62;http://www.whatisoninlondon.com/2012/boutique-cinema-put-your-feet-up/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I want both the magnifying glass and grey overlay disabled.  I've used this code;&#60;/p&#62;
&#60;p&#62;.lightbox_image .image_overlay_effect {&#60;br /&#62;
    display: none;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;What else do I need?&#60;/p&#62;
&#60;p&#62;On another note, can you modify this blog to send an email update when someone replies to a post?  I find it hard to find past posts and as the feedback isn't often it's easy to lose track of it.  Just a suggestion to improve the process.&#60;/p&#62;
&#60;p&#62;Phil
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "About image hover, image size and Post thumbnail"</title>
			<link>http://www.kriesi.at/support/topic/about-image-hover-image-size-and-post-thumbnail#post-22173</link>
			<pubDate>Thu, 07 Jul 2011 06:24:22 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">22173@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
open up framework/helper_functions/kriesi_post_thumb.php and change following code to your needs:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$parameters .= &#38;#39;&#38;amp;zc=1&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However I'm not sure if you'll see any effect (I don't think so) because timthumb is just a fallback script and it's used when the wp post thumbnail function doesn't work.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ScarlettC on "About image hover, image size and Post thumbnail"</title>
			<link>http://www.kriesi.at/support/topic/about-image-hover-image-size-and-post-thumbnail#post-22071</link>
			<pubDate>Tue, 05 Jul 2011 23:13:15 +0000</pubDate>
			<dc:creator>ScarlettC</dc:creator>
			<guid isPermaLink="false">22071@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello ~ &#60;/p&#62;
&#60;p&#62;I'd like to know how to adjust the settings in functions.php to take advantage of timthumb's zc=2, zc=3 settings. The L img hovers are often stretched since the dimensions are set &#38;amp; my client uploads smaller images. Ideally, you'll help me to adjust the settings so the image aspect ratio can be preserved while filling the dimensions. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.binarymoon.co.uk/demo/timthumb-zoom-crop/&#34; rel=&#34;nofollow&#34;&#62;http://www.binarymoon.co.uk/demo/timthumb-zoom-crop/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "About image hover, image size and Post thumbnail"</title>
			<link>http://www.kriesi.at/support/topic/about-image-hover-image-size-and-post-thumbnail#post-9477</link>
			<pubDate>Sat, 27 Nov 2010 07:48:29 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">9477@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
there are some bugs/problems with WP3 (i.e. external link doesn't work correctly) - I already reported them to Kriesi.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blacksand on "About image hover, image size and Post thumbnail"</title>
			<link>http://www.kriesi.at/support/topic/about-image-hover-image-size-and-post-thumbnail#post-9401</link>
			<pubDate>Wed, 24 Nov 2010 21:08:23 +0000</pubDate>
			<dc:creator>blacksand</dc:creator>
			<guid isPermaLink="false">9401@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;At the moment I am using wordpress 2.9.2 not wordpress 3.0+. But in theme description it is written that it is compatible with 3.0. But it is not compatible with 3.0
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "About image hover, image size and Post thumbnail"</title>
			<link>http://www.kriesi.at/support/topic/about-image-hover-image-size-and-post-thumbnail#post-9384</link>
			<pubDate>Wed, 24 Nov 2010 16:46:09 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">9384@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;I've had a look at your site and it looks like you've installed the theme and I can see any immediate errors or problems.&#60;/p&#62;
&#60;p&#62;To cover your questions:&#60;/p&#62;
&#60;p&#62;1.) You can adjust the image sizes in functions.php - you need to adjust this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#####################################################################
# Define Thumbnail sizes
#####################################################################
$k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;base&#38;#39;] = array(&#38;#39;width&#38;#39;=&#38;gt;267, &#38;#39;height&#38;#39;=&#38;gt;180); 	// backend preview size, if changed does not affect the frontend
$k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;S&#38;#39;] = array(&#38;#39;width&#38;#39;=&#38;gt;60, &#38;#39;height&#38;#39;=&#38;gt;60);			// small preview pics, eg for sidebar news
$k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;M&#38;#39;] = array(&#38;#39;width&#38;#39;=&#38;gt;180, &#38;#39;height&#38;#39;=&#38;gt;135);		// small preview pic for posts
$k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;L&#38;#39;] = array(&#38;#39;width&#38;#39;=&#38;gt;610, &#38;#39;height&#38;#39;=&#38;gt;260);		// big preview pic for posts
$k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;XL&#38;#39;] = array(&#38;#39;width&#38;#39;=&#38;gt;884, &#38;#39;height&#38;#39;=&#38;gt;390);		// big images for fullsize pages&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2.) The popup image effect upon hovering over the gallery images (e.g. Site 5) is working as per the &#60;a href=&#34;http://www.kriesi.at/themes/expose/&#34;&#62;demo&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;If you have any other specific questions, please let us know.&#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blacksand on "About image hover, image size and Post thumbnail"</title>
			<link>http://www.kriesi.at/support/topic/about-image-hover-image-size-and-post-thumbnail#post-9330</link>
			<pubDate>Tue, 23 Nov 2010 14:50:36 +0000</pubDate>
			<dc:creator>blacksand</dc:creator>
			<guid isPermaLink="false">9330@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
 I purchased your theme. But could not install theme like your demo. I made all things that you wrote in your installation manual. But unfortunately could not find where to change image size, because you said to mini, small, medium, large. Where to edit these? Also when adding new post, there is not “Post Thumbnail”, there is only “Post Thumbnail Option”, therefore lightbox effect does not work in homepage. Also when I click to “large”, there is not any images.&#60;/p&#62;
&#60;p&#62;I am using wordpress 3.0.1.&#60;br /&#62;
My website: &#60;a href=&#34;http://www.webzun.com&#34; rel=&#34;nofollow&#34;&#62;http://www.webzun.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
