<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>StyleWired</title>
	
	<link>http://www.stylewired.com</link>
	<description>It's All About Internet Marketing Actually</description>
	<lastBuildDate>Fri, 26 Feb 2010 13:28:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Stylewired" /><feedburner:info uri="stylewired" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Stylewired</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to create a ‘flash mimic’ animated rollover link using just HTML and CSS</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/MuHkM4wRiHI/how-to-create-a-flash-mimic-animated-rollover-link-using-just-html-and-css</link>
		<comments>http://www.stylewired.com/xhtml-tips/how-to-create-a-flash-mimic-animated-rollover-link-using-just-html-and-css#comments</comments>
		<pubDate>Fri, 26 Feb 2010 13:28:21 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[(X)HTML Tips]]></category>
		<category><![CDATA[CSS Tips]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=225</guid>
		<description><![CDATA[This is an extremely simple and lightweight way of created a link that animates on hover. All you have to do is create your link in the normal way using HTML. For example:




&#60;p class=&#34;animated-rollover&#34;&#62;&#60;a href=&#34;#&#34;&#62;Link text&#60;/a&#62;&#60;/p&#62;




Now style this code so that you have a background image for &#8216;p.animated-rollover a&#8217; and a different background image for [...]]]></description>
			<content:encoded><![CDATA[<p>This is an extremely simple and lightweight way of created a link that animates on hover. All you have to do is create your link in the normal way using HTML. For example:</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="sc2"><a href="http://december.com/html/4/element/p.html"><span class="kw2">&lt;p</span></a> <span class="kw3">class</span>=<span class="st0">&quot;animated-rollover&quot;</span><span class="kw2">&gt;</span></span><span class="sc2"><a href="http://december.com/html/4/element/a.html"><span class="kw2">&lt;a</span></a> <span class="kw3">href</span>=<span class="st0">&quot;#&quot;</span><span class="kw2">&gt;</span></span>Link text<span class="sc2"><span class="kw2">&lt;/a&gt;</span></span><span class="sc2"><span class="kw2">&lt;/p&gt;</span></span></div>
</li>
</ol>
</div>
</div>
<p>Now style this code so that you have a background image for &#8216;p.animated-rollover a&#8217; and a different background image for &#8216;p.animated-rollover a:hover&#8217;. The hover state background image is going to be an animated gif. This is how you get the animation on hover.</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1">p<span class="re1">.animated-rollover</span> <span class="br0">&#123;</span> <span class="kw1">width</span>: <span class="re3">150px</span>; <span class="kw1">height</span>: <span class="re3">40px</span>; <span class="kw1">background</span>: <span class="kw2">url</span><span class="br0">&#40;</span><span class="re4">images/animated_rollover_a_hover<span class="re1">.gif</span></span><span class="br0">&#41;</span>; <span class="kw1">text-align</span>: <span class="kw2">center</span>; <span class="kw1">line-height</span>: <span class="re3">40px</span>; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">p<span class="re1">.animated-rollover</span> a <span class="br0">&#123;</span> <span class="kw1">width</span>: <span class="re3">150px</span>; <span class="kw1">height</span>: <span class="re3">40px</span>; <span class="kw1">background</span>: <span class="kw2">url</span><span class="br0">&#40;</span><span class="re4">images/animated_rollover_a<span class="re1">.gif</span></span><span class="br0">&#41;</span>; <span class="kw1">display</span>: <span class="kw2">block</span>; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">p<span class="re1">.animated-rollover</span> a<span class="re2">:hover</span> <span class="br0">&#123;</span> <span class="kw1">background</span>: <span class="kw2">url</span><span class="br0">&#40;</span><span class="re4">images/animated_rollover_a_hover<span class="re1">.gif</span></span><span class="br0">&#41;</span>; <span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<p>I&#8217;ve left out any text styling in this example. You could use &#8216;text-indent: -5000px; overflow: hidden&#8217; and use the background image for the text if you like.</p>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/MuHkM4wRiHI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/xhtml-tips/how-to-create-a-flash-mimic-animated-rollover-link-using-just-html-and-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/xhtml-tips/how-to-create-a-flash-mimic-animated-rollover-link-using-just-html-and-css</feedburner:origLink></item>
		<item>
		<title>Social Cast sign-up call to action</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/Snmyfcl5SaA/social-cast-sign-up-call-to-action</link>
		<comments>http://www.stylewired.com/call-to-action-gallery/social-cast-sign-up-call-to-action#comments</comments>
		<pubDate>Sat, 10 Jan 2009 19:01:37 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Call to Action Gallery]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=199</guid>
		<description><![CDATA[
From: www.socialcast.com.
]]></description>
			<content:encoded><![CDATA[<p class="cta-gallery-image"><a href="http://www.stylewired.com/images/posts/cta-gallery/social_cast_cta.jpg" rel="lightbox"><img src="http://www.stylewired.com/images/posts/cta-gallery/social_cast_cta.jpg" width="520" height="237" alt="Social Cast" /></a></p>
<p class="cta-source">From: <a href="http://www.socialcast.com/">www.socialcast.com</a>.</p>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/Snmyfcl5SaA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/call-to-action-gallery/social-cast-sign-up-call-to-action/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/call-to-action-gallery/social-cast-sign-up-call-to-action</feedburner:origLink></item>
		<item>
		<title>Boagworld subscribe call to action</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/GkciQVMx1bU/boagworld-call-to-action</link>
		<comments>http://www.stylewired.com/call-to-action-gallery/boagworld-call-to-action#comments</comments>
		<pubDate>Sat, 10 Jan 2009 17:51:18 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Call to Action Gallery]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=188</guid>
		<description><![CDATA[
From: Boagworld.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stylewired.com/images/posts/cta-gallery/boagworld_cta.jpg" rel="lightbox"><img src="http://www.stylewired.com/images/posts/cta-gallery/boagworld_cta.jpg" alt="GumTree Calls To Action" width="520" height="222" /></a></p>
<p>From: <a href="http://www.boagworld.com/">Boagworld</a>.</p>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/GkciQVMx1bU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/call-to-action-gallery/boagworld-call-to-action/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/call-to-action-gallery/boagworld-call-to-action</feedburner:origLink></item>
		<item>
		<title>GumTree Calls To Action</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/cXKrUMgfiks/gumtree-calls-to-action</link>
		<comments>http://www.stylewired.com/call-to-action-gallery/gumtree-calls-to-action#comments</comments>
		<pubDate>Sat, 10 Jan 2009 13:49:06 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Call to Action Gallery]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=184</guid>
		<description><![CDATA[
From Gumtree.com.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.stylewired.com/images/posts/cta-gallery/gumtree_cta.jpg" alt="GumTree Calls To Action" width="520" height="217" /></p>
<p>From <a href="http://www.gumtree.com/">Gumtree.com</a>.</p>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/cXKrUMgfiks" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/call-to-action-gallery/gumtree-calls-to-action/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/call-to-action-gallery/gumtree-calls-to-action</feedburner:origLink></item>
		<item>
		<title>WordPress 2.7 Call to action</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/94WqvXW5lvo/wordpress-27-call-to-action</link>
		<comments>http://www.stylewired.com/call-to-action-gallery/wordpress-27-call-to-action#comments</comments>
		<pubDate>Sat, 10 Jan 2009 13:41:45 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Call to Action Gallery]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=182</guid>
		<description><![CDATA[
From: WordPress.org
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stylewired.com/images/posts/cta-gallery/wordpress_2_7_cta.jpg" rel="lightbox"><img src="http://www.stylewired.com/images/posts/cta-gallery/wordpress_2_7_cta.jpg" alt="WordPress 2.7 call to action" width="520" height="183" /></a></p>
<p>From: <a href="http://www.wordpress.org/">WordPress.org</a></p>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/94WqvXW5lvo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/call-to-action-gallery/wordpress-27-call-to-action/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/call-to-action-gallery/wordpress-27-call-to-action</feedburner:origLink></item>
		<item>
		<title>Yahoo! Answers Email for free guide download call to action</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/OvMrXqQzWj0/yahoo-answers-email-for-free-guide-download</link>
		<comments>http://www.stylewired.com/call-to-action-gallery/yahoo-answers-email-for-free-guide-download#comments</comments>
		<pubDate>Thu, 18 Dec 2008 15:32:15 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Call to Action Gallery]]></category>
		<category><![CDATA[call to action]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=180</guid>
		<description><![CDATA[
From: Yahoo! Answers HTML email.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stylewired.com/images/posts/cta-gallery/yahoo_answers_guide.jpg" rel="lightbox"><img src="http://www.stylewired.com/images/posts/cta-gallery/yahoo_answers_guide.jpg" width="520" height="219" alt="Yahoo Answers Call to Action Gallery Showcase" /></a></p>
<p>From: Yahoo! Answers HTML email.</p>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/OvMrXqQzWj0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/call-to-action-gallery/yahoo-answers-email-for-free-guide-download/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/call-to-action-gallery/yahoo-answers-email-for-free-guide-download</feedburner:origLink></item>
		<item>
		<title>PSDTUTS premium membership call to action</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/z4i6tzYP9sA/psdtuts</link>
		<comments>http://www.stylewired.com/call-to-action-gallery/psdtuts#comments</comments>
		<pubDate>Sun, 09 Nov 2008 23:22:05 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Call to Action Gallery]]></category>
		<category><![CDATA[call to action]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=127</guid>
		<description><![CDATA[
From: PSDTUTS
]]></description>
			<content:encoded><![CDATA[<p class="cta-gallery-image"><a href="http://www.stylewired.com/images/posts/cta-gallery/psdtuts_cta.jpg" rel="lightbox"><img src="http://www.stylewired.com/images/posts/cta-gallery/psdtuts_cta.jpg" width="520" height="269" alt="PSDTUTS call to action gallery" /></a></p>
<p class="cta-source">From: <a href="http://psdtuts.com/">PSDTUTS</a></p>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/z4i6tzYP9sA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/call-to-action-gallery/psdtuts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/call-to-action-gallery/psdtuts</feedburner:origLink></item>
		<item>
		<title>Transmissions download call to action</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/skR3jj-vj2Q/transmissions</link>
		<comments>http://www.stylewired.com/call-to-action-gallery/transmissions#comments</comments>
		<pubDate>Sun, 09 Nov 2008 23:18:08 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Call to Action Gallery]]></category>
		<category><![CDATA[call to action]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=124</guid>
		<description><![CDATA[
From: Transmissions
]]></description>
			<content:encoded><![CDATA[<p class="cta-gallery-image"><a href="http://www.stylewired.com/images/posts/cta-gallery/transmissions_cta.jpg" rel="lightbox"><img src="http://www.stylewired.com/images/posts/cta-gallery/transmissions_cta.jpg" width="520" height="311" alt="Transmissions call to action gallery" /></a></p>
<p class="cta-source">From: <a href="http://www.signalapps.com/">Transmissions</a></p>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/skR3jj-vj2Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/call-to-action-gallery/transmissions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/call-to-action-gallery/transmissions</feedburner:origLink></item>
		<item>
		<title>Time Out Email Newsletter call to action</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/KPU5dZq93oM/timeout-email-newsletter-call-to-action-gallery</link>
		<comments>http://www.stylewired.com/call-to-action-gallery/timeout-email-newsletter-call-to-action-gallery#comments</comments>
		<pubDate>Wed, 05 Nov 2008 21:34:49 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Call to Action Gallery]]></category>
		<category><![CDATA[call to action]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=102</guid>
		<description><![CDATA[
From: www.timeout.com.
]]></description>
			<content:encoded><![CDATA[<p class="cta-gallery-image"><a href="http://www.stylewired.com/images/posts/cta-gallery/timeout_newsletter_cta.jpg" rel="lightbox"><img src="http://www.stylewired.com/images/posts/cta-gallery/timeout_newsletter_cta.jpg" width="520" height="257" alt="Timeout Email Newsletter in Call To Action Gallery" /></a></p>
<p class="cta-source">From: <a href="http://www.timeout.com/">www.timeout.com</a>.</p>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/KPU5dZq93oM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/call-to-action-gallery/timeout-email-newsletter-call-to-action-gallery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/call-to-action-gallery/timeout-email-newsletter-call-to-action-gallery</feedburner:origLink></item>
		<item>
		<title>Emulating HTML5 using comment tags to make your HTML easier to edit</title>
		<link>http://feedproxy.google.com/~r/Stylewired/~3/7mBGozowNlU/emulating-html5-with-comments-to-make-html-easier-to-edit</link>
		<comments>http://www.stylewired.com/xhtml-tips/emulating-html5-with-comments-to-make-html-easier-to-edit#comments</comments>
		<pubDate>Wed, 29 Oct 2008 13:21:28 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[(X)HTML Tips]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://www.stylewired.com/?p=88</guid>
		<description><![CDATA[This is something I&#8217;ve been doing in all of the pages I&#8217;ve been coding for the last year or so. I&#8217;ve noticed other designers doing similar things. This is a simple little trick that makes hand editing code a lot easier.
Associating end tags with start tags using comments
Quite simply all I do is this:




&#60;div id=&#34;footer&#34;&#62;


&#160;


&#60;p&#62;footer [...]]]></description>
			<content:encoded><![CDATA[<p>This is something I&#8217;ve been doing in all of the pages I&#8217;ve been coding for the last year or so. I&#8217;ve noticed other designers doing similar things. This is a simple little trick that makes hand editing code a lot easier.</p>
<h3>Associating end tags with start tags using comments</h3>
<p>Quite simply all I do is this:</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="sc2"><a href="http://december.com/html/4/element/div.html"><span class="kw2">&lt;div</span></a> <span class="kw3">id</span>=<span class="st0">&quot;footer&quot;</span><span class="kw2">&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="sc2"><a href="http://december.com/html/4/element/p.html"><span class="kw2">&lt;p&gt;</span></a></span>footer content here<span class="sc2"><span class="kw2">&lt;/p&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="sc2"><span class="kw2">&lt;/div&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1"><span class="sc2"><span class="coMULTI">&lt;!&#8211; /#footer &#8211;&gt;</span></span></div>
</li>
</ol>
</div>
</div>
<p>If I need to edit the code quickly I can easily establish the start and end of any particular element. This is similar to the <a href="http://www.w3.org/html/wg/html5/">HTML5</a> format, which is not yet being used by browsers, because HTML5 is going to be formatted something like this:</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="sc2">&lt;footer&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="sc2"><a href="http://december.com/html/4/element/p.html"><span class="kw2">&lt;p&gt;</span></a></span>footer content here<span class="sc2"><span class="kw2">&lt;/p&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="sc2"><span class="kw2">&lt;</span>/footer&gt;</span></div>
</li>
</ol>
</div>
</div>
<img src="http://feeds.feedburner.com/~r/Stylewired/~4/7mBGozowNlU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylewired.com/xhtml-tips/emulating-html5-with-comments-to-make-html-easier-to-edit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stylewired.com/xhtml-tips/emulating-html5-with-comments-to-make-html-easier-to-edit</feedburner:origLink></item>
	</channel>
</rss>
