<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Designers&#039; Edge - The Self-Taught Designer&#039;s Best Friend &#187; Tutorials</title>
	<atom:link href="http://webdesignersedge.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://webdesignersedge.com</link>
	<description>The Place For Self-Taught Designers</description>
	<lastBuildDate>Sun, 23 May 2010 16:51:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using CSS To Use A Custom ShareThis Icon Or Image</title>
		<link>http://webdesignersedge.com/coding/using-css-to-use-a-custom-sharethis-icon-or-image.html</link>
		<comments>http://webdesignersedge.com/coding/using-css-to-use-a-custom-sharethis-icon-or-image.html#comments</comments>
		<pubDate>Sun, 23 May 2010 16:29:34 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WebDesignersEdge]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=251</guid>
		<description><![CDATA[It&#8217;s pretty annoying how little instruction there is to change the ShareThis icon to something else. So I took a stab at finding my own solution without needing to modify javascript code or API calls. Frankly, the freshest information about it was 2 years old. And very paltry and not very helpful.
The issue is that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://webdesignersedge.com/wp-content/uploads/2010/05/ScreenShot054.png"><img src="http://webdesignersedge.com/wp-content/uploads/2010/05/ScreenShot054.png" alt="ShareThis icon custom" title="Share This icon" width="240" height="183" class="alignleft size-full wp-image-252" /></a>It&#8217;s pretty annoying how little instruction there is to change the ShareThis icon to something else. So I took a stab at finding my own solution without needing to modify javascript code or API calls. Frankly, the freshest information about it was 2 years old. And very paltry and not very helpful.</p>
<p>The issue is that when you get the share widget from the ShareThis website, there are only a couple options for the styling of the button. And the javascript code that you get does not have an image URL in it that you could easily modify to your own image. I even tried copying the javascript that loads from the ShareThis site and loading it from my own site, with modifications. But that didn&#8217;t work.<img src="http://webdesignersedge.com/wp-content/uploads/2010/05/ScreenShot056.png" alt="ShareThis Image Options" title="ShareThis Image Options" width="336" height="175" class="alignright size-full wp-image-257" /> What I wanted was a large icon that when moused over would show the sharethis dropdown of all the social sharing options. However, there is no large icon option. Just a few different small icon options that were not going to match my client website icons. So, time to make it my way.</p>
<p>The image was going to appear in a group of icons for navigation. The sharethis icon needed to fit right into the middle of them. Since I was already using <a href="http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html">some hover css</a> that I&#8217;m fond of using for icons like this, avoiding having to use jquery and for that, maybe making the site somewhat more accessible, I went ahead with that. I do this with an <a href="http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html">object tag to wrap a div inside a link tag, so it will validate</a>.</p>
<p>Then all I did was create another div inside that one, to insert the sharethis javascript code. The HTML for the list menu item down to the javascript looked like this:</p>
<p><code>&lt;li&gt;<br />
&lt;a href="http:&#47;&#47;example.com&#47;about"&gt;<br />
&lt;object&gt;<br />
&lt;div class="menu-share"&gt;<br />
---share this javascript goes here---<br />
&lt;/div&gt;<br />
&lt;/object&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
</code></p>
<p>So there are the .menu-share div to show the button, as well as help me hide the image that sharethis will load, without hiding the functionality. All that&#8217;s left is the .css:</p>
<p><code>.menu-share {<br />
  background: url('images/share-icon.png') no-repeat 0 top;<br />
  height: 56px;<br />
  width: 57px;<br />
  float: left;<br />
  margin: 0 20px;<br />
}<br />
.menu-share:hover {<br />
  background-position: 0 -57px;<br />
  cursor: pointer;<br />
}<br />
.menu-share img {<br />
  display: none;<br />
}<br />
</code></p>
<p>The last little bit just hides any image inside the div. It does not hide the background image, only images that load inside the div. However, all the javascript is still fully functional, loading the social media dropdown as it should.</p>
<p><img src="http://webdesignersedge.com/wp-content/uploads/2010/05/ScreenShot057.png" alt="ShareThis Dropdown" title="ShareThis Dropdown" width="312" height="242" class="aligncenter size-full wp-image-279" /></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/coding/using-css-to-use-a-custom-sharethis-icon-or-image.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Hover Effect Without Javascript or Jquery</title>
		<link>http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html</link>
		<comments>http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 03:12:28 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Adobe Fireworks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=200</guid>
		<description><![CDATA[We all love javascript and jquery, right? It&#8217;s the stuff that helps you do cool stuff on your site, like rotators, animated elements, and a ton more. But the problem is, if you use Javascript and Jquery to do every effect on your site, it can be a little code-intensive. It also won&#8217;t work when [...]]]></description>
			<content:encoded><![CDATA[<p>We all love javascript and jquery, right? It&#8217;s the stuff that helps you do cool stuff on your site, like rotators, animated elements, and a ton more. But the problem is, if you use Javascript and Jquery to do every effect on your site, it can be a little code-intensive. It also won&#8217;t work when someone has javascript disabled.</p>
<p><a href="http://webdesignersedge.com/wp-content/uploads/2009/12/ScreenShot211.png"><img class="alignleft size-full wp-image-201" title="ScreenShot211" src="http://webdesignersedge.com/wp-content/uploads/2009/12/ScreenShot211.png" alt="" width="391" height="281" /></a>Enter the simple elements that use nothing but HTML and CSS, and maybe some images.</p>
<p>What I want to demonstrate is a simple way to get a hover effect on an image, without using jquery or javascript. The way this works, basically, is the image will be the background of a div element that will reside inside a link. Actually the div does not have to be inside a link, but it does if you want the image to link to some other url. The background image actually contains two copies of your image, with the second copy having whatever hover effect you want, such as slightly darker or whatever. In the CSS code, you have the background image positioned at the top of the div, and in a hover of the same div, you have the background image positioned at the bottom. When you hover, voila! And unlike the javascript version of hover, you don&#8217;t have to wait a split second for the hover to work, since the image is already loaded!</p>
<p><img class="alignright size-full wp-image-203" title="ScreenShot212" src="http://webdesignersedge.com/wp-content/uploads/2009/12/ScreenShot212.png" alt="" />To the rightyou can see a screenshot of the effect I&#8217;m going to show you. On the same screenshot you can also see a green button. I used the same effect on that. The button is part of a jquery slider, so it&#8217;s not like I never use jquery :)</p>
<p>I&#8217;m going to be using the coffee cup that&#8217;s available <a href="http://www.webdesignerdepot.com/2009/07/50-free-and-exclusive-twitter-icons/" target="_blank">here</a>. Actually I recommend this set of twitter icons, they are probably the coolest you can find.</p>
<p>First, I open Fireworks and find the coffee cup image I downloaded. Then I resize it to the size I need for the footer of my website. For me that&#8217;s 96px wide and 71px high. Then, I copy the image and paste it over itself. Next, move the second copy so that the top of the second copy just touches the bottom of the first copy. Then &#8220;Fit Canvas&#8221; so that the two images are now visible. Next, I select the bottom image and modify the color by reducing the saturation to nothing. This makes it greyscale. See the screenshot to the right.</p>
<p>Then save the image and optimize it. I save it as a transparent .PNG file, but you can also save it as a .jpg if you don&#8217;t need transparency. I personally use PNG Gauntlet to optimize the .PNG.</p>
<p>Then I load it into the image folder on my website, and put the following code in the CSS file:</p>
<p><code><br />
.twitter {<br />
  float: right;<br />
  width: 96px;<br />
  height: 71px;<br />
  background: url('images/social/twitter-cup.png') no-repeat bottom;<br />
  margin: 17px 44px 4px 0;<br />
}<br />
.twitter:hover {<br />
  background: url('images/social/twitter-cup.png') no-repeat top;<br />
}</p>
<p></code></p>
<p>My div has a class &#8216;twitter&#8217;. Then simply put the div in your website where you want it to appear. Just call it the same class and it will work like a charm. You can also wrap it with a link if you want it to be hyperlinked.</p>
<p>And that&#8217;s it! The simplest (I believe) way to have cool hover effects on your website, that works instantly since the image is already preloaded when the page loads.</p>
<p>See the footer of my web design site for a sample:  <a href="http://6webdesign.com" target="_blank">See The Coffee Cup Here</a></p>
<p>If you implement this little trick, please let me know by commenting here or tweeting it!</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Trends In Web Design: 3d Effects &#8211; Here Are Some Amazing Tutorials To Help You</title>
		<link>http://webdesignersedge.com/newsletters/trends-in-web-design-3d-effects-here-are-some-amazing-tutorials-to-help-you.html</link>
		<comments>http://webdesignersedge.com/newsletters/trends-in-web-design-3d-effects-here-are-some-amazing-tutorials-to-help-you.html#comments</comments>
		<pubDate>Wed, 17 Jun 2009 14:00:07 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Adobe Illustrator]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[2009 June 17]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=78</guid>
		<description><![CDATA[According to Smashing Magazine, there is a trend today in 3d effects. 3D effects are really cool looking and they give your pages the look of popping out. (Even see the new redesigned signup page of this newsletter! Look here.
Anyway, go check out this list of 50 tutorials to help you create really cool 3D [...]]]></description>
			<content:encoded><![CDATA[<p>According to Smashing Magazine, there is a trend today in 3d effects. 3D effects are really cool looking and they give your pages the look of popping out. (Even see the new redesigned signup page of this newsletter! Look here.</p>
<p>Anyway, go check out this list of 50 tutorials to help you create really cool 3D effects:</p>
<p><a href="http://www.smashingmagazine.com/2009/06/16/50-excellent-3d-adobe-illustrator-tutorials">http://www.smashingmagazine.com/2009/06/16/50-excellent-3d-adobe-illustrator-tutorials</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/trends-in-web-design-3d-effects-here-are-some-amazing-tutorials-to-help-you.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
