<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Colortip &#8211; a jQuery Tooltip Plugin</title>
	<atom:link href="http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/</link>
	<description>Web Development Tutorials &#38; Resources</description>
	<lastBuildDate>Wed, 16 May 2012 02:12:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: pete</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-23177</link>
		<dc:creator>pete</dc:creator>
		<pubDate>Thu, 05 Apr 2012 16:43:09 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-23177</guid>
		<description>These tooltips don&#039;t work properly in FF11. If you have them in a div that overlaps another, or have the tooltips attached to images in said div, the tooltips will appear behind the images next to it. Z-index doesn&#039;t work to change this.

I think it could be because I have a ulist where the li elements are displayed horizontally using display: inline and no-style, and maybe this messes up the display/parent-child relationship.</description>
		<content:encoded><![CDATA[<p>These tooltips don't work properly in FF11. If you have them in a div that overlaps another, or have the tooltips attached to images in said div, the tooltips will appear behind the images next to it. Z-index doesn't work to change this.</p>
<p>I think it could be because I have a ulist where the li elements are displayed horizontally using display: inline and no-style, and maybe this messes up the display/parent-child relationship.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Drew</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-17678</link>
		<dc:creator>Drew</dc:creator>
		<pubDate>Tue, 24 May 2011 20:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-17678</guid>
		<description>Hello,

I added a color scheme for &#039;silver&#039;.  While it requires CSS3 for the full effect, it degrades decently, and looks good.

Add the following lines to colortip-1.0jquery.css:

.silver .pointyTip { display:none; }
.silver .pointyTipShadow { display:none; }
.silver .colorTip {
color:#333;
font:10px arial;
background: #fefefe;
background: -moz-linear-gradient(top, #fefefe 0%, #e5e3ee 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e5e3ee));
background: -webkit-linear-gradient(top, #fefefe 0%,#e5e3ee 100%);
background: -o-linear-gradient(top, #fefefe 0%,#e5e3ee 100%);
background: -ms-linear-gradient(top, #fefefe 0%,#e5e3ee 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&#039;#FEFEFE&#039;, endColorstr=&#039;#E5E3EE&#039;,GradientType=0 );
background: linear-gradient(top, #fefefe 0%,#e5e3ee 100%);
padding:5px;
-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px; border:1px solid #696969;
box-shadow:2px 2px 3px #696969; -moz-box-shadow:2px 2px 3px #696969; -webkit-box-shadow:2px 2px 3px #696969;
}

Then modify line 9 of colortip-1.0-jquery.js to this:
var supportedColors = [&#039;red&#039;,&#039;green&#039;,&#039;blue&#039;,&#039;white&#039;,&#039;yellow&#039;,&#039;black&#039;,&#039;silver&#039;];

Now silver becomes one of your coloration options.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I added a color scheme for 'silver'.  While it requires CSS3 for the full effect, it degrades decently, and looks good.</p>
<p>Add the following lines to colortip-1.0jquery.css:</p>
<p>.silver .pointyTip { display:none; }<br />
.silver .pointyTipShadow { display:none; }<br />
.silver .colorTip {<br />
color:#333;<br />
font:10px arial;<br />
background: #fefefe;<br />
background: -moz-linear-gradient(top, #fefefe 0%, #e5e3ee 100%);<br />
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e5e3ee));<br />
background: -webkit-linear-gradient(top, #fefefe 0%,#e5e3ee 100%);<br />
background: -o-linear-gradient(top, #fefefe 0%,#e5e3ee 100%);<br />
background: -ms-linear-gradient(top, #fefefe 0%,#e5e3ee 100%);<br />
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FEFEFE', endColorstr='#E5E3EE',GradientType=0 );<br />
background: linear-gradient(top, #fefefe 0%,#e5e3ee 100%);<br />
padding:5px;<br />
-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px; border:1px solid #696969;<br />
box-shadow:2px 2px 3px #696969; -moz-box-shadow:2px 2px 3px #696969; -webkit-box-shadow:2px 2px 3px #696969;<br />
}</p>
<p>Then modify line 9 of colortip-1.0-jquery.js to this:<br />
var supportedColors = ['red','green','blue','white','yellow','black','silver'];</p>
<p>Now silver becomes one of your coloration options.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Umar</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-15779</link>
		<dc:creator>Umar</dc:creator>
		<pubDate>Sat, 05 Mar 2011 19:55:22 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-15779</guid>
		<description>another excellent tutorial .. great works guys</description>
		<content:encoded><![CDATA[<p>another excellent tutorial .. great works guys</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giacomo</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-14571</link>
		<dc:creator>Giacomo</dc:creator>
		<pubDate>Wed, 12 Jan 2011 11:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-14571</guid>
		<description>thanx for sharing, Joost! I had the same problem wiht a wordrpess theme and the prettyphoto plugin. Now, it works!</description>
		<content:encoded><![CDATA[<p>thanx for sharing, Joost! I had the same problem wiht a wordrpess theme and the prettyphoto plugin. Now, it works!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken Pendergast</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-13655</link>
		<dc:creator>Ken Pendergast</dc:creator>
		<pubDate>Tue, 14 Dec 2010 14:45:37 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-13655</guid>
		<description>I am implementing this on a wordpress theme and not running into any conflicts right now but I am still in an early development stage.

Will using the .noConflict serve as a QA mechanism if I add it to avoid future issues?</description>
		<content:encoded><![CDATA[<p>I am implementing this on a wordpress theme and not running into any conflicts right now but I am still in an early development stage.</p>
<p>Will using the .noConflict serve as a QA mechanism if I add it to avoid future issues?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-13424</link>
		<dc:creator>Zach</dc:creator>
		<pubDate>Mon, 06 Dec 2010 16:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-13424</guid>
		<description>Hey there,

You may be having a jQuery library conflict...I&#039;ve had this problem before. Sometimes, especially on platforms like Wordpress, you have to include the $.noConflict(); function to compensate. Check out: http://api.jquery.com/jQuery.noConflict/</description>
		<content:encoded><![CDATA[<p>Hey there,</p>
<p>You may be having a jQuery library conflict...I've had this problem before. Sometimes, especially on platforms like WordPress, you have to include the $.noConflict(); function to compensate. Check out: http://api.jquery.com/jQuery.noConflict/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ZH CEXO</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-13385</link>
		<dc:creator>ZH CEXO</dc:creator>
		<pubDate>Sun, 05 Dec 2010 08:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-13385</guid>
		<description>I add some hacks so this plugin can work with IE6, and I think my code is simpler than @Sirus&#039;
.pointyTip,.pointyTipShadow{
    /* Setting a thick transparent border on a 0x0 div to create a triangle */
    border:6px solid transparent;
    _border:6px solid #123456; /*use a specific color for using chroma filter*/
    bottom:-12px;
    height:0;
    left:50%;
    margin-left:-6px;
    position:absolute;
    width:0;
    font-size:0; /*empty tags have height in IE6, set font-size:0 to remove the height*/
    _filter:chroma(color=#123456); /*chroma filter, #123456 changes to transparent*/
}
.pointyTipShadow{
    /* The shadow tip is 1px larger, so it acts as a border to the tip */
    border-width:7px;
    bottom:-14px;
    _bottom:-15px; /*fix the position in IE6*/
    margin-left:-7px;
}

.colorTipContainer{
    position:relative;
    text-decoration:none !important;
    _zoom:1; /*use this so &lt;em&gt;.pointyTip,.pointyTipShadow{left:50%}&lt;/em&gt; works, but I don&#039;t know why, sigh~*/
}</description>
		<content:encoded><![CDATA[<p>I add some hacks so this plugin can work with IE6, and I think my code is simpler than @Sirus'<br />
.pointyTip,.pointyTipShadow{<br />
    /* Setting a thick transparent border on a 0x0 div to create a triangle */<br />
    border:6px solid transparent;<br />
    _border:6px solid #123456; /*use a specific color for using chroma filter*/<br />
    bottom:-12px;<br />
    height:0;<br />
    left:50%;<br />
    margin-left:-6px;<br />
    position:absolute;<br />
    width:0;<br />
    font-size:0; /*empty tags have height in IE6, set font-size:0 to remove the height*/<br />
    _filter:chroma(color=#123456); /*chroma filter, #123456 changes to transparent*/<br />
}<br />
.pointyTipShadow{<br />
    /* The shadow tip is 1px larger, so it acts as a border to the tip */<br />
    border-width:7px;<br />
    bottom:-14px;<br />
    _bottom:-15px; /*fix the position in IE6*/<br />
    margin-left:-7px;<br />
}</p>
<p>.colorTipContainer{<br />
    position:relative;<br />
    text-decoration:none !important;<br />
    _zoom:1; /*use this so <em>.pointyTip,.pointyTipShadow{left:50%}</em> works, but I don't know why, sigh~*/<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-13183</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sun, 28 Nov 2010 21:27:06 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-13183</guid>
		<description>@Martin,

Great work.  I love the programming abstraction that you used to create this.  I used to use mb_toolip (another jQuery tooltip plug-in), but this is cleaner and easier to modify.  Thanks tons.</description>
		<content:encoded><![CDATA[<p>@Martin,</p>
<p>Great work.  I love the programming abstraction that you used to create this.  I used to use mb_toolip (another jQuery tooltip plug-in), but this is cleaner and easier to modify.  Thanks tons.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rufhausen</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-10555</link>
		<dc:creator>rufhausen</dc:creator>
		<pubDate>Thu, 02 Sep 2010 17:28:40 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-10555</guid>
		<description>Looks like the tag I included got stripped out. The tag in question is &quot;input&quot;.
Thanks.</description>
		<content:encoded><![CDATA[<p>Looks like the tag I included got stripped out. The tag in question is "input".<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rufhausen</title>
		<link>http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/#comment-10554</link>
		<dc:creator>rufhausen</dc:creator>
		<pubDate>Thu, 02 Sep 2010 17:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1019#comment-10554</guid>
		<description>I&#039;m able to get this to work with every any HTML tag I&#039;ve tried except , which is the one I really need it for. Am I missing something, or is this just not supported for some reason?
Thanks.</description>
		<content:encoded><![CDATA[<p>I'm able to get this to work with every any HTML tag I've tried except , which is the one I really need it for. Am I missing something, or is this just not supported for some reason?<br />
Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 356/356 objects using apc
Content Delivery Network via cdn.tutorialzine.com

Served from: tutorialzine.com @ 2012-05-16 18:10:47 -->
