<?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; Graphics</title>
	<atom:link href="http://webdesignersedge.com/category/graphics/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>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<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[Coding]]></category>
		<category><![CDATA[CSS]]></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 [...]]]></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>9</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[Coding]]></category>
		<category><![CDATA[CSS]]></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>9</slash:comments>
		</item>
		<item>
		<title>Taming The IE6 Beast</title>
		<link>http://webdesignersedge.com/newsletters/taming-the-ie6-beast.html</link>
		<comments>http://webdesignersedge.com/newsletters/taming-the-ie6-beast.html#comments</comments>
		<pubDate>Thu, 20 Aug 2009 05:19:36 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Newsletters]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=147</guid>
		<description><![CDATA[&#8220;Internet Explorer 6.0&#8243;. The freelance web designer, and especially one who is self-taught, will shudder when hearing the name of this infamous browser. BUT, as much as we all hate it, and struggle with it when we are new, if you can learn to design websites that work EVEN in IE6, then you will have [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://webdesignersedge.com/Internet-explorer-6.jpg" alt="Internet Explorer 6.0" style="float:left" />&#8220;Internet Explorer 6.0&#8243;. The freelance web designer, and especially one who is self-taught, will shudder when hearing the name of this infamous browser.</p>
<p>BUT, as much as we all hate it, and struggle with it when we are new, if you can learn to design websites that work EVEN in IE6, then you will have become a much better designer.</p>
<p>Good web designers don&#8217;t care what their clients are going to use to look at their website, it&#8217;s just going to work.</p>
<p>Here are a few things I&#8217;ve learned in my struggle to tame the IE6 beast &#8230; Keep in mind, these are things I&#8217;ve learned through trial and error. And no rocket science here, just some simple rules to follow.</p>
<p>First, I always use pixels in sizing, never &#8216;em&#8217;s. Maybe this is something you never did, but I used to use tons of &#8216;em&#8217;s in my themes for spacing elements, with margins and padding. But somehow, &#8216;em&#8217;s aren&#8217;t correctly treated in older versions of IE. So I started using nothing but pixels for spacing, and got better results.</p>
<p>Second, I rely more on padding than on margins. Older IE versions tend to treat margins differently than other major browsers. So if there was an element that I could use either padding or margins, with the same effect, I would use the padding rather than the margin.</p>
<p>Third, wherever possible, I turn my .png files into .jpg files. I like to use transparency as much as anyone. But all too often I would be showing a cool new theme or website to a friend, on their computer, and the .png files would get a grey or pink background that totally messed up the look I was going for. So, if at all possible, I use .jpg files. Also, I don&#8217;t use transparent .css borders or font. IE6 doesn&#8217;t know what transparent means with anything at all!</p>
<p>Fourth, I don&#8217;t get crazy with creating graphical submit buttons or fields. IE has standard ones that they overlay onto the ones you create. So better to keep your submit buttons simple, either the default or some simple .css.</p>
<p>And my last tip is to test, test, test. Especially when trying a new technique and spending hours making it look perfect &#8230; in your favorite browser. There&#8217;s nothing more frustrating than getting it perfect and then finding out that in other major browsers (IE6 is not that major anymore but you get the point) it completely falls apart. Better to stick with simpler techniques that you can get to look good in all browsers.</p>
<p>Get an awesome web host!<a onmouseover="window.status='http://www.hostgator.com';return true;" onmouseout="window.status=' ';return true;" href="http://www.dpbolvw.net/click-3505025-10408505" target="_blank"><br />
Unlimited Domain Hosting Only $9.95 a Month</a><br />
<img src="http://www.tqlkg.com/image-3505025-10408505" border="0" alt="" width="1" height="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/taming-the-ie6-beast.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Illustrator Tutorials To Make You An Expert &#8211; Massive List Of Freebies</title>
		<link>http://webdesignersedge.com/newsletters/illustrator-tutorials-to-make-you-an-expert-massive-list-of-freebies.html</link>
		<comments>http://webdesignersedge.com/newsletters/illustrator-tutorials-to-make-you-an-expert-massive-list-of-freebies.html#comments</comments>
		<pubDate>Wed, 24 Jun 2009 14:00:33 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 June 24]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=73</guid>
		<description><![CDATA[Vector graphics are harder than other graphics unless you know what you are doing. Using Illustrator can either be freeing &#8230; or frustrating, depending. Check out this huge list of tutorials that can help you with every imaginable aspect of using Illustrator. Just dedicate yourself an hour or two a week, and in a year [...]]]></description>
			<content:encoded><![CDATA[<p>Vector graphics are harder than other graphics unless you know what you are doing. Using Illustrator can either be freeing &#8230; or frustrating, depending.</p>
<p>Check out this huge list of tutorials that can help you with every imaginable aspect of using Illustrator. Just dedicate yourself an hour or two a week, and in a year you will have mastered many different of the tools available.</p>
<p>Enjoy it!</p>
<p><a href="http://click.icptrack.com/icp/relay.php?r=-1&#038;msgid=0&#038;act=11111&#038;c=477675&#038;admin=0&#038;destination=http%3A%2F%2Fwww.instantshift.com%2F2009%2F03%2F19%2F125-ultimate-round-up-of-illustrator-tutorials%2F">Collection of Illustrator Tutorials</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/illustrator-tutorials-to-make-you-an-expert-massive-list-of-freebies.html/feed</wfw:commentRss>
		<slash:comments>1</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 [...]]]></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>

