<?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>Cre8ive Commando &#187; sIFR links</title>
	<atom:link href="http://www.cre8ivecommando.com/tag/sifr-links/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cre8ivecommando.com</link>
	<description>Explosive Creativity</description>
	<lastBuildDate>Sat, 04 Feb 2012 10:33:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to create clickable links in sIFR3</title>
		<link>http://www.cre8ivecommando.com/how-to-create-clickable-links-in-sifr3-288/</link>
		<comments>http://www.cre8ivecommando.com/how-to-create-clickable-links-in-sifr3-288/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 12:54:13 +0000</pubDate>
		<dc:creator>Adham Dannaway</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[clickable sIFR 3 links]]></category>
		<category><![CDATA[create links in sIFR3]]></category>
		<category><![CDATA[links in sIFR]]></category>
		<category><![CDATA[sIFR 3 a href]]></category>
		<category><![CDATA[sIFR 3 links]]></category>
		<category><![CDATA[sIFR links]]></category>

		<guid isPermaLink="false">http://www.cre8ivecommando.com/?p=288</guid>
		<description><![CDATA[sIFR 3 is a great way to embed a font in a website. sIFR 3 uses a combination of Flash, CSS and javascript to dynamically display fonts on your website. It&#8217;s quite simple to use sIFR 3 to embed a font in a heading on your website like a h1, h2, or h3 element. But [...]


Related posts:<ol><li><a href='http://www.cre8ivecommando.com/two-great-ways-to-embed-a-font-in-your-website-1/' rel='bookmark' title='Two great ways to embed a font in your website'>Two great ways to embed a font in your website</a></li>
<li><a href='http://www.cre8ivecommando.com/how-to-create-a-favicon-for-your-website-54/' rel='bookmark' title='How to create a favicon for your website'>How to create a favicon for your website</a></li>
<li><a href='http://www.cre8ivecommando.com/create-your-own-simpsons-character-188/' rel='bookmark' title='Simpsonize yourself! Create your own Simpsons character'>Simpsonize yourself! Create your own Simpsons character</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cre8ivecommando.com/wp-content/uploads/2009/06/create-clickable-links-with-sifr3.jpg"></a>sIFR 3 is a great way to embed a font in a website. sIFR 3 uses a combination of Flash, CSS and javascript to dynamically display fonts on your website. It&#8217;s quite simple to use sIFR 3 to embed a font in a heading on your website like a h1, h2, or h3 element. But what about when you want to make that heading into a clickable link? Can sIFR 3 be used to create a clickable link? Yes it can, and it&#8217;s quite simple to set up.<span id="more-288"></span></p>
<p>I&#8217;ll assume that you have already set up sIFR 3 on your website and it is working fine for your headings. As an example lets say that you have embedded the &#8220;<strong>Georgia</strong>&#8221; font in your &#8220;<strong>h1</strong>&#8221; tags on your website and they are working. But you would like your headings to be links to other pages on your website. Below are a few steps to create clickable links with sIFR 3 that you can style with hover effects using CSS.</p>
<ol>
<li>Let&#8217;s put the link tag around our h1 heading like so.
<pre class="brush: xml;">&lt;h1&gt;&lt;a href=&quot;yourlinkgoeshere&quot;&gt;Your Heading Text&lt;/a&gt;&lt;/h1&gt;</pre>
</li>
<li>Doing this results in the heading text turning the ugly default blue link colour with an underline, so we need to style it.<br />
<img class="alignnone size-full wp-image-292" title="default-sifr3-link" src="http://www.cre8ivecommando.com/wp-content/uploads/2009/06/default-sifr3-link.jpg" alt="default-sifr3-link" width="480" height="126" /></li>
<li>Now let&#8217;s add the h1 styles to our main CSS stylesheet. Make sure the h1 element has a height. It will look something like this:
<pre class="brush: xml;">
h1{
font-size:36px;
color:#FFFFFF;
height:45px;
}
</pre>
</li>
<li>Find the &#8220;<strong>sIFR.replace</strong>&#8221; function (it should be at the bottom of your sifr.js file) and add the following styles so that your function looks something like the one below. This will allow you to style your sIFR link text.
<pre class="brush: xml;">
sIFR.replace(georgia,{
selector:'h1',
wmode:'transparent',
css:['.sIFR-root { color: #ffffff; }',
'.sIFR-root a { color: #ffffff; text-decoration: none; }',
'.sIFR-root a:hover { color: #ffffff; text-decoration: none; }',
'.sIFR-root a:visited { color: #ffffff; text-decoration: none; }']
});
</pre>
</li>
<li>You can add more styles if you like but these are the basic styles to control your links. I have made mine white links with no text decoration or hover effects.</li>
</ol>
<p>So that&#8217;s how you can create links with sIFR 3 that you can style with some simple CSS. There are lots of other ways to <a href="http://www.cre8ivecommando.com/two-great-ways-to-embed-a-font-in-your-website-1/">embed fonts in your website</a>, one of the nicest ways is <a href="http://www.cre8ivecommando.com/the-best-way-to-embed-a-font-in-your-website-2025/">@font-face</a>.</p>


<p>Related posts:</p><ol><li><a href='http://www.cre8ivecommando.com/two-great-ways-to-embed-a-font-in-your-website-1/' rel='bookmark' title='Two great ways to embed a font in your website'>Two great ways to embed a font in your website</a></li>
<li><a href='http://www.cre8ivecommando.com/how-to-create-a-favicon-for-your-website-54/' rel='bookmark' title='How to create a favicon for your website'>How to create a favicon for your website</a></li>
<li><a href='http://www.cre8ivecommando.com/create-your-own-simpsons-character-188/' rel='bookmark' title='Simpsonize yourself! Create your own Simpsons character'>Simpsonize yourself! Create your own Simpsons character</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.cre8ivecommando.com/how-to-create-clickable-links-in-sifr3-288/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>

