<?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; Twitter</title>
	<atom:link href="http://webdesignersedge.com/category/twitter/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>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>Getting Connected to the Design World</title>
		<link>http://webdesignersedge.com/newsletters/getting-connected-to-the-design-world.html</link>
		<comments>http://webdesignersedge.com/newsletters/getting-connected-to-the-design-world.html#comments</comments>
		<pubDate>Wed, 12 Aug 2009 12:00:04 +0000</pubDate>
		<dc:creator>Heather Feimster</dc:creator>
				<category><![CDATA[Business Tips]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[2009 Aug 12]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=106</guid>
		<description><![CDATA[Starting out as a freelancer is never easy. In web design, it’s even tougher because we mainly work by ourselves from home. If you are like me, you first experienced designing for print; now, however, you’ll need to tweak those skills for use with an online medium – too bad since I always loved the [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float:right;" src="http://webdesignersedge.com/987182_whizzkid.jpg" alt="Getting Connected" />Starting out as a freelancer is never easy. In web design, it’s even tougher because we mainly work by ourselves from home. If you are like me, you first experienced designing for print; now, however, you’ll need to tweak those skills for use with an online medium – too bad since I always loved the smell of a good print shop.</p>
<p>When I decided to pursue web design full time a few months ago, I decided that to be the best, I needed to learn from the best. The hard part was – where are “the best”? How do I find them? And how can I learn from them?</p>
<p>Through trial and error I’ve come up with an effective strategy for making a name for myself among other designers in the “community.” These are what have worked for me – you’ll want to experiment and try different things out to determine what works for you.</p>
<p>Not a big writer? Maybe a blog isn’t up your alley. Like to teach others? Try creating some tutorials. The key is to put yourself out there.</p>
<p>So here are my recommendations for getting connected with other designers.</p>
<h3>1. Get involved on <a href="http://twitter.com">Twitter</a>.</h3>
<p>Okay, so what’s the big deal with Twitter? I had no idea three months ago – I heard it all over the news but hadn’t experienced it. Good thing for us designers is that most other designers, like us, are sitting at their computers all day. So Twitter works really well as a means to get connected. Here’s what I did to launch myself into the Twittersphere.</p>
<h5 style="padding-left: 30px;">Follow other noted designers on Twitter.</h5>
<p style="padding-left: 30px;">I read their profiles and visit their sites. Follow those that practice in the area you do. You can find many different<a href="http://blog.shoutem.com/2009/06/07/100-awesome-designers-and-developers-to-follow-on-twitter/"> lists of designers to follow</a> out there, so start with one and go from there.</p>
<h5 style="padding-left: 30px;">Don’t set your account to “auto-follow.”</h5>
<p style="padding-left: 30px;">This is just my personal preference, but I only want quality content to come through my feed. So I screen people who follow me before I follow them. This strategy is also used by some of the most popular people on Twitter. It helps me better follow the conversations and dialogue that I want to engage in on Twitter – instead of just generating an RSS feed of resources (although that is a great bonus!).</p>
<h5 style="padding-left: 30px;">Learn other tips from the experts.</h5>
<p style="padding-left: 30px;">Since I won’t pretend to know the best Twitter techniques, I suggest you read this post by Grace Smith on <a href="http://www.gracesmith.co.uk/essential-guide-to-using-twitter-for-inspiration/"><em>Using Twitter for Inspiration</em></a>.</p>
<h3>2. Do your research.</h3>
<p>To effectively engage with other designers, you need to know how to design. Knowledge about the medium, the tools and the jargon of the trade all enhance your ability to really get the most out of interactions with other designers.</p>
<ul>
<li>If you are coming from print design like me, I suggest you read up on <a href="http://divitodesign.com/css/66-links-to-learn-the-webdesign-basics/">the principles of web design</a> – they are vastly different!</li>
</ul>
<ul>
<li> Keep track of good resources and references. I prefer <a href="http://delicious.com/HeatherEx">Delicious</a> so that I can access my links from anywhere, but other bookmarking services would work just the same.</li>
</ul>
<ul>
<li> Share good content with others so they can benefit as well. I do this most often via Twitter (see the circle beginning to form?).</li>
</ul>
<ul>
<li> Take the time to find and complete tutorials that are outside your comfort zone. Many times just reading through a tutorial can give you tips that will make your next design pop. I recommend two different sites on <a href="http://net.tutsplus.com/">development tutorials</a> and <a href="http://psd.tutsplus.com/">design tutorials</a>, but there are many others out there.</li>
</ul>
<h3>3. Put yourself out there.</h3>
<p>So you’ve been slowly getting into the Twitter world and have done a bit of research and feel like you’re getting your feet under you. Now it’s time start building your reputation among other designers.</p>
<ul>
<li> If you feel up to it or need a place to release your wisdom with more than 140 characters, start your own site/blog. Not only is this necessary to gain clients, but it also creates link for folks to associate with you – this is the start of your “brand.”</li>
</ul>
<ul>
<li> Once you’ve populated your blog/site with some interesting stuff, list it on some <a href="http://artfans.info/?p=630&amp;cpage=1">design directories</a> and <a href="http://www.jasonbartholme.com/21-twitter-directories-and-follower-finders-to-expand-your-twittersphere/">Twitter directories</a>.</li>
</ul>
<ul>
<li> Engage other designers in relevant dialogue. Ask for advice on client questions, seek collaboration on projects and provide your own feedback to others’ inquiries.</li>
</ul>
<ul>
<li> If possible, attend conferences or other face-to-face meetings with designers in your area. As great as technology is, it can’t replace a good ol’ cup of coffee and creative personal discussion. Danny Outlaw has a great <a href="http://www.outlawdesignblog.com/2009/design-conferences-tradeshows-and-expos/">list of conferences</a> on his Outlaw Design blog, and MeetUp is a great <a href="http://www.meetup.com/">resource to connect with other local professionals</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/getting-connected-to-the-design-world.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>A Social Media Technique To Grow Your Business &#8211; My Favorite Twitter Searches</title>
		<link>http://webdesignersedge.com/newsletters/a-social-media-technique-to-grow-your-business-my-favorite-twitter-searches.html</link>
		<comments>http://webdesignersedge.com/newsletters/a-social-media-technique-to-grow-your-business-my-favorite-twitter-searches.html#comments</comments>
		<pubDate>Thu, 06 Aug 2009 07:00:50 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Business Tips]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[2009 Aug 06]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=27</guid>
		<description><![CDATA[Twitter is one of those weird things that some people love and others hate. It&#8217;s been debated up and down whether you can make money with Twitter. Well I don&#8217;t really care what anyone says about it, the fact is, you can easily find clients using Twitter, and a freelance web design business is a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://webdesignersedge.com/wp-content/uploads/2009/08/ScreenShot188.png" alt="ScreenShot188" title="ScreenShot188" width="560" height="245" class="alignleft size-full wp-image-170" />Twitter is one of those weird things that some people love and others hate. It&#8217;s been debated up and down whether you can make money with Twitter.</p>
<p>Well I don&#8217;t really care what anyone says about it, the fact is, you can easily find clients using Twitter, and a freelance web design business is a perfect fit for this.</p>
<p>Here&#8217;s how you can do it: Search for words you consider a good fit for someone who is looking for web design. For example, two searches I like are &#8220;get website&#8221; and &#8220;need website&#8221;. If someone is saying on Twitter &#8220;I need a website&#8221;, you will find it.</p>
<p>Then all you do is follow that person, and send them an @reply saying you can help them with whatever it is they are asking, and if they want to talk more, just DM or @reply back.</p>
<p>I&#8217;ve been amazed how easy it is, and how few people are doing this to find freelance clients.</p>
<p>Most people ARE doing something like this: &#8220;Hey I&#8217;m a web designer if you want a website go here &#8230;&#8221;. They are doing this as an update on their own profile. So the only people to see it have to follow them first.</p>
<p>NOT going to work.</p>
<p>Find the people who are saying they need help, follow them and offer your help. You&#8217;ll be amazed at the results you get from Twitter since it&#8217;s still fairly new and trust runs pretty high among followers on Twitter.</p>
<p>There, I just shared with you something I really didn&#8217;t want to tell anyone, but I told you because you are a subscriber :)</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/a-social-media-technique-to-grow-your-business-my-favorite-twitter-searches.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cool Free Tools ALERT &#8211; FREE Twitter Tool For A Pro</title>
		<link>http://webdesignersedge.com/newsletters/cool-free-tools-alert-free-twitter-tool-for-a-pro.html</link>
		<comments>http://webdesignersedge.com/newsletters/cool-free-tools-alert-free-twitter-tool-for-a-pro.html#comments</comments>
		<pubDate>Fri, 05 Jun 2009 14:00:47 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Business Tips]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[2009 June 05]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=83</guid>
		<description><![CDATA[This tool costs nothing and will help you do mass actions like following everyone who follows you and unfollowing people who you follow but don&#8217;t follow you back. It&#8217;s going to save you a lot of time in cleaning up your followers list and I use it a couple times a week at least. Only [...]]]></description>
			<content:encoded><![CDATA[<p>This tool costs nothing and will help you do mass actions like following everyone who follows you and unfollowing people who you follow but don&#8217;t follow you back. It&#8217;s going to save you a lot of time in cleaning up your followers list and I use it a couple times a week at least.</p>
<p>Only thing is they say that you can only use it 3 times free when you have more than 1800 followers. Well I have over 14,000 and i&#8217;m still using it free &#8230;</p>
<p>so use it FREE while you can!</p>
<p><a href="http://huitter.com/mutuality/">http://huitter.com/mutuality/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/cool-free-tools-alert-free-twitter-tool-for-a-pro.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

