<?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>iWebUnlimited.com &#187; iWeb Tips</title>
	<atom:link href="http://iwebunlimited.com/category/iweb-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://iwebunlimited.com</link>
	<description>Pushing iWeb to No Limit!</description>
	<lastBuildDate>Sun, 15 Aug 2010 07:00:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iWeb Tip #24 &#8211; Print Page Button</title>
		<link>http://iwebunlimited.com/iweb-tips/print-page-button/</link>
		<comments>http://iwebunlimited.com/iweb-tips/print-page-button/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 06:39:40 +0000</pubDate>
		<dc:creator>iWebUnlimited</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Non-Post Editing]]></category>

		<guid isPermaLink="false">http://iwebunlimited.com/?p=690</guid>
		<description><![CDATA[iWeb Tip #24  is on how to add a print page button in iWeb.  There are times when you create a page on your website that viewers might want or need to print frequently, so this tip will help you add an easy &#8220;Print Page&#8221; button to your site.  This tip makes it quick and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2010/08/24-print_btn.png"><img class="alignleft size-full wp-image-694" title="Print Button in iWeb" src="http://iwebunlimited.com/wp-content/uploads/2010/08/24-print_btn.png" alt="Print Button in iWeb" width="150" height="150" /></a>iWeb Tip #24  is on how to add a print page button in iWeb.  There are times when you create a page on your website that viewers might want or need to print frequently, so this tip will help you add an easy &#8220;Print Page&#8221; button to your site.  This tip makes it quick and easy!  Simply paste the code below in an html snippet and that&#8217;s it! So here we go:</p>
<p><span id="more-690"></span></p>
<p>You can see a demo of both Print page button as a form button and a graphic button in action created in iWeb by clicking the button below:</p>
<p style="text-align: right;"><a class="button" onclick="window.open('http://iwebunlimited.com/examples/print_btn.html','Print Buttons in iWeb','width=830,height=735,left='+(screen.availWidth/2-415)+',top='+(screen.availHeight/2-367.5)+'');return false;" href="http://iwebunlimited.com/examples/print_btn.html">View Demo »</a></p>
<p>There are two versions of the code below.  One is to use your own button, the other is to use a form button.  We&#8217;ll first start with a form button.</p>
<h2>Print Page Form Button</h2>
<p>The print page form button doesn&#8217;t require any extra graphics or anything, simply paste the code below in an HTML Snippet in iWeb and you&#8217;ll have a print page button.  It&#8217;s as simple as that!  Here&#8217;s the code:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;script Language="Javascript"&gt;</p>
<p>function printit(){</p>
<p>if (parent.window.print) {</p>
<p>parent.window.print() ;</p>
<p>} else {</p>
<p>var WebBrowser = '&lt;OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"&gt;&lt;/OBJECT&gt;';</p>
<p>document.body.insertAdjacentHTML('beforeEnd', WebBrowser);</p>
<p>WebBrowser1.ExecWB(6, 2);//Use a 1 vs. a 2 for a prompting dialog box    WebBrowser1.outerHTML = "";</p>
<p>}</p>
<p>}</p>
<p>&lt;/script&gt;</p>
<p>&lt;SCRIPT Language="Javascript"&gt;</p>
<p>var NS = (navigator.appName == "Netscape");</p>
<p>var VERSION = parseInt(navigator.appVersion);</p>
<p>if (VERSION &gt; 3) {</p>
<p>document.write('&lt;form&gt;&lt;input type=button value="Print this Page" name="Print" onClick="printit()"&gt;&lt;/form&gt;');</p>
<p>}</p>
<p>&lt;/script&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<h2>Print Page Button with your own Graphic</h2>
<p>This one does the same thing but lets you use your own graphic for the print button.  Much better if you&#8217;re trying to match a similar style to your custom iWeb design.  It just takes a few steps:</p>
<p>1) First make a graphic in photoshop or whatever else to be your print button and upload it to your server (i.e. MobileMe, Your Host Server, etc).</p>
<p>2) Paste the code below, but replace the code in red with the URL link to your image.</p>
<blockquote><p><code><span style="font-family: monospace;">&lt;a href="javascript:parent.window.print()"&gt;&lt;IMG SRC="</span><span style="color: #ff6600;">http://www.mysite.com/imagefolder/mybtnimage.png</span><span style="font-family: monospace;">"; width="</span><span style="color: #ff6600;">127</span><span style="font-family: monospace;">" height="</span><span style="color: #ff6600;">31</span><span style="font-family: monospace;">"  alt="Print this page" border="0"&gt;&lt;/a&gt; </span></code></p>
</blockquote>
<p>3) Hit apply and presto!</p>
<p>If you don&#8217;t know how to make a button here are some free print buttons you can use for your own sites.</p>
<p><a class="button" title="Print Buttons" href="http://iwebunlimited.com/examples/print_btn_files/print_btns.zip">Download Print Buttons</a></p>
<p>Or you can find some great print icons by going here: <a title="Find Icons: Print icons" href="http://findicons.com/search/print" target="_blank">http://findicons.com/search/print</a></p>
<p>That should be it.  If you have any questions or comments post them below.</p>
<p><a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-
via="iwebunlimited" data-related="iWebUnlimited:iWeb Tips, Tricks, Tutorials, and 
more">Tweet</a><script type="text/javascript" 
src="http://platform.twitter.com/widgets.js"></script></p>
<p>
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/print-page-button/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #23 &#8211; Comments in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/blog-comments-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/blog-comments-in-iweb/#comments</comments>
		<pubDate>Wed, 12 May 2010 20:58:33 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Non-Post Editing]]></category>

		<guid isPermaLink="false">http://iwebunlimited.com/?p=646</guid>
		<description><![CDATA[So you have a website you&#8217;ve created in iWeb and you have a blog or page that you want to add comments to, well then this is the iWeb tip for you.  This post is all about getting comments into your iWebsite.  iWeb has a built in commenting system, but it is for MobileMe Members [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-647" title="Comments in iWeb" src="http://iwebunlimited.com/wp-content/uploads/2010/05/23-Comments.png" alt="Comments in iWeb" width="150" height="150" />So you have a website you&#8217;ve created in iWeb and you have a blog or page that you want to add comments to, well then this is the iWeb tip for you.  This post is all about getting comments into your iWebsite.  iWeb has a built in commenting system, but it is for MobileMe Members only.  In this tip I will show you how to add comments to your iWeb made site no matter who you are hosting your site with!  Adding comments into your iWeb made site is great way to add interactive elements for your viewers, they start conversations and it starts to build a community on your website, plus giving you some feedback on your post.  I&#8217;ve seen many people post that they&#8217;ve wanted this added as a tip in the iWeb Forum here, and finally here it is.  So lets get started.</p>
<p><span id="more-646"></span></p>
<p><a class="button" onclick="window.open('http://www.iwebunlimited.com/examples/comments_iframes.html','Comments in iWeb Example','scrollbars=yes,width=830,height=735,left='+(screen.availWidth/2-415)+'');return false;" href="http://www.iwebunlimited.com/examples/comments_iframes.html">View Demo »</a></p>
<p>There are 4 major options when choosing to get comments onto your iWeb site.  The four big commenting systems are:</p>
<ul>
<li><strong>MobileMe</strong> &#8211; Paid (<a title="MobileMe" href="http://www.apple.com/mobileme/" target="_blank">http://www.apple.com/mobileme/</a>)</li>
<li><strong>Disqus</strong> &#8211; Free (<a href="http://www.disqus.com" target="_blank">http://www.disqus.com</a>)</li>
<li><strong>Instense Debate</strong> &#8211; Free (<a href="http://www.intensedebate.com" target="_blank">http://www.intensedebate.com</a>)</li>
<li><strong>Echo</strong> &#8211; Paid (<a href="http://www.aboutecho.com" target="_blank">http://www.aboutecho.com</a>)</li>
</ul>
<p>Each of them have different features and looks to them.  So I&#8217;d recommend looking at each one and deciding which one will work best for you and your website.  I&#8217;m going to show you how to get your comments if your using MobileMe first, then we&#8217;ll get into implementing comments if you&#8217;re not using mobileme.</p>
<h3>Comments with MobileMe:</h3>
<p><img class="alignleft size-full wp-image-652" title="MobileMe Comments" src="http://iwebunlimited.com/wp-content/uploads/2010/05/mobileme.png" alt="MobileMe Comments" width="77" height="77" />MobileMe is probably the easiest way to get comments into your website.  It&#8217;s already built in to iWeb, and it&#8217;s very simple for users to use.  If you don&#8217;t have a MobileMe account yet, it&#8217;s a great option that Apple offers.  It gives you 20GB of online space for storage or a website, it syncs contacts; calendars, bookmarks, and more across all your macs and devices, as well as many other features which you can read about by visiting the MobileMe Site.  Here&#8217;s how to get your comments working if your hosting your site with MobileMe.</p>
<ol>
<li>Create your page(s) in iWeb, then click on the site folder (it&#8217;s the main site above all your pages).</li>
<li>Choose MobileMe as the choice where it says &#8220;Publish To:&#8221;</li>
<li>Then go to the Blog/Podcast page your wanting your comments on, then open the inspector and choose the &#8220;Blog and Podcast Inspector&#8221; (It&#8217;s represented by a an RSS button).</li>
<li>In the Blog and Podcast Inspector you&#8217;ll see a tab that says Blog, click that and you&#8217;ll see a section that says Comments.</li>
<li>Click the Comments Checkbox.  You&#8217;ll be presented with a box that tells you about what comments does, just click OK.</li>
<li>Then click the Allow Attachments (Optional).  This allows users to attach images, documents, etc.  It is possible for visitors to attach items that are objectionable to you or others so if you choose to use this option be sure to moderate the comments often.</li>
<li>Publish your site and that&#8217;s it!</li>
</ol>
<p>You&#8217;ll see that when someone comments on your site using the MobileMe Comments iWeb will have a little number tick next to it&#8217;s icon (similar to Mail) when there is a new comment, so you&#8217;ll know when there is a new comment on your site.  That&#8217;s it and have fun.</p>
<p><br class="spacer_" /></p>
<h3>Adding Comments to your site without MobileMe:</h3>
<p><img class="alignleft size-full wp-image-654" title="Comments in iWeb" src="http://iwebunlimited.com/wp-content/uploads/2010/05/comment_icon.png" alt="Non MobileMe Comments in iWeb" width="100" height="87" />To add comments to your site without MobileMe, we first have to sign up for an account at one of the comment platforms by going to Disqus.com, IntenseDebate.com, or AboutEcho.com.  Disqus and Intense Debate are free and Echo costs about $99 p/year.  We then setup our settings on their sites, get comment code and paste into an HTML Snippet.  The only problem with this is that we need to adjust our snippet to the size our commenting is going to be, because the HTML snippet will not adjust in size as more comments are added to our site.  So you have to either stretch your snippet to the size that you expect your comments to grow as, or you can put the code onto a blank HTML page and iFrame that into iWeb, that way you can set the size of your snippet to be whatever you want and as more comments are added, the iFrame will simply have a scroll bar to show all the comments.  It works really good and makes it easier for you to manage and design.  I tell you this upfront cause there are really two ways to implement this into your site 1) A Direct Snippet and 2) An iFrame (as I discussed).  So Let me first show you how to do it with a Direct Snippet, then I&#8217;ll instruct you how to do it with an iFrame so you can have scrolling comments and won&#8217;t have to worry about the size of your HTML Snippet as more comments are added to your site.</p>
<p>1) First Sign up for a Free account at Disqus.com or InstenseDebate.com (Or AboutEcho.com if you want to pay the $99 yearly fee) and get your comment code.</p>
<p><em><strong>Signing up and getting comment code with Disqus.com:</strong></em></p>
<ol>
<li><em>Go to Disqus.com and hit the &#8220;Sign Up, Free&#8221; Button.</em></li>
<li><em>Enter your Site URL, Site Name, Site Shortname, then decide your username, password, and email address you want to use.</em></li>
<li><em>You&#8217;ll then be directed to step number 2 where you will choose the language for your comments, and some optional features such as providing allowing users to log in with Twitter, Facebook, Yahoo, Open ID, and others, and the ability to share across social networks.</em></li>
<li><em>Step 3 is where you will get your install code.  Choose the option that says &#8220;Universal Code&#8221;.</em></li>
<li><em>Copy the code that is next to the &#8220;1.&#8221; (don&#8217;t worry about the code in the 2. section) and you&#8217;ll now have the code we&#8217;ll need in the next steps.</em></li>
</ol>
<p><em><strong>Signing up and getting comment code with IntenseDebate.com:</strong></em></p>
<ol>
<li><em>Go to InstenseDebate.com and hit the &#8220;Sign Up&#8221; Button.</em></li>
<li><em>Enter in a Username, Email, and Password, and choose the option &#8220;I want to install IntenseDebate on my blog or website&#8221;, and hit the sign up button.</em></li>
<li><em>You&#8217;ll then need to check your email to verify the account before you can go on.</em></li>
<li><em>Once you&#8217;ve verified you email go ahead and login.</em></li>
<li><em>Upon logging in you&#8217;ll be directed to your dashboard, you&#8217;ll see a section on the right side under &#8220;Manage Blog/Sites&#8221; a button that says &#8220;You have not installed IntenseDebate on any blogs yet. Install IntenseDebate.&#8221; click on that link.</em></li>
<li><em>You&#8217;ll then be walked through 3 steps to get the code we need to go on. Step 1 is to enter in your blog/website URL.  Do that and hit &#8220;Next Step&#8221; to continue.</em></li>
<li><em>Step 2 is to choose your platform.  You won&#8217;t find iWeb in the list there so just choose the option &#8220;Generic Install&#8221;.</em></li>
<li><em>Step 3 is where they will give you your install code. On the left side it says &#8220;JavaScript Install&#8221;, copy the code next to the &#8220;1.&#8221; and move to the next step.</em></li>
</ol>
<h4><strong>Comments using a Direct HTML Snippet:</strong></h4>
<p>2) Now take that code and paste it into an HTML Snippet on your iWeb page that you want the comments to be on and hit apply.</p>
<p>3) You&#8217;ll notice that it seems nothing has happened.  That&#8217;s because your site isn&#8217;t online yet.  Your comments actually won&#8217;t work until your site is online, so don&#8217;t worry that you don&#8217;t see your comments show up yet.  At this point you need to size your HTML snippet to accommodate the comment response box and all the comments and future comments that you are going to have.  So be sure to stretch it long enough to accommodate all the comments that you foresee your page having.</p>
<p>note: If you&#8217;re unsure about what the size of your snippet should be you can jump to the &#8220;Comments using iFrame&#8221; which will make this snippet scrollable so you won&#8217;t have to worry about the size and comments not showing.</p>
<p>4) Now publish you site to your server either using direct FTP publishing in iWeb or to a folder then to your server.</p>
<p>5) Visit your page to make sure it is working properly with the comments and give yourself a pat on the back for adding comments to your iWeb page.</p>
<p><br class="spacer_" /></p>
<h4><strong>Comments using an iFrame:</strong></h4>
<p>2)  Now open up an HTML editor such as Coda or TextEdit.  Start a new page/document and paste in this code to create a blank HTML page:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;?xml version="1.0" encoding="UTF-8"?&gt;</p>
<p>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</p>
<p>&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;</p>
<p>&lt;title&gt;Comments&lt;/title&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;!-- Add Comment Code Here --&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p>and replace where it says &lt;!&#8211; Add Comment Code here &#8211;&gt; with your own comment code you got from Disqus or Intense Debate.</p>
<p>3) Now save the document as an HTML file (something like pagecomments.html)</p>
<p>note: If your using text edit be sure you go into the textedit prefs and under the Open and Save section and check the checkbox that says &#8220;Ignore Rich Text command in HTML files&#8221;.  Then when you save your html document be sure to change the file format to &#8220;Web Page .html&#8221;.</p>
<p>4) Now put your newly created html file on your web server host using an FTP program like Transmit.  You might want to make a folder somewhere that is just for comment pages.</p>
<p>5) Now that your HTML file is online, go visit the page to make sure it is working.  Your URL to test it might be something like www.yoursite.com/comments/commentHTMLpage.html, if it is working that you can smile and continue on, it not, go back and make sure you got everything in order.</p>
<p>6) Now all we need to do is iFrame that page into iWeb.  Simply go to the iFrame tip page by clicking here, and paste the iFrame code into a snippet, but don&#8217;t hit apply quite yet.</p>
<p>7) With the iframe code in a snippet, replace the iframe URL in the code to be the URL to your comment page (i.e. www.yoursite.com/comments/commentHTMLpage.html), then hit apply.</p>
<p>8) If your using Disqus you should actually see the comments show up, if your using IntenseDebate you actually won&#8217;t see your comments until it&#8217;s online.  At this point we need to do two things.  Resize our snippet and put those dimensions in the iframe code.  So&#8230;</p>
<p>9) Adjust your HTML Snippet to be where you want it to be on the page and the dimensions you&#8217;d like it to be on your page as well.</p>
<p>note: you don&#8217;t need to worry about stretching the snippet length extra large like on the direct snippet method above because this method is going to have a scroll bar when more comments are added.  So just make the snippet a good size to see a good comment post or two.</p>
<p>10) Now that your snippet is where you like it you need to put in the snippet width and height into the iFrame code.  You would have seen the dimensions while dragging the size of the snippet, but if you didn&#8217;t see it simply click the snippet so it&#8217;s selected and go to the Metrics Inspector (the one with the ruler icon) and see what the width and height is of your HTML Snippet box and put that into the iFrame code where it says width and height, and hit apply.</p>
<p>11) Your comments should now be ready to post online.  Simply publish your site online, test to make sure it is working and looking properly, and give yourself a pat on the back for successfully implementing comments into your iWeb site.</p>
<p><br class="spacer_" /></p>
<p>That&#8217;s all there is too it.  If you having problems you can watch the video tutorial on how to do this by clicking below:</p>
<p><a class="button" href="http://iwebunlimited.com/2010/video_tutorials/comments-in-iweb/">Watch Video Tutorial »</a></p>
<p>Hope that answers all your commenting questions.  If you have further questions or if anything is unclear feel free to comment below.  If you feel that this tip has helped please consider donating to the iWebUnlimited cause by clicking <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=10756022" target="_blank">here</a>.</p>
<p>Thanks for stopping by.</p>
<p>—iJason</p>
<p><img class="alignleft size-medium wp-image-612" title="iJason" src="http://iwebunlimited.com/wp-content/uploads/2010/04/Jason-Trapped-in-Mac-transparent-300x193.png" alt="iJason" width="126" height="81" /></p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/blog-comments-in-iweb/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #22 &#8211; Google Search in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/google-search-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/google-search-in-iweb/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 08:34:22 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Google Search]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[Post Publish]]></category>

		<guid isPermaLink="false">http://iwebunlimited.com/?p=594</guid>
		<description><![CDATA[Google Search in iWeb
It&#8217;s finally here!  An easy way to get Google search on your iWeb site! Woo hoo!
So there are a few ways to get a Google Search into your iWebsite, an easy &#8220;paste code into an html snippet&#8221; way and a &#8220;more complex but sweet integrated google results&#8221; way.  So let&#8217;s start with [...]]]></description>
			<content:encoded><![CDATA[<h3><img class="alignleft size-full wp-image-595" title="Google Search in iWeb" src="http://iwebunlimited.com/wp-content/uploads/2010/04/22-google_search.png" alt="" width="150" height="150" />Google Search in iWeb</h3>
<p>It&#8217;s finally here!  An easy way to get Google search on your iWeb site! Woo hoo!</p>
<p>So there are a few ways to get a Google Search into your iWebsite, an easy &#8220;paste code into an html snippet&#8221; way and a &#8220;more complex but sweet integrated google results&#8221; way.  So let&#8217;s start with the easy one first, then we&#8217;ll move to the more complex one.  Here we go!</p>
<p><span id="more-594"></span><a class="linkmoreinner" title="Google Search in iWeb" onclick="window.open('http://iwebunlimited.com/examples/googlesearch.html','Google Search in iWeb Example','scrollbars=yes,width=830,height=735,left='+(screen.availWidth/2-415)+'');return false;" href="http://iwebunlimited.com/examples/googlesearch.html">See Demo »</a></p>
<h3>Simple Google Search Code:</h3>
<h4>Google Search Box 1:</h4>
<p><a href="http://iwebunlimited.com/examples/googlesearch.html" target="_blank"><img class="size-full wp-image-596 alignleft" title="Google Search Box 1" src="http://iwebunlimited.com/wp-content/uploads/2010/04/searchbox1.png" alt="Google Search Box 1" width="472" height="64" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>This code will put a simple Google Search box on your site that gives visitors a choice to search your website or google.  When a visitor enters a search term the search will take them to a new page with search results.  To add this to your website simply paste this code in an HTML snippet:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;!-- iWebUnlimited Google SiteSearch --&gt;</p>
<p>&lt;font face="<span style="color: #ff0000;">Verdana</span>", font size=<span style="color: #ff0000;">2</span>, font color="<span style="color: #ff0000;">000000</span>"&gt;</p>
<p>&lt;FORM method=GET action="http://www.google.com/search"&gt;</p>
<p>&lt;input type=hidden name=ie value=UTF-8&gt;</p>
<p>&lt;input type=hidden name=oe value=UTF-8&gt;</p>
<p>&lt;TABLE bgcolor="#FFFFFF"&gt;&lt;tr&gt;&lt;td&gt;</p>
<p>&lt;A HREF="http://www.google.com/"&gt;</p>
<p>&lt;IMG SRC="http://www.google.com/logos/Logo_40wht.gif"</p>
<p>border="0" ALT="Google"&gt;&lt;/A&gt;</p>
<p>&lt;/td&gt;</p>
<p>&lt;td&gt;</p>
<p>&lt;INPUT TYPE=text name=q size=<span style="color: #ff0000;">31</span> maxlength=255 value=""&gt;</p>
<p>&lt;INPUT type=submit name=btnG VALUE="<span style="color: #ff0000;">Google Search</span>"&gt;</p>
<p>&lt;font size=-1&gt;</p>
<p>&lt;input type=hidden name=domains value="<span style="color: #ff0000;">iWebUnlimited.com</span>"&gt;&lt;br&gt;</p>
<p>&lt;input type=radio name=sitesearch value=""&gt; The Web &lt;input type=radio name=sitesearch value="http://<span style="color: #ff0000;">www.iwebunlimited.com</span>" checked&gt; <span style="color: #ff0000;">iWebUnlimited.com</span> &lt;br&gt;</p>
<p>&lt;/font&gt;</p>
<p>&lt;/td&gt;&lt;/tr&gt;&lt;/TABLE&gt;</p>
<p>&lt;/FORM&gt;</p>
<p>&lt;!-- SiteSearch Google --&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p>Then simply change the code in red to modify to fit your site.  You can adjust the font, size, and color, then (most importantly) add your site&#8217;s name and URL.  Hit apply on your snippet, publish, and your set!</p>
<p><br class="spacer_" /></p>
<h4>Google Search Box 2:</h4>
<p><a href="http://iwebunlimited.com/examples/googlesearch.html" target="_blank"><img class="size-full wp-image-598 alignleft" title="Google Search Box 2" src="http://iwebunlimited.com/wp-content/uploads/2010/04/searchbox21.png" alt="Google Search Box 2" width="316" height="88" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>This box is the same as Google Search Box 1, but it only searches your site.  Simply paste this code in an HTML snippet:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;!-- iWebUnlimited Google Search --&gt;</p>
<p>&lt;form action="http://www.google.com/search" method="get"&gt;</p>
<p>&lt;A HREF="http://www.google.com/"&gt;</p>
<p>&lt;IMG SRC="http://www.google.com/logos/Logo_40wht.gif"</p>
<p>border="0" ALT="Google" align="absmiddle"&gt;&lt;/A&gt;&lt;br&gt;</p>
<p>&lt;input type="hidden" name="sitesearch" value="<span style="color: #ff0000;">http://www.iwebunlimited.com</span>" /&gt;</p>
<p>&lt;input type="text" name="q" size="<span style="color: #ff0000;">31</span>" maxlength="255" value="" /&gt;</p>
<p>&lt;input type="submit" value="<span style="color: #ff0000;">Search</span>" /&gt;</p>
<p>&lt;input type=hidden name=ie value=UTF-8&gt;</p>
<p>&lt;input type=hidden name=oe value=UTF-8&gt;</p>
<p>&lt;/FORM&gt;</p>
<p>&lt;!-- Search Google --&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p>Then just replace the text in red with your site, hit apply, and your set.</p>
<p><br class="spacer_" /></p>
<h4>Google Search Box 3:</h4>
<p><a href="http://iwebunlimited.com/examples/googlesearch.html" target="_blank"><img class="size-full wp-image-599 alignleft" title="Google Search Box 3" src="http://iwebunlimited.com/wp-content/uploads/2010/04/searchbox3.png" alt="Google Search Box 3" width="309" height="47" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>This box is the same as #3, but it has no Google branding.  Just add this code:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;!-- iWebUnlimited Google Search --&gt;</p>
<p>&lt;form action="http://www.google.com/search" method="get"&gt;</p>
<p>&lt;input type="hidden" name="sitesearch" value="http://<span style="color: #ff0000;">www.iwebunlimited.com</span>" /&gt;</p>
<p>&lt;input type="text" name="q" size="<span style="color: #ff0000;">31</span>" maxlength="255" value="" /&gt;</p>
<p>&lt;input type="submit" value="<span style="color: #ff0000;">Search</span>" /&gt;</p>
<p>&lt;/form&gt;</p>
</blockquote>
<p><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Again replace the code in red, hit apply, publish, and done!</span></p>
<p></code></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<h4>Google Search Box 4:</h4>
<p><a href="http://iwebunlimited.com/examples/googlesearch.html" target="_blank"><img class="size-full wp-image-600 alignleft" title="Google Search Box 4" src="http://iwebunlimited.com/wp-content/uploads/2010/04/searchbox4.png" alt="Google Search Box 4" width="319" height="93" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>This one is just a simple &#8220;search the web&#8221; Google search.  For those that simple want the convenience of search the web through their own website.  Just paste this code below:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;!-- iWebUnlimited Google Search --&gt;</p>
<p>&lt;FORM method=GET action="http://www.google.com/search"&gt;</p>
<p>&lt;input type=hidden name=ie value=UTF-8&gt;</p>
<p>&lt;input type=hidden name=oe value=UTF-8&gt;</p>
<p>&lt;TABLE bgcolor="#FFFFFF"&gt;&lt;tr&gt;&lt;td&gt;</p>
<p>&lt;A HREF="http://www.google.com/"&gt;</p>
<p>&lt;IMG SRC="http://www.google.com/logos/Logo_40wht.gif"</p>
<p>border="0" ALT="Google" align="absmiddle"&gt;&lt;/A&gt;&lt;br&gt;</p>
<p>&lt;INPUT TYPE=text name=q size=25 maxlength=255 value=""&gt;</p>
<p>&lt;INPUT type=submit name=btnG VALUE="Google Search"&gt;</p>
<p>&lt;/td&gt;&lt;/tr&gt;&lt;/TABLE&gt;</p>
<p>&lt;/FORM&gt;</p>
<p>&lt;!-- Search Google --&gt;</p>
</blockquote>
<p></code></p>
<p>And that&#8217;s it, have fun!</p>
<p><br class="spacer_" /></p>
<h2>Advanced Google Search in iWeb:</h2>
<p><a href="http://iwebunlimited.com/examples/googlesearch.html" target="_blank"><img class="size-medium wp-image-601 alignleft" title="Search Results" src="http://iwebunlimited.com/wp-content/uploads/2010/04/searchresults-300x231.png" alt="Search Results" width="300" height="231" /></a></p>
<p>Alright, let&#8217;s now dig a bit deeper.  This tip here will give you a google search box that when a user searches, they remain on your site and your results will show up on your site as well. WooHoo!  It gives users a much better user experience.  So here we go:</p>
<p>1) The first thing you need to do is to log in or create a Google Adsense account.  Do so by going to <a title="Google Adsense" href="https://www.google.com/adsense/" target="_blank">https://www.google.com/adsense/</a></p>
<p>2) After your logged in go to the &#8220;Adsense Setup&#8221; tab and click the &#8220;Adsense for Search&#8221;</p>
<p>3) You&#8217;ll be guided through a series of questions to setup your search for your site of which are:</p>
<ul>
<li>Search Type: Choose &#8220;Only Sites I Select&#8221;</li>
<li>Selected Sites: Enter your website (the full site, http://yoursite.com, or http://web.me.com/mobilemeusername</li>
<li>Optional Keywords: Enter keywords that have to do with your site.  Here&#8217;s a <a href="https://www.google.com/adsense/support/bin/answer.py?answer=91654&amp;sourceid=aso&amp;subid=ww-ww-et-asui&amp;medium=link" target="_blank">link</a> with examples.</li>
<li>More Options: Site Language: Of course choose your language.</li>
<li>Your site encoding: I recommend leaving it at it&#8217;s default.</li>
<li>Country of Territory: Choose your country.</li>
<li>Custom Channel: If you&#8217;ve made previous ad channels you can set this up in relation to one of those, but if not no worries, just keep the checkbox that says &#8220;Automatically create new channel&#8221;</li>
<li>Safe Search: I recommend leaving it on.  Keeps inappropriate items out of your visitors search.</li>
</ul>
<p>Then hit continue.</p>
<p>4) You then can choose the style of the search box you wish to have on your site.  So just click the radio button that looks most like it would fit in with your site.  You can also choose how many characters you want your search box to be.  Feel free to modify to best fit your site.</p>
<p>Then hit continue.</p>
<p>5) The next page asks where the search results will be.  Choose the option that says &#8220;Open results within my own site&#8221;, then specify the URL that the results will be at (this will be a page that we will create later.  I suggest putting in http://yoursite.com/results.html or http://web.me.com/mobilemeusername/sitename/results.html, we can always change this later if you need to as well).  It also asks you to put in the size of the results in width.  The smallest it can be is 795, so we&#8217;ll have to be sure we&#8217;ll make room for this on our site later on.  I recommend just keeping it the default 800px wide.</p>
<p>You then will choose where you would like the ads placed (Don&#8217;t worry you&#8217;ll get cash for people clicking on the ads that are on your site).  I suggest choosing &#8220;right only&#8221;, unless you want to persuade people to click the ads, in that case choose &#8220;top and right&#8221;.</p>
<p>The last option on this page is the modification of the colors.  It&#8217;s a pretty neat feature here where you can change the colors of the search results so it will match your website.  So do that here.  They have some presets if you&#8217;d like to play with those, or you can just change the colors individually.</p>
<p>Then hit continue.</p>
<p>6) The next page simply has you name your new search engine we&#8217;ve just setup.  Give a name (doesn&#8217;t really matter what you name it) , read the additional terms (if you want), click the checkbox that you agree, and hit the &#8220;Submit and Get Code&#8221; Button.</p>
<p>7) Alright we have arrived! WooHoo! You now have two boxes with code.  Copy and paste those bits of code somewhere where you can access it.  I personally like to use Evernote (it&#8217;s free and syncs with everything), but you could save it in a document (pages, word, google docs, text edit), Apple Mail Notes, etc.  Doesn&#8217;t matter where you save it, just save it so you can access it later.</p>
<p>So the first box is the search box and second box is the results code.  So the first thing we are going to do is copy and paste the search box code into an HTML Snippet in iWeb.  This can be anywhere and on as many pages as we&#8217;d like.  If you want to have a search box on everypage, go for it.  Just get that search box on your iWebsite somewhere.</p>
<p>8) Alright now that we have a search box on our website, we now need to make the <strong>results page</strong>.  Sooooo, to do this we are going to create a new page on our site.  So go ahead and hit the &#8220;Add Page&#8221; button in iWeb in the bottom left or click file &gt; New Page, or you can duplicate an existing page by selecting it and pressing &#8220;command + d&#8221;.  Name this page &#8220;results&#8221; in the sidebar.  This will end up being the http://yoursite.com/results.html page the we specified back in step #5.  Now design the page how you would like it to look leaving the main content area empty using your imagination that our results will be in the middle.</p>
<p>9) Now that you&#8217;ve created and designed the page add a text box onto the page and type in the text box this &#8220;%%GOOGLE SEARCH RESULTS%%&#8221; (without the quotes).  Then stretch the text box to be the size that you would like your results to be.  It has to be at least 800px wide (remember when we specified that in step #5) and you&#8217;ll want to make it about 875 pixel&#8217;s in height too. So adjust your design layout accordingly to this textbox size.</p>
<p>10) OK now, publish your website, either to a folder, your server, or mobileme.</p>
<p>11) Now before this can work, we need to go in and replace that crazy text I had you enter %%GOOGLE SEARCH RESULTS%% with our code.  So to do that we need to open up that results.html page we created with an html editor.  Again I like to use Coda or Espresso, but you can use TextEdit (if you go into the prefs and turn on the &#8220;Ignore Rich Text Commands in HTML&#8221; check box).  Do a find and replace option by pressing &#8220;command + f&#8221; search for our crazy text &#8220;%%GOOGLE SEARCH RESULTS%% and replace it with our results code.</p>
<p>Then hit save and put your files live online to test.</p>
<p>12) TaDah! Your finished.  Go visit your site and test it out to make sure it is working properly.</p>
<h3>Troubleshooting:</h3>
<p>Your page has to be online for it to work (you can&#8217;t test it locally because when you type something in the search box the results will only show up at http://yoursite.com/results.html, if your search is not working for any reason it could be that your results.html file is not in the right spot.  Also if your site is brand new to the web it might take some time for your results to show up because google hasn&#8217;t cached your site yet.  You can try to speed up this caching process by submitting your site into Google by going to <a href="http://www.google.com/addurl/?continue=/addurl" target="_blank">http://www.google.com/addurl/?continue=/addurl</a></p>
<p>If you need to change where the results page is you change that URL in the google search box code.</p>
<p>I already know I&#8217;m going to get this question: Do I have to do this everytime I publish. The answer to that is yes and no.  Anything that we have to modify outside of iWeb (i.e. the results code), then yes we have to do each time.  So what I recommend for this tip is to have your results page in another site (file &gt; new site), get your code setup, and published, then the main site you can update all you want and it won&#8217;t effect the results code page cause you won&#8217;t be needing to really update that page…really ever.  So just get that page online, then you can put the search box on as many pages as you want.</p>
<p>Any other questions feel free to leave in the comments below.</p>
<p><br class="spacer_" /></p>
<p>I&#8217;ve had a lot of requests for this in the forum, so hopefully this takes care of all your iWeb site searching needs.  I&#8217;ll probably make a video tutorial on how to do this in the near future for those that want to do the advanced search tip, but are a little overwhelmed or stuck.  So stay tuned for that.</p>
<p>If this tip helped you, consider donating to the iWebUnlimited cause by clicking <a href="http://iwebunlimited.com/2010/iweb-tips/iweb-tiphttps://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=10756022" target="_blank">here</a>.  Thanks.</p>
<p><img class="size-medium wp-image-612 alignleft" title="iJason" src="http://iwebunlimited.com/wp-content/uploads/2010/04/Jason-Trapped-in-Mac-transparent-300x193.png" alt="iJason" width="180" height="116" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>—iJason</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/google-search-in-iweb/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #21 &#8211; Scrolling Text in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/scrolling-text-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/scrolling-text-in-iweb/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 00:33:57 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[Scrolling Text]]></category>

		<guid isPermaLink="false">http://iwebunlimited.com/?p=387</guid>
		<description><![CDATA[Scrolling Text in iWeb
There are times when your web design gives you little space for a lot of text.  That&#8217;s where this tip comes in handy.  This little bit of html in a snippet will allow you to size your snippet to really whatever size you want and the text will be scrollable  inside.  I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://iwebunlimited.com/wp-content/uploads/2010/02/21-scrolling_text.png"><img class="alignleft size-full wp-image-388" title="21-scrolling_text" src="http://iwebunlimited.com/wp-content/uploads/2010/02/21-scrolling_text.png" alt="Scrolling Text in iWeb" width="150" height="150" /></a>Scrolling Text in iWeb</h3>
<p>There are times when your web design gives you little space for a lot of text.  That&#8217;s where this tip comes in handy.  This little bit of html in a snippet will allow you to size your snippet to really whatever size you want and the text will be scrollable  inside.  I&#8217;ve even added a bit more advanced code at the end that will allow you to add an image, a link, and more.  The user just uses a handy inline scrollbar to read your text and works very nice.  The other option on this page is to have a auto-scrolling text box.  I have one to scroll horizontally and another to scroll vertically.  They have a lot of options to adjust the speed, direction, font, color, etc.  So let&#8217;s get started.</p>
<p><a class="linkmoreinner" onclick="window.open('http://www.iwebunlimited.com/examples/scrolling_text.html','Scrolling Text in iWeb','width=810,height=680,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-340)+'');return false;" rel="lightbox" href="http://www.iwebunlimited.com/examples/scrolling_text.html">See Demo »</a></p>
<p>1) Add an HTML Snippet to the page you want your scrollable text box to be.</p>
<p>2) Then paste this code into your HTML Snippet:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote>
<div id="_mcePaste">&lt;div style="height:<span style="color: #ff0000;">425</span>px;width:<span style="color: #ff0000;">300</span>px;color:#<span style="color: #ff0000;">000000</span>;font:<span style="color: #ff0000;">13</span>px/16px <span style="color: #ff0000;">Verdana</span>;overflow:auto;"&gt;</div>
<div id="_mcePaste">&lt;font color="<span style="color: #ff0000;">004080</span>"&gt;&lt;strong&gt;<span style="color: #0000ff;">This is my title</span>&lt;/strong&gt;&lt;br&gt;&lt;/font&gt;</div>
<div id="_mcePaste"><span style="color: #0000ff;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim. Suspendisse id velit vitae ligula volutpat condimentum. Aliquam erat volutpat. Sed quis velit. Nulla facilisi. Nulla libero. Vivamus pharetra posuere sapien. Nam consectetuer.</span></div>
<div id="_mcePaste">&lt;br&gt;&lt;br&gt;</div>
<div id="_mcePaste">&lt;font color="<span style="color: #ff0000;">004080</span>"&gt;&lt;strong&gt;<span style="color: #0000ff;">Another title</span>&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;</div>
<div id="_mcePaste"><span style="color: #0000ff;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim. Suspendisse id velit vitae ligula volutpat condimentum. Aliquam erat volutpat. Sed quis velit. Nulla facilisi. Nulla libero. Vivamus pharetra posuere sapien. Nam consectetuer.</span></div>
<div id="_mcePaste">&lt;br&gt;&lt;br&gt;</div>
<div id="_mcePaste"><span style="color: #0000ff;">These tags below add breaks from one paragraph to the next</span></div>
<div id="_mcePaste">&lt;br&gt;&lt;br&gt;</div>
<div id="_mcePaste">&lt;font color="<span style="color: #ff0000;">004080</span>"&gt;&lt;strong&gt;<span style="color: #0000ff;">This is another title</span>&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;</div>
<div id="_mcePaste"><span style="color: #0000ff;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim. Suspendisse id velit vitae ligula volutpat condimentum. Aliquam erat volutpat. Sed quis velit. Nulla facilisi. Nulla libero. Vivamus pharetra posuere sapien. Nam consectetuer.</span></div>
<div id="_mcePaste">&lt;br&gt;&lt;br&gt;</div>
<div id="_mcePaste">&lt;font color="<span style="color: #ff0000;">004080</span>"&gt;&lt;strong&gt;<span style="color: #0000ff;">This is another title</span>&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;</div>
<div id="_mcePaste"><span style="color: #0000ff;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim. Suspendisse id velit vitae ligula volutpat condimentum. Aliquam erat volutpat. Sed quis velit. Nulla facilisi. Nulla libero. Vivamus pharetra posuere sapien. Nam consectetuer.</span></div>
<div id="_mcePaste">&lt;br&gt;&lt;br&gt;</div>
<div id="_mcePaste"><span style="color: #0000ff;">You could even add an image to it if you add this code:</span></div>
<div id="_mcePaste">&lt;br&gt;</div>
<div id="_mcePaste">&lt;img src="<span style="color: #ff0000;">http://www.iwebunlimited.com/images/iweb.png</span>" alt=“<span style="color: #ff0000;">iWebUnlimited</span>” /&gt;</div>
<div id="_mcePaste">&lt;br&gt;&lt;br&gt;</div>
<div id="_mcePaste"><span style="color: #0000ff;">If you want the image to be on the left and the text on the side use this code:</span></div>
<div id="_mcePaste">&lt;div style="height: 0px; left: 0px; position: relative; top: 0px; z-index: 0; "&gt;</div>
<div id="_mcePaste">&lt;a href="<span style="color: #ff0000;">http://www.iwebunlimited.com</span>" target="<span style="color: #ff0000;">_blank</span>"&gt;&lt;img src="<span style="color: #ff0000;">http://www.iwebunlimited.com/images/iweb.png</span>" alt="<span style="color: #ff0000;">Image Title</span>" style="border: none; " /&gt;&lt;/a&gt;</div>
<div id="_mcePaste">&lt;/div&gt;</div>
<div id="_mcePaste">&lt;div style="left: <span style="color: #ff0000;">65</span>px; position: relative; top: 2px; width: <span style="color: #ff0000;">200</span>px; z-index: 1; "&gt;</div>
<div id="_mcePaste"><span style="color: #0000ff;">This is my text that is along side an image in a scrolling textbox in iWeb.  Pretty cool huh.  Pat yourself on the back and call yourself an html coder.  You can even make a link in here if you do this: </span>&lt;a href="<span style="color: #ff0000;">http://www.twitter.com/iwebunlimited</span>" target="<span style="color: #ff0000;">_blank</span>"&gt;<span style="color: #0000ff;">Here's my link</span>&lt;/a&gt;</div>
<div id="_mcePaste">&lt;/div&gt;</div>
<div id="_mcePaste">&lt;br&gt;</div>
<div id="_mcePaste">&lt;br&gt;</div>
<div id="_mcePaste"><span style="color: #0000ff;">That's all folks</span></div>
<div id="_mcePaste">&lt;/div&gt;</div>
</blockquote>
<p></code></p>
<p>3) The code in red is where you&#8217;ll make adjustments to your own code for your own design specifications and the text in blue is the paragraph text you&#8217;ll put in.</p>
<p>4) After making your changes hit apply, publish, and your set! ;-)</p>
<p><br class="spacer_" /></p>
<h3>Auto-Scrolling Text Boxes:</h3>
<p>If you want an auto-scrolling text box then use this code below:</p>
<p><strong>Horizontal Scrolling:</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong></p>
<blockquote><p><code><span style="font-weight: normal;">&lt;div align="center"&gt;<br />
 &lt;font color="<span style="color: #ff0000;">000000</span>" size="<span style="color: #ff0000;">4</span>" face="<span style="color: #ff0000;">Verdana</span>"&gt;&lt;marquee bgcolor="transparent" direction="<span style="color: #ff0000;">left</span>" loop="<span style="color: #ff0000;">true</span>" width=<span style="color: #ff0000;">100</span>%"&gt;&lt;strong&gt;<span style="color: #0000ff;">I Love iWebUnlimited.com's tips!</span>&lt;/strong&gt;&lt;/marquee&gt;&lt;/font&gt;&lt;/div&gt;</span></code></p>
</blockquote>
<p></strong></p>
<p><br class="spacer_" /></p>
<p><strong>Vertical Scrolling:</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong></p>
<blockquote><p><code><span style="font-weight: normal;">&lt;div align="center"&gt; &lt;marquee bgcolor="transparent" scrollamount="<span style="color: #ff0000;">3</span>" direction="<span style="color: #ff0000;">up</span>" loop="<span style="color: #ff0000;">true</span>" width="<span style="color: #ff0000;">100</span>%"&gt; &lt;center&gt; &lt;font color="#<span style="color: #ff0000;">000000</span>" size="<span style="color: #ff0000;">4</span>" face="<span style="color: #ff0000;">Verdana</span>"&gt;&lt;strong&gt;<span style="color: #0000ff;">My Scrolling Text Title</span>&lt;/strong&gt;&lt;br&gt;<span style="color: #0000ff;">I love iWebUnlimited.com's tips and Tricks.</span>&lt;br&gt;&lt;br&gt;<span style="color: #0000ff;">This below is just some jabber text to show you what it would look like if there was a lot of text here.  Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim. Suspendisse id velit vitae ligula volutpat condimentum. Aliquam erat volutpat. Sed quis velit. Nulla facilisi. Nulla libero. Vivamus pharetra posuere sapien. Nam consectetuer.</span>&lt;br&gt;&lt;strong&gt;<span style="color: #0000ff;">iWebUnlimited.com</span>&lt;/strong&gt;&lt;/font&gt; &lt;/center&gt; &lt;/marquee&gt;&lt;/div&gt;</span></code></p>
</blockquote>
<p></strong></p>
<p>That&#8217;s it, hope that helps.  If iWebUnlimited.com helped you please consider donating by hit the donate button on the sidebar.  Thanks for visiting iWebUnlimited.com.</p>
<p>—iJason</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/scrolling-text-in-iweb/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #20 &#8211; Redirect Pages in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-20-redirect-pages-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-20-redirect-pages-in-iweb/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 22:44:48 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[HTML Snippets]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[Redirect Pages]]></category>

		<guid isPermaLink="false">http://iwebunlimited.com/?p=380</guid>
		<description><![CDATA[Redirect pages in iWeb
This tip shows you how to redirect a page to another page.  There are many instances where you might find you&#8217;ll need to redirect one page to another and this tip will show you how.  One example might be if you are using iWeb built in auto navigation and you want one [...]]]></description>
			<content:encoded><![CDATA[<h3><img class="alignleft size-full wp-image-381" style="margin-left: 5px; margin-right: 5px;" title="20-redirect_pages" src="http://iwebunlimited.com/wp-content/uploads/2010/02/20-redirect_pages.png" alt="Redirect Pages in iWeb" width="150" height="150" />Redirect pages in iWeb</h3>
<p>This tip shows you how to redirect a page to another page.  There are many instances where you might find you&#8217;ll need to redirect one page to another and this tip will show you how.  One example might be if you are using iWeb built in auto navigation and you want one of the links to actually go to an external page.  Another example may be that you&#8217;ve posted a page and many people are linking to that page from other sites, so you need to keep the same page up to keep the link, but you actually want to redirect them to another page.</p>
<p><br class="spacer_" /></p>
<p>So here is how to redirect your page to another page:</p>
<p>1) Go to the page that is going to be the redirect page.<br />
 2) Add an HTML Snippet onto your page and paste this code:</p>
<blockquote><p><code>&lt;script type="text/javascript"&gt;<br />
 parent.location.replace('<span style="color: #ff0000;">http://yoursite.com/yourpage.html</span>');<br />
 &lt;/script&gt;</code></p>
</blockquote>
<p>3) Then simply change the URL in the code to the page you want the page to be redirected to.<br />
 4) Then hit apply and your set.  You&#8217;ll find that once you publish your site and visit that page it will automatically redirect to the page you specified in the code.</p>
<p>Sometimes you want to redirect to another page after some time.  For example if you are redirect a user to another site you could send them to one of your pages that says something like &#8220;You are now being redirect to AnotherSite.com&#8221; then after 3 seconds or so it automatically directs them to the page.  To do that do the same steps as above, but simply paste this code below in an HTML snippet.</p>
<blockquote><p><code>&lt;script type="text/javascript"&gt;<br />
 var url ='<span style="color: #ff0000;">http://yoursite.com/yourpage.html</span>';<br />
 var delay = <span style="color: #ff0000;">3</span>;<br />
 var d = delay * 1000;window.setTimeout('parent.location.replace(url)', d);<br />
 &lt;/script&gt;</code></p>
</blockquote>
<p>Then specify the URL and how long you want the redirect to delay and you&#8217;re set.</p>
<p>Hope that helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-20-redirect-pages-in-iweb/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #19 &#8211; Shadowbox in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/shadowbox-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/shadowbox-in-iweb/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 07:47:55 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Image Pop Up]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Model Box]]></category>
		<category><![CDATA[Post Publish]]></category>
		<category><![CDATA[Shadowbox]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=157</guid>
		<description><![CDATA[So I know that I have done 3 other tips similar to this one (Fancyzoom, Highslide, and Lytebox) and I thought I was done posting tips about the fanzy popup realm, but when I found this effect I just had to post it.  This in my opinion in the mother of all popup effects.  Why? [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/08/19-shadowbox_in_iweb.png"><img class="alignleft size-full wp-image-198" style="margin: 5px;" title="19-shadowbox_in_iweb" src="http://iwebunlimited.com/wp-content/uploads/2009/08/19-shadowbox_in_iweb.png" alt="Shadowbox in iWeb" width="150" height="150" /></a>So I know that I have done 3 other tips similar to this one (Fancyzoom, Highslide, and Lytebox) and I thought I was done posting tips about the fanzy popup realm, but when I found this effect I just had to post it.  This in my opinion in the mother of all popup effects.  Why? Because it supports so many formats natively to it.  You can do, of course image, but it can also do swf’s, html, flv’s, YouTube, mov (Quicktime), even wmv (windows media), and more.  It’s fantastic and works pretty much just like the other effects.  So if you have done my other fancy popup tutorials than you will kindof already understand how this one works.  But here goes the tutorial on how to do it.</p>
<p><span id="more-157"></span></p>
<blockquote><p><strong><a title="Shadowbox Download" onclick="window.open('http://www.iwebunlimited.com/examples/shadowbox_iweb_example.html','Shadowbox in iWeb Example','scrollbars=yes,width=810,height=740,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-370)+'');return false;" href="http://www.iwebunlimited.com/examples/shadowbox_iweb_example.html" target="_blank">View Demo of Shadowbox in iWeb »</a></strong></p>
</blockquote>
<p><strong>Step 1)</strong> Make a page in iWeb and add links to your media in one of the following ways:</p>
<ul>
<blockquote>
<li><strong>Images:</strong> Drop an image on your page and enable as a hyperlink from the hyperlink inspector and link to “a file” and choose the same image (preferably a higher res version of the photo, at least 800 x 600).</li>
<li><strong>SWF’s (Flash Files):</strong> Drop an image to represent the swf (could be an image, a shape, text, you could even launch your swf and do a screen capture (command + shift + 4) and drag over it to get an image to add in.)  Basically just get something that will be clickable that we can link to the swf.  After adding that image or whatever enable it as a hyperlink and link to the swf file itself.</li>
<li><strong>HTML:</strong> Simply enable as a hyperlink your image, shape, text to an external page.</li>
<li><strong>FLVs (Flash Video):</strong> Same as the swf, get/make a graphical representation of the video (an image, shape, or text) and enable it as a hyperlink and link to “A File” and choose the .flv file.</li>
<li><strong>QuickTime:</strong> Same as the FLV and SWF.  Get/make a graphical representation of the video (an image, shape, or text) and enable it as a hyperlink and link to “A File” and choose the .mov file.</li>
<li><strong>WMV (Windows Media Video):</strong> Same as the FLV,SWF, and MOV.  Get/make a graphical representation of the video (an image, shape, or text) and enable it as a hyperlink and link to “A File” and choose the .wmv file.</li>
<li><strong>YouTube:</strong> Get/make a graphical representation of the video (an image, shape, or text) and enable it as a hyperlink and link to an external page.  Copy the you tube URL from you tube and paste it in URL field in iWeb hyper link inspector.  Then here your going to do one more step.  You need to alter the URL just slightly.  Your YouTube video code will look like something like this: http://www.youtube.com/watch?v=qKiIm5EcQ7A you need to alter it so it looks like this: http://www.youtube.com/v/qKiIm5EcQ7A, basically you delete the “watch?”, put a slash after the v, and get rid of the “=” sign. If you don’t do this your YouTube video for this effect won’t work.  So this is an important step for you YouTube users.</li>
<li>This effect works with many other video services like <strong>Vimeo, Google Video, Yahoo Video, etc</strong>.  For those sites you don’t need to alter the code like the YouTube, simply make a graphical representation for them and link them to an external page with the URL of the video in it.</li>
</blockquote>
</ul>
<p><strong>Step 2)</strong> Publish your iWeb file to a folder, MobileMe, or FTP</p>
<p><strong>Step 3)</strong> Download the Shadowbox .zip file by clicking the download link at the top of this page or click <a title="Shadowbox in iWeb Download" href="http://www.iwebunlimited.com/downloads/shadowbox.zip">here »</a>.</p>
<p><strong>Step 4)</strong> Unzip the shadowbox.zip file (if your mac didn’t unzip it for you), and drop the folder called “shadowbox” into your site folder.  Not your page folder, your site folder.  You want the shadowbox folder to be right next to your html page.</p>
<p><strong>Step 5)</strong> Open your html page (the one with your hyperlinks of course) with an HTML editor.  I prefer to use Coda, but again you could use an array of other ones out there (Espresso, TextWrangler, Even TextEdit)(if you use text edit be sure to check the checkbox in the textedit prefs that says ignore rich text commands in html files).</p>
<p><strong>Step 6)</strong> Add this code before the &lt;/head&gt; tag of your HTML page:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;!-- Start of Shadowbox Code --&gt;</p>
<p>&lt;link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css"&gt;</p>
<p>&lt;script type="text/javascript" src="shadowbox/shadowbox.js"&gt;&lt;/script&gt;</p>
<p>&lt;script type="text/javascript"&gt;</p>
<p>Shadowbox.init({</p>
<p>players:    [<span style="color: #ff0000;">'img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv'</span>]</p>
<p>});</p>
<p>&lt;/script&gt;</p>
<p>&lt;!-- End of Shadowbox Code --&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p>OR you could also just do a find and replace by finding:</p>
<blockquote><p><code>&lt;/head&gt;</code></p>
</blockquote>
<p>and replace with</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;!-- Start of Shadowbox Code --&gt;</p>
<p>&lt;link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css"&gt;</p>
<p>&lt;script type="text/javascript" src="shadowbox/shadowbox.js"&gt;&lt;/script&gt;</p>
<p>&lt;script type="text/javascript"&gt;</p>
<p>Shadowbox.init({</p>
<p>players:    [<span style="color: #ff0000;">'img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv'</span>]</p>
<p>});</p>
<p>&lt;/script&gt;</p>
<p>&lt;!-- End of Shadowbox Code --&gt;</p>
<p>&lt;/head&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p>Where it says players, go ahead and delete any/all the players that you don’t need.  So for example if your not linking to an swf flash file, delete the ‘swf’, code.</p>
<p><strong>Step 7)</strong> Find your hyperlinks that we created in iWeb in the html code here and add a</p>
<blockquote><p><code>rel="shadowbox"</code></p>
</blockquote>
<p>to your <strong>image links</strong> so it looks like this</p>
<blockquote><p><code>&lt;a href="myimage.jpg" <span style="color: #ff0000;">rel="shadowbox"</span> title=“Whatup”&gt;My Image&lt;/a&gt;</code></p>
</blockquote>
<p>An easy way to find your links is to do a search for “title”, then you can spot the link code and put the rel=”shadowbox” right before the title tag.</p>
<p>For your <strong>video links</strong> you need to add a width and height dimension to it, so for all flv, swf, mov, wmv, html, and youtube like links you’ll need to add this code instead:</p>
<blockquote><p><code>rel="shadowbox;width=<span style="color: #ff0000;">640</span>;height=<span style="color: #ff0000;">480</span>"</code></p>
</blockquote>
<p>Just adjust the dimension to match your swf, webpage, or video. Here’s an example for a quicktime video.</p>
<blockquote><p><code>&lt;a href="mymovie.mov" <span style="color: #ff0000;">rel="shadowbox;width=480;height=640"</span> title=”My Movie”&gt;My Movie&lt;/a&gt;</code></p>
</blockquote>
<p>You can also <strong>group items</strong> to together in a slideshow like way by adding a grouping text to all the shadowbox code you add to the links.  Here’s what it would look like:</p>
<blockquote><p><code>rel="shadowbox[Group]"</code></p>
</blockquote>
<p>Just be sure to add that [Group] to all the links you want to be connected.  You can have 2 or more seperate groupings by just making a different text group like [Group2], and add it to the other ones you want to group.</p>
<p>For <strong>YouTube videos</strong> you have to use this code:</p>
<blockquote><p><code></code><code>rel="shadowbox;width=425;height=344;player=swf"</code></p>
</blockquote>
<p>Same princible goes with adjusting the width and height for your YouTube video.  So your YouTube link would look something like this:</p>
<blockquote><p><code></code><code>&lt;a href="http://www.youtube.com/v/qKiIm5EcQ7A" rel="shadowbox;width=425;height=344;player=swf" title="YouTube Video"&gt;&lt;img src="my_webpage_files/flash_in_iweb-youtube.jpg"</code></p>
</blockquote>
<p><strong>Step 8 )</strong> While your in adjusting your links adding rel=”shadowbox” code, you should probably <strong>change your “title”</strong> code to say something more relevant than just the path to your file.  So where you see the title=”<span style="color: #ff0000;">big_long_link_files/this_is_not_a_good_title.html</span>”, change it to say something else like title=”<span style="color: #ff0000;">Check out my cool photo</span>” or whatever.</p>
<p><strong>Step 9)</strong> Hit Save and your done! Yay!  Make sure all your files are online, test it out to make sure it’s working properly and your set.</p>
<p>There are many other options that you can add for advanced users that I won’t go into here, but you can check them out by going to <a title="http://www.shadowbox-js.com/options.html" href="http://www.shadowbox-js.com/options.html" target="_blank">http://www.shadowbox-js.com/options.html</a>.</p>
<p><strong>Note:</strong> Shadowbox can be used for free for non-commercial websites.  If you are going to use it for commerical purposes you must purchase a license.  You can do that by visiting their website at <a title="http://www.shadowbox-js.com" href="http://www.shadowbox-js.com/">www.shadowbox-js.com</a>.  Also included with the iWeb version of shadowbox that I have made is a JW FLV Player.  It also can be used for free for non-commercial websites.  If you use the JW FLV Player to play flv files for commercial purposes you must purchase a license.  You can do that by visiting <a title="https://www.longtailvideo.com/players/order2" href="https://www.longtailvideo.com/players/order2">https://www.longtailvideo.com/players/order2</a>.</p>
<p><strong>**Also note that this effect cannot be used with links using a shape or text box. Link only a true graphic (jpg, png, gif, etc) or link the text itself.</strong></p>
<p>I know it can get a bit complex getting into the code, especially if you’ve never really dealt with html code much before.  But just take it slow and go step by step and you’ll get it.  If you mess up, just go back to iWeb and republish and you can start over.   I think this is the best of the popup effects cause it deals with all media formats so easily.  So I hope you enjoyed the tip and if you feel like this helped you in some way consider donating to the iWeb cause.  The more donations I get the more time I’ll put into making more tips like this.</p>
<p>Thanks for visiting iWebUnlimited.com</p>
<p>—iJason</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/shadowbox-in-iweb/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #18 &#8211; Facebook and Twitter</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-18-facebook-and-twitter-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-18-facebook-and-twitter-in-iweb/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 00:23:50 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=155</guid>
		<description><![CDATA[

So you have an iWebsite, you have a FaceBook account, and you have a Twitter account.  You want people to visit your website, but you also want them to visit your facebook, but you also want them to follow your tweets.  What is the solution?  Well, bring them all into iWeb of course (big cheesy [...]]]></description>
			<content:encoded><![CDATA[<p><br class="spacer_" /></p>
<div id="attachment_305" class="wp-caption alignleft" style="width: 322px"><a href="http://iwebunlimited.com/wp-content/uploads/2009/08/facebook_twitter.jpg"><img class="size-full wp-image-305" style="margin-left: 5px; margin-right: 5px;" title="facebook_twitter" src="http://iwebunlimited.com/wp-content/uploads/2009/08/facebook_twitter.jpg" alt="" width="312" height="131" /></a><p class="wp-caption-text">Facebook and Twitter in iWeb</p></div>
<p><br class="spacer_" /></p>
<p>So you have an iWebsite, you have a FaceBook account, and you have a Twitter account.  You want people to visit your website, but you also want them to visit your facebook, but you also want them to follow your tweets.  What is the solution?  Well, bring them all into iWeb of course (big cheesy grin here).</p>
<p>Adding these to your website is quite simple.  It’s simply a matter of getting code from facebook and/or twitter (that they provide) and putting them in an HTML snippet.  Here’s how:</p>
<p><span id="more-155"></span></p>
<blockquote><p><strong><a onclick="window.open('http://www.iwebunlimited.com/examples/facebook.html','Facebook in iWeb Example','scrollbars=yes,width=810,height=740,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-370)+'');return false;" href="http://www.iwebunlimited.com/examples/facebook.html" target="_blank">View Facebook Demo »</a></strong></p>
</blockquote>
<blockquote><p><strong><a onclick="window.open('http://www.iwebunlimited.com/examples/twitter.html','Twitter in iWeb Example','width=810,height=740,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-370)+'');return false;" href="http://www.iwebunlimited.com/examples/twitter.html" target="_blank">View Twitter in iWeb Demo »</a></strong></p>
</blockquote>
<h2><span style="font-size: small;"><span style="font-weight: normal;"><a href="http://iwebunlimited.com/wp-content/uploads/2009/08/FaceBook_24x24.png"><img class="alignleft size-full wp-image-297" style="margin-left: 5px; margin-right: 5px; margin-top: 0px; margin-bottom: 0px;" title="FaceBook_24x24" src="http://iwebunlimited.com/wp-content/uploads/2009/08/FaceBook_24x24.png" alt="" width="24" height="24" /></a></span></span>Adding Facebook to iWeb</h2>
<p>First off there are a few different ways to get Facebook on iWeb.  Either put a Badge (a customizable way to share your Facebook information), Fan Box (a social widget that allows Facebook Page owners to attract and gain Facebook fans) or a Live Stream Box (which allows others to connect to their facebook account on your webpage and update their status about something on your site on their facebook within your site).</p>
<h4><span style="font-weight: normal;">Facebook Badge:</span></h4>
<p><strong> <span style="font-weight: normal;"><a href="http://iwebunlimited.com/wp-content/uploads/2009/08/facebook_badge.jpg"><img class="alignleft size-full wp-image-298" style="margin-left: 5px; margin-right: 5px;" title="facebook_badge" src="http://iwebunlimited.com/wp-content/uploads/2009/08/facebook_badge.jpg" alt="Facebook Badge in iWeb" width="122" height="100" /></a>Simply go to <a title="http://www.facebook.com/badges.php" href="http://www.facebook.com/badges.php">www.facebook.com/badges.php</a>, it will then ask you to log in (if you don’t have an account, where have you been, <a title="http://www.facebook.com" href="http://www.facebook.com/">get one here</a>). Then you will see a button that says “Create a New Badge”.   You will then see many options to customize your badge between two categories, Layout and Items.  All these option depend on your preference for your site.  As far as orrientation you can choose if you want a vertical, horizontal, or 2-columns badge.  Then you can choose what items you’d like to be on your badge by simply checking on the ones that you want.  Hit save, then you will be given some code to copy.  At that point jump into iWeb, grab an HTML snippet, paste code into snippet and hit apply.  All done.</span></strong></p>
<h4><span style="font-weight: normal;">Facebook Fan Box:</span></h4>
<p><strong> <span style="font-weight: normal;"><a href="http://www.facebook.com/pages/iWebUnlimitedcom/102558303385?ref=ts"><img class="alignleft size-full wp-image-299" title="fanbox" src="http://iwebunlimited.com/wp-content/uploads/2009/08/fanbox.jpg" alt="Fanbox in iWeb" width="277" height="80" /></a>To have a Fan Box you must create or have created a page for a band, business, etc.  You can’t do this for your personal profile page (that’s what the badge is for).  You can create a page from facebooks homepage.  Below the sign up form, there is a button that says “Create a Page”. </span></strong></p>
<p>For this one go to <a title="http://www.facebook.com/developers/wizard.php" href="http://www.facebook.com/developers/wizard.php">www.facebook.com/developers/wizard.php</a>, choose Fan Box button on the left, then choose which page you’d like to make the fan box for under the drop down menu.  You have 2 checkboxes of option you can add; 1) Include Stream (status updates) 2) Include Fans.  It gives you the code right away for you to paste into an HTML snippet.</p>
<p>The Javascript code that the wizard generates looks similar  to this:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;script src="http://www.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"&gt;&lt;/script&gt;</p>
<p>&lt;script type="text/javascript"&gt;FB.init("<span style="color: #ff0000;">API_KEY</span>", "");&lt;/script&gt;</p>
<p>&lt;fb:fan profile_id="<span style="color: #ff0000;">YOUR_PAGE_ID</span>" stream="<span style="color: #ff0000;">1</span>" connections="<span style="color: #ff0000;">10</span>" width="<span style="color: #ff0000;">300</span>"&gt;&lt;/fb:fan&gt;</p>
<p>&lt;div style="font-size:<span style="color: #ff0000;">8</span>px; padding-left:<span style="color: #ff0000;">10</span>px"&gt;&lt;a href="<span style="color: #ff0000;">VANITY_URL</span>"&gt;<span style="color: #ff0000;">PAGE_NAME</span>&lt;/a&gt; on Facebook&lt;/div&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p>You can change the items in red even after you’ve pasted it into an html snippet. Here’s a little explination of the customization options:</p>
<ul>
<li><span style="color: #ff0000;">profile_id</span>: The ID of the Page associated with the Fan Box. Specify either the profile_id or the name, but not both.</li>
<li><span style="color: #ff0000;">name</span>: The Page&#8217;s name (the name after the final backslash) or username (if one was specified). Specify either the profile_id or the name, but not both.</li>
<li><span style="color: #ff0000;">stream</span>: Set to 1 to display stream stories in the Fan Box or 0 to hide stream stories. (Default value is 1)</li>
<li><span style="color: #ff0000;">connections</span>: The number of fans to display in the Fan Box. Specifying 0 hides the list of fans in the Fan Box. You cannot display more than 100 fans. (Default value is 10 connections.)</li>
<li><span style="color: #ff0000;">width</span>: The width of the Fan Box in pixels. The Fan Box must be at least 200 pixels wide at minimum. (Default value is 300 pixels.)</li>
<li><span style="color: #ff0000;">height</span>: The height of the Fan Box in pixels. The height defaults based on the elements you include in the Fan Box. For a Fan Box that contains only the Become a Fan button, but no stream or friends, the height is 64 pixels. If you include all the features, the Fan Box is 554 pixels high. If you change the number of connections shown, you may need to edit the height to ensure they are all visible.</li>
<li><span style="color: #ff0000;">css</span>: The URL to your own style sheet. See fb:fan for policies on using your own CSS.</li>
</ul>
<p>The rest are pretty self explanitory. Now there are a few known issues with this in iWeb.  First off when you hit apply the widget automatically resizes the height to 10,009px (which is way to super long for any website), so this is easy to fix, just click on your snippet and go into the metric inspector (that’s the one with the ruler) and adjust the height to about 90px if your using the simple one without the stream and fans and at least 554 if you are.  The other issue (at least that I’ve found) is that it seems that it is not compatable with the iWeb browser so you won’t see it show up in iWeb (which makes is hard for layout purposes), but when you publish it it will be there and you’ll see it.  Yay!</p>
<p>There is another option if you want to make sure you see it in iWeb.  You can do a<strong> Facebook Fan Box in an iFrame instead</strong>.  They incourage you to use the javascript one that is the default, but you can also use this iFrame code below:</p>
<blockquote><p><code>&lt;iframe scrolling="no" frameborder="0" src="http://www.facebook.com/connect/connect.php?id=<span style="color: #ff0000;">YOUR_PAGE_ID</span>&amp;connections=<span style="color: #ff0000;">10</span>&amp;stream=<span style="color: #ff0000;">1</span>" allowtransparency="true" style="border: none; width: <span style="color: #ff0000;">300</span>px; height: <span style="color: #ff0000;">550</span>px;"&gt;&lt;/iframe&gt;<br />
 &lt;div style="font-size:<span style="color: #ff0000;">8</span>px; padding-left:<span style="color: #ff0000;">10</span>px"&gt;&lt;a href="<span style="color: #ff0000;">URL_TO_YOUR_PAGE</span>"&gt;<span style="color: #ff0000;">PAGE_NAME</span>&lt;/a&gt; on Facebook&lt;/div&gt;</code></p>
</blockquote>
<p>Here’s some things you’ll need to do to make sure this works:</p>
<ul>
<li>You need to specify your Page ID in the iframe src attribute (You’ll find your page ID at the end of your page’s URL, only the numbers).</li>
<li>You also must specify the URL to your Page in the anchor tag in the div.  You can choose to hide the stream from the Fan Box by changing 1 to 0 in the stream URL parameter.</li>
<li>You can modify the number of fans to display by changing the setting for the connections URL parameter. Setting connections to 0 hides your fans. You cannot specify more than 100 fans.</li>
</ul>
<p>And that’s it! Few!</p>
<h4><span style="font-weight: normal;">Facebook Live Streambox:</span></h4>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/08/Image-NBA_ALL_STARS.jpg"><img class="alignleft size-full wp-image-300" style="margin-left: 5px; margin-right: 5px;" title="Image-NBA_ALL_STARS" src="http://iwebunlimited.com/wp-content/uploads/2009/08/Image-NBA_ALL_STARS.jpg" alt="Live Streambox" width="220" height="123" /></a>This option pretty much works exactly like the Fan Box, but it has a different purpose. The Live Stream Box is a social widget that lets users visiting your site or application share activity and comments in real time. The Live Stream Box works best when you are running a real-time event, like live streaming video for concerts, speeches, or webcasts, live Web chats, webinars, mass-multiplayer games, and more.</p>
<p>The Live Stream Box lets users:</p>
<ul>
<li>Log in to your site using their Facebook accounts with <a title="http://wiki.developers.facebook.com/index.php/Facebook_Connect" href="http://wiki.developers.facebook.com/index.php/Facebook_Connect">Facebook Connect</a>.</li>
<li>Communicate and share with each other and their friends in real time at large scale (supporting millions of simultaneous users).</li>
<li>View what their friends are saying as well as the general audience viewing the live stream.</li>
<li>Comment on and &#8220;like&#8221; their friends&#8217; posts.</li>
<li>Share their updates directly on their Facebook profile and in their friends home page Streams. Each story on Facebook includes a link back to your site (through a URL you specify).</li>
</ul>
<p>Implementing it into your site works the same way as the Fan Box.</p>
<h2>
<div><a href="http://iwebunlimited.com/wp-content/uploads/2009/08/Twitter_24x24.png"><img class="alignleft size-full wp-image-301" style="margin-left: 5px; margin-right: 5px;" title="Twitter_24x24" src="http://iwebunlimited.com/wp-content/uploads/2009/08/Twitter_24x24.png" alt="Twitter in iWeb" width="24" height="24" /></a>Adding Twitter to iWeb</div>
</h2>
<p>There are a few ways to add Twitter to iWeb as well.  You can create a Twitter Profile Widget (Color &amp; Size customizable profile widget), Flash Widget (Flash 9 Required), or a HTML Widget (simple text with your updates).</p>
<h4><strong><a href="http://iwebunlimited.com/wp-content/uploads/2009/08/twitter_widget.jpg"><img class="alignleft size-full wp-image-302" title="twitter_widget" src="http://iwebunlimited.com/wp-content/uploads/2009/08/twitter_widget.jpg" alt="Twitter Widget" width="134" height="207" /></a><span style="font-weight: normal;">Twitter Profile and Search Widgets:</span></strong></h4>
<p>To get this Twitter Widget go to <a title="http://www.Twitter.com/goodies/widget_profile" href="http://www.Twitter.com/goodies/widget_profile" target="_blank">www.Twitter.com/goodies/widget_profile</a>, it will then ask you to sign in.  You’ll then be presented with 3 options; for your website, for facebook, or for myspace.  Obviously we want to choose the option “My Website”.  Then it gives you an option to choose a Profile Widget or a Search Widget.  The profile widget is a listing of your your Tweets (updates).  The Search Widget is a customizable widget that allows you to show when people are talking about a certain topic or event.  We’ll start with the Profile Widget.</p>
<p>When you choose Profile Widget you get three options to customize; settings, appearance, and dimensions.  Go through each section and adjust it as you see fit to match the colors and size of your site, when finished click the button that says “Finish and Grab Code”.  At that point simply copy the code, grab and HTML snippet and paste in your code and your set!</p>
<p>When you choose a Search Widget you get the same three options of settings, appearance, and dimensions.  The difference is in the settings you can set what search criteria is loaded in.  So for example you might put in “iWebUnlimited.com” for the search.  That way you can see what people are saying about that topic on the whole planet of Twitter.  Kindof a cool way to bring all the topics of a certain subject to one place.  Again once you’ve adjusted all your settings and such, hit the “Finish and Grab Code” button, paste the code into an HTML snippet in iWeb and your set.  You have successfully implemented Twitter into iWeb, give your self a pat on the back.</p>
<h4><span style="font-weight: normal;">Twitter Flash Widget</span></h4>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/08/twitter_flash_widget.jpg"><img class="alignleft size-full wp-image-303" style="margin-left: 5px; margin-right: 5px;" title="twitter_flash_widget" src="http://iwebunlimited.com/wp-content/uploads/2009/08/twitter_flash_widget.jpg" alt="Twitter Widget (Flash)" width="145" height="176" /></a>To get the flash widget go to <a title="http://www.Twitter.com/widgets/which_flash" href="http://www.Twitter.com/widgets/which_flash" target="_blank">www.Twitter.com/widgets/which_flash</a>, it will first ask you to sign in (if you don’t have an account, get one here), then you will be presented with 2 options, for either an Interactive Flash Widget or a Display-only Widget.  It’s all preference here on what you’d rather have on your site.  Choose which ever you’d like, then hit continue.</p>
<p>If you chose the Interactive Flash Widget you’ll be presented with 3 styles; smooth (dark glossy look), velvetica (white stylish look), and revo (a red sunburst style).  Then you can choose if you want it to be narrow, wide, or full.  Of course both of these options depends on how you want it to look in your iWeb site.  So choose which ever fits best and you will see the code before you.  Simply copy and paste it into an HTML snippet and your set.</p>
<p>If you chose the Display-only Flash Widget then you are taken to a page where you can change the color and that’s it.  Then just copy and paste the code into an HTML snippet and your set.</p>
<h4><span style="font-weight: normal;">Twitter HTML Widget:</span></h4>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/08/twitter_html.jpg"><img class="alignleft size-full wp-image-304" style="margin-left: 5px; margin-right: 5px;" title="twitter_html" src="http://iwebunlimited.com/wp-content/uploads/2009/08/twitter_html.jpg" alt="Twitter HTML Widget in iWeb" width="112" height="104" /></a>To get the HTML widget go to <a title="http://www.Twitter.com/widgets/html_widget" href="http://www.Twitter.com/widgets/html_widget" target="_blank">www.Twitter.com/widgets/html_widget</a>, this is a simple but customizable way to get your tweets on your iWebsite without requiring people to have flash player (this means it will show up in Safari on the iPhone).  You have a few options here at start, to show how many Tweets you’d like to have up at a time, and if you’d like a title.  Copy and past the code into an HTML snippet on your page.  Hit apply and you have successfully added the HTML snippet to your page.</p>
<p>Now to style it a bit.  At this point it’s a pretty plain bit of text. But the nice thing is that we can really style this however we want.  First of all you can adjust the size of the snippet to whatever you want, and to change the font and colors use this block of code below and paste it at the top of your code.</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code><code>&lt;body text="#<span style="color: #ff0000;">4C4C4C</span>" link="#<span style="color: #ff0000;">4167BE</span>" vlink="#<span style="color: #ff0000;">000000</span>" alink="#<span style="color: #ff0000;">4167BE</span>"&gt;</code></p>
<p><code>&lt;font face="<span style="color: #ff0000;">Verdana, Arial, Helvetica, Geneva</span>"&gt;&lt;font color="<span style="color: #ff0000;">4C4C4C</span>"&gt;&lt;font size=<span style="color: #ff0000;">2.5</span>&gt;</code></p>
<p><code> </code></p>
<p>If your not sure how to get the hex color values use this handy little color picker from <a href="http://www.google.com/ig/directory?synd=open&amp;hl=en&amp;gl=en&amp;url=http%3A%2F%2Fhosting.gmodules.com%2Fig%2Fgadgets%2Ffile%2F103534220535816043845%2Fcolorpicker.xml" target="_blank">Google Gadget</a>s.  Style as you choose, maybe even put a cool background behind it, whatever you’d like, and you’ll have a nice little widget that’s more compatable, and more styled to your liking than any of the other Twitter widgets.</p>
<p>That’s all for this tip.  Hope you enjoyed getting your social network on iWeb and if you have any questions on this at all feel free to leave a comment below.  And if you found this tip helpful, please consider donating to the iWebUnlimited cause.  Thanks again.</p>
<p>—iJason</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-18-facebook-and-twitter-in-iweb/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #17 &#8211; Page Titles in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-17-page-titles-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-17-page-titles-in-iweb/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 23:59:17 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=152</guid>
		<description><![CDATA[You’ll notice that when you visit a webpage at the top of your browser there is a title of the page.  In iWeb you get this title by the header text box and if you delete that it just uses the name of the page in the sidebar.  Search engines do a lot better finding [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/06/page_titles.jpg"><img class="alignleft size-full wp-image-311" title="page_titles" src="http://iwebunlimited.com/wp-content/uploads/2009/06/page_titles.jpg" alt="Page Titles in iWeb" width="312" height="133" /></a>You’ll notice that when you visit a webpage at the top of your browser there is a title of the page.  In iWeb you get this title by the header text box and if you delete that it just uses the name of the page in the sidebar.  Search engines do a lot better finding your page if you have a good title for your page so here are some tips to help get your page to have a title.</p>
<p><span id="more-152"></span></p>
<p>So the first thing is that when you add a new page to your site in iWeb there is always a title box, even when you choose the blank template page.  Many people delete this text box when they are making a custom design, but don’t do it!  Try to make it so everypage has this text box on the page.</p>
<p>The problem lyes in that the text box can’t leave the header part of your page, so it almost forces you to use that textbox in your design.  But what if you don’t want to use that text box cause you want a lot of words to be part of your page title (meaning the part that will show in the browser top like this image)</p>
<div><a href="http://iwebunlimited.com/wp-content/uploads/2009/06/favicons.jpg"><img class="alignleft size-full wp-image-312" title="favicons" src="http://iwebunlimited.com/wp-content/uploads/2009/06/favicons.jpg" alt="" width="328" height="42" /></a></div>
<p>
But you don’t want it to be on the actual page.</p>
<p>So what you can do is put this text box really small at the top of the page and give it a good title and change the color to be the same as the background.  You do that by using the little magnifying glass on the color picker and click on the background.  That way you’ll be sure to get the right color. By doing this it will help you to have a good title for your page and it’s not seen.  And this way you can make your own design without being forced to really use that box in the design (if that makes sense). Here’s an image to show it better:</p>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/06/sneaky_title.jpg"><img class="alignleft size-full wp-image-313" style="margin-left: 5px; margin-right: 5px;" title="sneaky_title" src="http://iwebunlimited.com/wp-content/uploads/2009/06/sneaky_title.jpg" alt="" width="300" height="38" /></a>Sometimes you have an object, and image, or possibly a flash object in the header of your page you can just use the arrange menu on the menu bar and send it to the back (or press command + shift + B).  That way it’s not seen but you can still have a good title.  Notice my image below.  I turned on “Show Layout” by pressing Command + Shift + L and you can see that I sent the text box behind the top image.  That way it won’t be seen but I can have a long title, that will fully describe my page and help my web searchability out.</p>
<div><a href="http://iwebunlimited.com/wp-content/uploads/2009/06/behind_header.jpg"><img class="alignleft size-full wp-image-314" style="margin-left: 5px; margin-right: 5px;" title="behind_header" src="http://iwebunlimited.com/wp-content/uploads/2009/06/behind_header.jpg" alt="" width="300" height="91" /></a></div>
<div>
<p>The blog and podcast templates in iWeb let you move the title text box out of the header into the content area by holding down the command key as you drag it.  It only works on the main and archive pages.  The entry pages have to stay in the header.</p>
<p>So the main point of this tip is to leave the head text box on your page and either use it in your design, or type whatever title you want for each page (suggested) and hide it on your page so it won’t be seen, but will be used.</p>
<p><strong>Note:</strong> If you forgot about this tip and already deleted that box, no you can’t get it back.  You can do one of two things.  Create a new page re-design and copy and paste stuff over to it, or you can publish your page(s) and open the html files in an html editor (like Coda, Espresso, Text Edit) and find the title tag and put in your own title.  It looks like this &lt;title&gt;This is My Page Title&lt;/tite&gt;</p>
<p><strong>Another Note:</strong> I&#8217;ve had some readers scare other readers by listing that this will get your site black listed on sites like Google and Yahoo.  The terms <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=66353" target="_blank">says</a> it will be banned only if &#8220;your site is perceived to contain hidden text and links that are deceptive in intent&#8221;, this method is not deceptive in intent as it only adds text to the title of the site.  So this will not hurt your site in the search engine, it will only help it.</p>
<p>Hope this tips helps.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-17-page-titles-in-iweb/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #16 &#8211; Navigation Menus in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-16-navigation-menus-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-16-navigation-menus-in-iweb/#comments</comments>
		<pubDate>Tue, 19 May 2009 23:23:58 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Drop Down Menus]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Post Publish]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=149</guid>
		<description><![CDATA[This iWeb tip is all about navigation menus in iWeb.  I’ve had many request to get into menus.  Simple navigation is pretty simple in iWeb and you can make the navigation pretty customized.  Drop down menus get a little more complicated in iWeb, however it is possible.  This tutorial will show you how, so here [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/05/navigation_in_iweb.jpg"><img class="alignleft size-full wp-image-316" style="margin-left: 5px; margin-right: 5px;" title="navigation_in_iweb" src="http://iwebunlimited.com/wp-content/uploads/2009/05/navigation_in_iweb.jpg" alt="Navigation Menus in iWeb" width="214" height="158" /></a>This iWeb tip is all about navigation menus in iWeb.  I’ve had many request to get into menus.  Simple navigation is pretty simple in iWeb and you can make the navigation pretty customized.  Drop down menus get a little more complicated in iWeb, however it is possible.  This tutorial will show you how, so here we go.  Let’s start simple and go more and more complex.</p>
<p><span id="more-149"></span></p>
<blockquote>
<h3><strong><a onclick="window.open('http://www.iwebunlimited.com/examples/navigation/navigation.html','Navigation Menus in iWeb Example (Drop Downs)','scrollbars=yes,width=810,height=740,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-370)+'');return false;" href="http://www.iwebunlimited.com/examples/navigation/navigation.html" target="_blank">View Demo »</a></strong></h3>
</blockquote>
<h2><span style="font-weight: normal;">The built in iWeb Navigation:</span></h2>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/05/iweb_navi.jpg"><img class="alignleft size-full wp-image-317" title="iweb_navi" src="http://iwebunlimited.com/wp-content/uploads/2009/05/iweb_navi.jpg" alt="" width="471" height="27" /></a></p>
<p>First as you probably have noticed iWeb gives you a navigation menu at the top of the page automatically and with each added page it adds a new text button at the top that is the same name as whatever you named your page in the sidebar.  It’s pretty convenient sure, but lacks any constumization at all to out site.  So if you want to keep it simple than just keep the built in navigation</p>
<h2><span style="font-weight: normal;">Your own Text Navigation:</span></h2>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/05/inspector.png"><img class="alignright size-full wp-image-318" title="inspector" src="http://iwebunlimited.com/wp-content/uploads/2009/05/inspector.png" alt="" width="184" height="199" /></a>If you want to have a similar look as the built in navigation, but want to customize it.  The first thing to do is to go into the page inspector &gt; Page Tab, and uncheck “Display navigation menu”.  That will take the auto-navigation off.  But now you have no links or ways to get to the other pages of your site.  So what you do is, simply make a text box type the name of your pages as you want them to appear, style it (i.e. fonts, sizes, etc, but don’t worry about color yet), then go to the hyperlink inspector and highlight the text word button one at a time and enable them as a hyperlink going to your pages.  Then go into the Hyperlink Inspector &gt; Format tab to style the colors of the “Normal” state, the “Rollover” state, “Visited” state, and “disabled” state.  Then your done.  Copy and paste the text box onto all the other pages now and you have yourself a cutom text navigation.</p>
<p><strong>note</strong>: I recommend creating all of your pages first, then make your Text Navigation so that you can link them to the pages and proceed to copy them to the other pages as well.  Also remember that any font that is not websafe could cause problems.  So if you font is a special font you can guarantee that the font will show up by making it an image.  To do that go to the Graphic Inspector and give the text box a shadow then bring the shadow opacity down to 5%.  You won’t be able to see the shadow, but now your text will be turned into an image.</p>
<h2><span style="font-weight: normal;">Graphic Menu:</span></h2>
<p>Another great way to stylize your navigation is to use graphics in iWeb.  You can use the shapes to create some pretty good looking menus.  Here’s an example simply using two rounded cornered square shapes and a text box.</p>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/05/graphic_menu.png"><img class="size-full wp-image-319 alignnone" style="margin-top: 5px; margin-bottom: 5px;" title="graphic_menu" src="http://iwebunlimited.com/wp-content/uploads/2009/05/graphic_menu.png" alt="" width="458" height="43" /></a></p>
<p>Here’s my quick workflow for this menu: 1) Create shape 2) Size shape according to site size desires 3) Add gradient color with darker on bottom and lighter on top 4) Add 2pt white stroke 5) add shadow 6) Duplicate shape (Option + Drag shape, now you have to of the same shape) 7) On 2nd shape, remove shadow and stroke, and change top gradient color to white with 26% opacity and bottom gradient color to white with 11% opacity. 8 ) size the 2nd shape so it’s half the size height-wize as the 1st shape.  (this effect gives you the shine look) 9) Add stylized text box over the top of shapes.</p>
<h2><span style="font-weight: normal;">Photoshopped Rollover Menu:</span></h2>
<p>If you really want to spice up the graphic menu and own photoshop, then here’s a cool way to do it.  Take the same graphic menu that we created earlier and copy and paste it into photoshop. To do that you hightlight the 1st shape and press command + c to copy, then jump over to photoshop and press command + n or File&gt;New and photoshop will see that you have something copied to the clipboard and will default to that size.  But you need to change the color mode from “Greyscale” to “RGB Color”.  Then press comman + V in photoshop or press Edit&gt;paste and your shape you made in iWeb will be in photoshop.  You’ll need to add a shadow to your shape here (if wanted/needed) cause the shadows don’t copy over.  You can then copy and paste your highlight shape (the 2nd shape) in there too.  You can even copy and paste the text box if you want also, but you can just as well type the text in photoshop too.  Once it looks pretty good in photoshop, hold your mouse down on the crop tool until you see the slice tool.  Use that to draw boxes over the different buttons of your menu.  For example our graphic menu above has 5 buttons on it, so you would draw 5 squares with the slice tool.  Then choose file &gt; save for web &amp; devices, and be sure that it says to save as a PNG 24, choose your location to save and file name (I recommend naming them “up”) and hit save.  You will then see the result is a folder called images with your 5 sliced boxes as individual graphics.  These are your “Up” graphics.  Meaning this is what the buttons look like when they are just sitting there…when their up.  Then you go back in and find the main shape layer and use some photoshop trickery to change the color slightly.  You could change the hue so it’s a different color, the brightness, etc.  Whatever you do, we just want something that looks different.  So that when they rollover they see something change.  It could even be the text.  Once you have that looking different, choose file&gt;save for web and devices again, save as PNG 24, choose save location (should be the same place as before), name (I recommend “over”), and hit save.  You will then have another images folder with your “over” images.  These are the images that will swap out when the user rolls their mouse button over the graphic.  We now need to put these graphics on our server (meaning MobileMe iDisk or your own server from say GoDaddy, iPower, BlueHost, etc). At this point go to my rollover tip and follow those instruction on how to get the rollover effect now that you have the graphics, and the result is something like this:</p>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/05/photoshop_navi.png"><img class="alignnone size-full wp-image-320" title="photoshop_navi" src="http://iwebunlimited.com/wp-content/uploads/2009/05/photoshop_navi.png" alt="" width="597" height="60" /></a></p>
<p>You can see the working version in the <a title="Navigation Example" href="http://www.iwebunlimited.com/examples/navigation/navigation.html" target="_blank">demo</a>.  If you&#8217;d like <a title="Download Photoshop Btns" href="http://www.iwebunlimited.com/downloads/navigation/photoshop_btns.zip">here</a> is the photoshop file you can download to get you started.</p>
<h2><span style="font-weight: normal;">Drop Down Menus in iWeb:</span></h2>
<p>This is a big one.  I’ve had a lot of request for this.  The problem with drop down menus is that they get a bit complicated.  I wish they were as easy as a simple html snippet to paste in, but it’s not.  So I’ve tried to make this as simple as possible.  To do this you must understand (and I’ll try to explain this the best I can) that the first and foremost problem with putting dropdown menus into an html snippet is that drop down menus require a lot of room to drop down over the top of your content and every object in iWeb (shapes, text boxes, snippets, etc) is layered, meaning one is above another.  So what happens is that the html snippet needs to always be on the top layer above all your text boxes and shapes, etc, but if you have any links under your snippet they will not be clickable because you snippet needs to be as big as your longest and widest drop down link and everything else on your page will be underneath it, again making any links under the snippet unable to be clicked.  So I’m going to show you first how to get around this with out using html snippets where we modify the code after publish to get the desired effect.  Then I’ll show you how to do this using HTML Snippets (as long as you understand that everthing under your snippet will not be clickable ;-).</p>
<p><strong>1) Drop Down Menu without HTML Snippet:</strong></p>
<p>First simply make your links from a text box.  Similar to our text navigation above.  Then simply publish your iWeb page.  Find your publish html page and open it with an HTML editor (coda, espresso, textedit, etc) and add the below code right before the &lt;/head&gt; tag:</p>
<p><script src='http://pastie.org/945782.js'></script></p>
<p>You then change the code to customize it to your site and style.  The items your going to want to change are the items outlined in the comment code.  You&#8217;ll see to change font size, color, and most importantly your links which are outlined by &#8220;Menu1&#8243; and &#8220;Menu2&#8243;</p>
<p>Then you find in the code the text that you linked and add the line of code in blue, making sure the code looks like this:</p>
<blockquote><p><code></code><code>&lt;a href="My_Page_in_iWeb.html" <span style="color: #000080;">onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()" </span>title="My_Page_in_iWeb.html"&gt;The Linked text that people see&lt;/a&gt;</code></p>
</blockquote>
<p>You’ll notice that in the head tag code there is text called menu1 and the link code that matches also has a menu1 in it.  That how you put them together, and you can add as many sublinks as you’d like in the head code where the menu1 is.  Just copy the line and keep adding another menu1[3], etc etc.  That is only for one button.  If you have more buttons that need it, just copy the whole menu1 part in the head code, paste it below the 1st menu1 part and change it to menu2, then in your links do the same and change it to say menu2 and so on (Hopefully that makes sense).  Once your done, just save it and your in business.  Be sure to test it out, once it is working successfully put online and your set.  I’ll have a video tutorial on this as well as I tend to do with the more complicated tutorials.</p>
<p><strong>2) Drop Down Menu Using IzzyMenu:</strong></p>
<p>Another way to create drop downs is to go to IzzyMenu.com.  It’s totally free (just dodge the ads), then you can build a drop down menu in a nice little drop down menu creator, then they let you download your complete menu.  Once downloaded you’ll see some ads on it, you can get rid of these by opening up the IzzyMenu.html in an editor and delete this last line of code:</p>
<blockquote><p><code>&lt;div style="clear:both; text-align:center; padding:10px;"&gt;&lt;a href="http://www.templateo.com"&gt;&lt;img style="border:1px solid black;margin-bottom:5px;" src="templateo600x100.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.izzywebsite.com/go?izzymenudownload"&gt;&lt;img src="download.jpg" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;</code></p>
</blockquote>
<p>You can also delete the ad images usually called “download.jpg” and “templateo600&#215;100.jpg”.  Alright, we’re almost ready.  You need to do one more thing to make it work properly in iWeb.  Because it’s going to be in an HTML Snippet we can’t have the links be “_self” links, we need them to be “_parent” or “_top”, so we need to go through our links in the IzzyMenu.html and make sure all the links open with the “_parent” code. So add this code <span style="color: #000080;">target=&#8221;_parent&#8221;</span> after each link so it looks like this:</p>
<p><code></code></p>
<p><code></code></p>
<blockquote><p>&lt;li <span style="color: #ff0000;">class=&#8221;item_active</span>&#8220;&gt;&lt;a href=&#8221;http://www.iwebunlimited.com&#8221; target=&#8221;<span style="color: #000080;">_parent</span>&#8220;onMouseover=&#8221;cssdropdown.dropit(this,event,&#8217;dropmenu_101&#8242;)&#8221;&gt;&lt;span&gt;iWeb Tips&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#8221;http://www.iwebunlimited.com/videotutorials/videotutorials.html&#8221; target=&#8221;_parent&#8221;&gt;&lt;span&gt;Video Tutorials&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;http://www.iwebunlimited.com/links.html&#8221; target=&#8221;<span style="color: #000080;">_parent</span>&#8220;onMouseover=&#8221;cssdropdown.dropit(this,event,&#8217;dropmenu_104&#8242;)&#8221;&gt;&lt;span&gt;Links&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;http://www.iwebunlimited.com/qanda/qanda.html&#8221; target=&#8221;<span style="color: #000080;">_parent</span>&#8220;&gt;&lt;span&gt;QandA&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;http://www.iwebunlimited.com/html_snippets.html &#8221;target=&#8221;<span style="color: #000080;">_parent</span>&#8220;&gt;&lt;span&gt;HTML Snippets&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;</p>
</blockquote>
<p>Now that your links are working, you might notice the code in red.  That is what button you would like to have active on the page.  So if you wanted, you could make a duplicate of this menu for each button on your menu and just move the red code around to go on the page you want active.  If you don’t want it, just delte the code.</p>
<p>And boom we are done.  Post the Izzy Menu including all the folders that came with it on your server, perhaps in a folder called “izzymenu” and test it out by going to your url. i.e. http://www.mysite.com/izzymenu/IzzyMenu.html or http://web.me.com/myusername/izzymenu/IzzyMenu.html (mobileme users put the izzymenu folder in the idisk&gt;Web&gt;Sites&gt;here).  Once you see your menu is working, we use the iFrame code to get it into iWeb.  Yay! We’re set.  Again remember that because it’s in a snippet any links under the drop down won’t be clickable.</p>
<p><strong>3) Other Drop Down Menu’s to iFrame in:</strong></p>
<ul>
<li>You can get similar drop down menu effects like the IzzyMenu at some of these links</li>
<li><a title="http://www.cssplay.co.uk/menus/pro_horizontal.html" href="http://www.cssplay.co.uk/menus/pro_horizontal.html" target="_blank">http://www.cssplay.co.uk/menus/pro_horizontal.html</a> (Free)</li>
<li><a title="http://www.lwis.net/free-css-drop-down-menu/" href="http://www.lwis.net/free-css-drop-down-menu/" target="_blank">http://www.lwis.net/free-css-drop-down-menu/</a> (Free)</li>
<li><a title="http://greengeckodesign.com/projects/menumatic.aspx" href="http://greengeckodesign.com/projects/menumatic.aspx" target="_blank">http://greengeckodesign.com/projects/menumatic.aspx</a> (Free)</li>
<li><a title="http://www.opencube.com/index.asp" href="http://www.opencube.com/index.asp" target="_blank">http://www.opencube.com/index.asp</a> (Not Free)</li>
</ul>
<blockquote><p><a title="CSS Play Download" href="http://www.iwebunlimited.com/downloads/navigation/css_play.zip">CSS Play Download »</a></p>
</blockquote>
<blockquote><p><a title="Free CSS Download" href="http://www.iwebunlimited.com/downloads/navigation/free-css-drop-down-menu_v1.0.1.zip">Free CSS Download »</a></p>
</blockquote>
<blockquote><p><a title="Menu Matic download" href="http://www.iwebunlimited.com/downloads/navigation/menumatic.zip">Menu Matic Download »</a></p>
</blockquote>
<h2><span style="font-weight: normal;">Flash Menus:</span></h2>
<p>Flash navigation can sometimes add a neat look and feel to your site and over 90% of all computers have flash installed on their machines.  But as we most know, that the iPhone does not have flash, as well as many other mobile devices.  So that’s why if you go this route you add some text links at the bottom of the page.  That way people can still navigate if they don’t have flash.</p>
<p>Simply go to FlashComponents.net and browse through their emence library of flash menus and purchase it, modify it (usually using the xml code), post it, and iFrame it in.  Don’t forget to make sure your links are _parent or _top.</p>
<p><br class="spacer_" /></p>
<p>Hope this helps you get some great navigation menus in iWeb.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-16-navigation-menus-in-iweb/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #15 &#8211; Lytebox in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-15-lytebox-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-15-lytebox-in-iweb/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 22:59:32 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Image Pop Up]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Lightbox]]></category>
		<category><![CDATA[Lytebox]]></category>
		<category><![CDATA[Model Box]]></category>
		<category><![CDATA[Post Publish]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=145</guid>
		<description><![CDATA[So I know I’ve been on this kick of the little pop-up effect in iWeb and the FancyZoom and Highslide effects I thought we’re enough, but then I came across this effect here and found it to be pretty easy to implement (easier than Highslide), I thought I’d post this one as well.  So here [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/04/lytebox_in_iweb.jpg"><img class="alignleft size-full wp-image-326" title="lytebox_in_iweb" src="http://iwebunlimited.com/wp-content/uploads/2009/04/lytebox_in_iweb.jpg" alt="Lytebox in iWeb" width="217" height="158" /></a>So I know I’ve been on this kick of the little pop-up effect in iWeb and the FancyZoom and Highslide effects I thought we’re enough, but then I came across this effect here and found it to be pretty easy to implement (easier than Highslide), I thought I’d post this one as well.  So here we go:</p>
<p><span id="more-145"></span></p>
<blockquote><p><strong><a title="Lytebox in iWeb" onclick="window.open('http://www.iwebunlimited.com/examples/lyteboxexample/lytebox.html','Lytebox in iWeb (Lightbox)','width=810,height=740,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-370)+'');return false;" href="http://www.iwebunlimited.com/examples/lyteboxexample/lytebox.html" target="_blank">View Demo »</a></strong></p>
</blockquote>
<p>Step 1) Download Lytebox by clicking <a title="Lytebox (lightbox) for iWeb" href="http://www.iwebunlimited.com/downloads/lytebox.zip">here »</a></p>
<p>Step 2) Add images to your iWeb page and make them a hyperlink (as a file) to itself (the same image).</p>
<p>Step 3) Publish your iWebsite to a folder, iDisk, or server.</p>
<p>Step 4) Add the “lytebox” folder you downloaded in step one to the site folder (not the page folder)</p>
<p>Step 5) Open html page (the one with the images linked to itself we did in step 2) in an HTML editor.  I like to use Coda (by Panic Software), but you could use TextEdit (if you check on ignore rich text commands in HTML files checkbox in the preferences of TextEdit), or Espresso, TextWrangler, etc, etc, there are a bunch.  Just something that you can edit HTML in.</p>
<p>Step 6) Right above the &lt;/head&gt; tag in the HTML, paste these lines of code.</p>
<blockquote><p><code>&lt;script type="text/javascript" language="javascript" src="lytebox/lytebox.js"&gt;&lt;/script&gt;<br />
 &lt;link rel="stylesheet" href="lytebox/lytebox.css" type="text/css" media="screen" /&gt;</code></p>
</blockquote>
<p>Step 7) Then find where your image links are and add a rel=&#8221;lytebox&#8221; in between the link and the tittle tag. For example, here is what your looking for in the HTML:</p>
<blockquote><p><code>&lt;a href="<span style="color: #ff0000;"><span style="color: #000000;">mypage_files/my_image.jp</span><span style="color: #000000;">g</span></span>"  title="<span style="color: #000000;">Image Description</span>"&gt;</code></p>
</blockquote>
<p>Put the rel=”lytebox” inbetween the image link and the title tag so it looks like this:</p>
<blockquote><p><code>&lt;a href="images/image-1.jpg" <span style="color: #ff0000;">rel="lytebox"</span> title="Image Description"&gt;</code></p>
</blockquote>
<p>Step 8 ) Save and that’s it your done.  You’ll have a cool image popup effect, similar to highslide or fancyzoom, but slightly different.</p>
<h2>Options: (If you dare :-))</h2>
<p><strong>Grouped Images:</strong></p>
<p>If you want to have the images scroll through with a cool next and previous button to the lytebox, then instead of adding rel=”lytebox” in between the image link and title tag, add rel=&#8221;lytebox[group1]&#8220;to each image link and there will be a neat navigation to cycle through the images.  Here’s an example of what the code would look like:</p>
<p>&lt;a href=&#8221;images/image-1.jpg&#8221; rel=&#8221;lytebox[group1]&#8220; title=&#8221;Image Description&#8221;&gt;</p>
<p>You could have multiple sets on one page too if you change the group1 to something like group2 for all the ones you want in a seperate group and so forth.  Click the example button above for reference.</p>
<p>Keep in mind that the images will scroll through in the order they were dropped onto the page (not necessarily the order top to bottom that you have them in on the page.  So be sure to add images to the page in the order you want them to show up in the lytebox effect.</p>
<p><strong>Lytebox Slideshow:</strong></p>
<p>You can also have a little slideshow effect in the lytebox popup by using <span style="color: #ff0000;">rel=&#8221;lyteshow[group1]&#8220;</span> instead of the rel=”lytebox” (single images) or rel=”lytebox[group1]” (multiple images).  So your link code would look like this:</p>
<p><code>&lt;a href="images/image-1.jpg" <span style="color: #ff0000;">rel="lyteshow[group1]"</span> title="Image Description"&gt;</code></p>
<p><strong>iFrame Content in Lytebox:</strong></p>
<p>If instead you want a webpage in the lytebox effect instead of an image, then simply add a link to an external page (it could be one of your own pages).  Find the code in the html where your link is and add rel=&#8221;lyteframe&#8221; instead of the others above.</p>
<p>Note: When using this effect it only works with highlighted text links (not textbox links) and image links.  It does not work very well with iWeb shapes for links.  For those, use the Highslide effect.</p>
<p>When applying the Lytebox effect it will take a default width and height of 400px and scrolling is set to auto.  If you want to control how big the frame is for your iFrame then add this code in your title tag</p>
<blockquote><p><code>rev="width: 400px; height: 300px; scrolling: no;"</code></p>
</blockquote>
<p>Replace the items in the brighter red to the size you want and your set.  Here is an example of the full link code as an example:</p>
<blockquote><p><code>&lt;a href="http://www.google.com" <span style="color: #ff0000;">rel="lyteframe"</span> title="Search Google" rev="width: 400px; height: 300px; scrolling: no;"&gt;Google Search&lt;/a&gt;</code></p>
</blockquote>
<p>You could even group pages together like we did with the images above by using this “rel” tag instead: rel=&#8221;lyteframe[group1]</p>
<p>Another note on doing this if your using iFrames on your iWebpage: If you plan to use Lytebox in an iFrame environment, then you need to include lytebox.css in the parent document, while including lytebox.js in the iFrame document.  They are both found in the lytebox folder.</p>
<p><strong>Browser Compatability:</strong></p>
<p>This effect was built with browser compatability in mind, so it’s safe to say it works on most all browsers.  The following browsers have been tested with this script:</p>
<p>IE 5.01 SP2 &#8211; The fade effect does not work, but the background is darkened (completely).</p>
<p>IE 5.5 SP2 &#8211; No known issues.</p>
<p>IE 7.0 &#8211; No known issues.</p>
<p>Opera 9.23 &#8211; No known issues.</p>
<p>Firefox 1.5+ &#8211; No known issues, of course.</p>
<p>Safari 2.0+ &#8211; No known issues, of course.</p>
<p><strong>End Notes:</strong></p>
<p>Well that’s it folks.  Hopefully it’s not to crazy for you.  Like I’ve said in other posts.  I usually don’t like having to get into the HTML code after publish if possible, but sometimes to get a cool effect you just gotta.  So don’t work yourself up to much if you don’t get it the first time.  A simple republish in iWeb will let you start over and try again (though I recommend publishing from the File menu with the publish entire site option to get a clean full publish).</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-15-lytebox-in-iweb/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #14 &#8211; Highslide JS in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-14-highslide-js-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-14-highslide-js-in-iweb/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 22:29:34 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Highslide JS]]></category>
		<category><![CDATA[Image Pop Up]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Model Box]]></category>
		<category><![CDATA[Post Publish]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=141</guid>
		<description><![CDATA[Here it is, finally a fancy zoom that will allow us to get not only images, but flash, video, and other html content.  So first let me answer the question, what is Highslide JS?  Highslide JS is a great way to get that ever so popular image zoom effect just like the fancy zoom post [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/04/highslide.jpg"><img class="alignleft size-full wp-image-329" title="highslide" src="http://iwebunlimited.com/wp-content/uploads/2009/04/highslide.jpg" alt="Highslide in iWeb" width="237" height="181" /></a><a name="top"></a>Here it is, finally a fancy zoom that will allow us to get not only images, but flash, video, and other html content.  So first let me answer the question, what is Highslide JS?  Highslide JS is a great way to get that ever so popular image zoom effect just like the fancy zoom post I did in the past.  The difference is, is that this one will give you the ability to zoom more than just images.  Though FancyZoom is a bit more light weight, there are some great advantages to Highslide.  This tutorial you will need the use of an HTML editor like Coda, Espresso, Dreamweaver, even TextEdit.  Just as long as you have some way to edit the html after iWeb publishes.  I try to do as many tutorials trying not to get into post published html, but sometimes you just gotta do it to get the desired effect.  So here is an easiest way I’ve found to get it into iWeb.</p>
<p><span id="more-141"></span></p>
<blockquote><p><strong><a onclick="window.open('http://www.iwebunlimited.com/examples/highslideexample/example/highslide.html','Highslide in iWeb','width=810,height=740,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-370)+'');return false;" href="http://www.iwebunlimited.com/examples/highslideexample/example/highslide.html" target="_blank">View Demo »</a></strong></p>
</blockquote>
<p><a href="#highslide_images">Highslide with Images</a> |   <a href="#highslide_flash">Highslide with Flash Files</a> |   <a href="#highslide_iframes">Highslide with iFrames</a></p>
<p>To get started I will separate the tip into Images, Flash, and iFrames (which would include any other html page (websites, videos, youtube, etc)).  Here we go:</p>
<h2><a name="highslide_images"></a>Highslide with Images:</h2>
<p><strong>Step 1)</strong> Add an any image(s) or graphic(s) to your page in iWeb.</p>
<p><strong>Step 2)</strong> Open up the inspector and make it a hyperlink in the hyperlink inspector.  Choose to Link To: “A File” and choose the same image (so it basically it is linked to its self).</p>
<p><strong>Step 3)</strong> Publish site to Folder, Server, or MobileMe iDisk &#8211; Whatever your method is.</p>
<p><strong>Step 4)</strong> <a title="Highslide in iWeb" href="http://www.iwebunlimited.com/downloads/highslide_iweb.zip">Download files</a>. I’ve made a special iWeb version of Highslide to simplify things.</p>
<p><strong>Step 5)</strong> Unzip the downloaded file called “highslide_iweb.zip” and you will see a folder simply called “highslide”.  <a href="http://iwebunlimited.com/wp-content/uploads/2009/04/published_site.jpg"><img class="alignright size-full wp-image-330" title="published_site" src="http://iwebunlimited.com/wp-content/uploads/2009/04/published_site.jpg" alt="" width="190" height="42" /></a>Drop that folder into your published site folder (not your webpage folder).  When publishing iWeb makes a index.html file and your site folder (named whatever you named it in iWeb), this is the folder you want to drop this highslide folder into.)</p>
<p><strong>Step 6)</strong> Open your favorite HTML Editor (Coda, Espresso, TextEdit) and you are going to find and replace the code below:</p>
<p>Find:</p>
<blockquote><p><code>&lt;/head&gt;</code></p>
</blockquote>
<p>Replace with:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;script type="text/javascript" src="highslide/highslide-full.js"&gt;&lt;/script&gt;</p>
<p>&lt;link rel="stylesheet" type="text/css" href="highslide/highslide.css" /&gt;</p>
<p>&lt;script type="text/javascript"&gt;</p>
<p>hs.outlineType = 'rounded-white';</p>
<p>hs.wrapperClassName = 'draggable-header no-footer';</p>
<p>hs.align = 'center';</p>
<p>hs.transitions = ['expand', 'crossfade'];</p>
<p>hs.dimmingOpacity = 0.75;</p>
<p>hs.graphicsDir = 'highslide/graphics/';</p>
<p>&lt;/script&gt;&lt;/head&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p><strong>Step 7)</strong> Now we’re going to find and replace one more item:</p>
<p>Find:</p>
<blockquote><p><code>title="pagename_files/imagename_1.jpg"&gt;</code></p>
</blockquote>
<p>Replace with:</p>
<blockquote><p><code>title="Click to Enlarge" onclick="return hs.expand(this)"&gt;</code></p>
</blockquote>
<p>When it says “pagename” that means whatever the title of your webpage you are doing this one in the sidebar of iWeb and imagename is the name of the photo you put on the page.  If your not sure what these names are, you can go back into iWeb and take a peek.  Here’s where you will look.</p>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2010/01/myimage.jpg"><img class="size-full wp-image-142 alignleft" title="My Site" src="http://iwebunlimited.com/wp-content/uploads/2010/01/myimage.jpg" alt="" width="185" height="169" /></a><a href="http://iwebunlimited.com/wp-content/uploads/2010/01/image_name.jpg"><img class="size-full wp-image-143 alignnone" title="File Info" src="http://iwebunlimited.com/wp-content/uploads/2010/01/image_name.jpg" alt="" width="178" height="172" /></a></p>
<p>So for example if I was wanting this effect on my page called “iweb09” in my sidebar and my image was named “myimage.jpg”, then my replace code would be:</p>
<blockquote><p><code>title=”<span style="color: #ff0000;">iweb09_files</span>/<span style="color: #ff0000;">myimage</span>_1.jpg”&gt;</code></p>
</blockquote>
<p><strong>Important Note:</strong> If you are linking to a shape made in iWeb take off the “&gt;” tag at the end of the search and replace. If you are linking an image to text get rid of the “_1” at the end of the find code.</p>
<p>Basically your are replacing the “title=&#8230;” tag of your items.  So if your having a tough time finding the right items to replace just do a search for “title” and copy that whole line “title=”mypage_files/myimage_1.jpg”&gt;” and paste it to replace with the other code.</p>
<p><strong>Step 8 )</strong> Save your modified html file online and your good.</p>
<h2><a name="highslide_flash"></a>Highslide with Flash Files:</h2>
<p>I’m going to go through the flash one a bit faster assuming you’ve gone through the image one already. So I’m just going to give you the quick steps:</p>
<ol>
<li>Make flash file (Adobe Flash, Keynote, Bannersnack, etc) be ready to link to it on your hard drive.</li>
<li>Make or get an image or button to represent that file (this will be your button.  It could be anything really, text, shape, image, etc) and put it on your iWeb page.</li>
<li>Link image/button to .swf file from the hyperlink inspector as a “A File”</li>
<li>Publish site</li>
<li>Add “highslide” folder to published site folder</li>
<li>Open your html page with HTML editor and find and replace the following code:</li>
</ol>
<p>Find:</p>
<blockquote><p><code>&lt;/head&gt;</code></p>
</blockquote>
<p>Replace with:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;script type="text/javascript" src="highslide/highslide-full.js"&gt;&lt;/script&gt;</p>
<p>&lt;script type="text/javascript" src="highslide/swfobject.js"&gt;&lt;/script&gt;</p>
<p>&lt;link rel="stylesheet" type="text/css" href="highslide/highslide.css" /&gt;</p>
<p>&lt;script type="text/javascript"&gt;</p>
<p>hs.outlineType = 'rounded-white';</p>
<p>hs.wrapperClassName = 'draggable-header no-footer';</p>
<p>hs.preserveContent = false;</p>
<p>hs.align = 'center';</p>
<p>hs.transitions = ['expand', 'crossfade'];</p>
<p>hs.dimmingOpacity = 0.75;</p>
<p>hs.graphicsDir = 'highslide/graphics/';</p>
<p>&lt;/script&gt;&lt;/head&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p>7) Now find and replace these:</p>
<p>Find:</p>
<blockquote><p><code>title="<span style="color: #ff0000;">pagename_files</span>/<span style="color: #ff0000;">flashfile.swf</span>"&gt;</code></p>
</blockquote>
<p>Replace with:</p>
<blockquote><p><code>title="Click to See Flash" onclick="return hs.htmlExpand(this, { objectType: 'swf', width:300, objectWidth: 300, objectHeight: 250, maincontentText: 'You need to upgrade your Flash player'  } )"&gt;</code></p>
</blockquote>
<p>8 ) Replace the items in red with your page name, flash file name, file width (twice), and height.<br />
 9) Save your page make sure it’s online and your set.  It looks pretty cool.</p>
<h2><a name="highslide_iframes"></a>Highslide with iFrames:</h2>
<p>Again I’m going to go through this one fast assuming you’ve gone through the image one already. So I’m just going to give you the quick steps:</p>
<ol>
<li>Create or Find your webpage that you’ll be iFraming in the highslide zoomer and put it online.</li>
<li>Make or create an image or button or text that will pull up this iFrame when user clicks on it and make it a hyperlink in the inspector to “An External Page” and type in the full address of the page (example http:www.iwebunlimited.com/iwebtips/iwebtips.html)</li>
<li>Publish site</li>
<li>Drop “highslide” folder (downloaded from above) in published site folder</li>
<li>Open html file with html editor and find and replace the following code:</li>
</ol>
<p>Find:</p>
<blockquote><p><code>&lt;/head&gt;</code></p>
</blockquote>
<p>Replace with:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;script type="text/javascript" src="highslide/highslide-full.js"&gt;&lt;/script&gt;</p>
<p>&lt;link rel="stylesheet" type="text/css" href="highslide/highslide.css" /&gt;</p>
<p>&lt;script type="text/javascript"&gt;</p>
<p>hs.graphicsDir = 'highslide/graphics/';</p>
<p>hs.outlineType = 'rounded-white';</p>
<p>hs.wrapperClassName = 'draggable-header no-footer';</p>
<p>hs.useBox = false;</p>
<p>hs.width = 600;</p>
<p>hs.height = 450;</p>
<p>hs.align = 'center';</p>
<p>hs.transitions = ['expand', 'crossfade'];</p>
<p>hs.dimmingOpacity = 0.75;</p>
<p>&lt;/script&gt;&lt;/head&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p>6) Then find the following code and replace it:</p>
<p>Find:</p>
<blockquote><p><code>title="<span style="color: #ff0000;">http://www.yourlinkyouadded.com</span>"&gt;</code></p>
</blockquote>
<p>Replace with:</p>
<blockquote><p><code>title="Click to Enlarge" onclick="return hs.htmlExpand(this, { objectType: 'iframe' } )"&gt;</code></p>
</blockquote>
<p>7) Replace what’s in red with the size your want the highslide to be and the page you linked to. Save online and your set.</p>
<p><strong>Note:</strong> If you have a page that has all of these items <strong>images, flash, and iFrames</strong>.  Use this code to replace in the &lt;head&gt; tags as the first thing you replace</p>
<p>Find:</p>
<blockquote><p><code>&lt;/head&gt;</code></p>
</blockquote>
<p>Replace with:</p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;script type="text/javascript" src="highslide/highslide-full.js"&gt;&lt;/script&gt;</p>
<p>&lt;script type="text/javascript" src="highslide/swfobject.js"&gt;&lt;/script&gt;</p>
<p>&lt;link rel="stylesheet" type="text/css" href="highslide/highslide.css" /&gt;</p>
<p>&lt;script type="text/javascript"&gt;</p>
<p>hs.outlineType = 'rounded-white';</p>
<p>hs.wrapperClassName = 'draggable-header no-footer';</p>
<p>hs.preserveContent = false;</p>
<p>hs.align = 'center';</p>
<p>hs.transitions = ['expand', 'crossfade'];</p>
<p>hs.dimmingOpacity = 0.75;</p>
<p>hs.useBox = false;</p>
<p>hs.width = 600;</p>
<p>hs.height = 450;</p>
<p>hs.graphicsDir = 'highslide/graphics/';</p>
<p>&lt;/script&gt;&lt;/head&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p>Then replace the second one’s with the ones above in their sections with their links.</p>
<p>It makes for a pretty neat effect.  Hope you find it helpful and if your not very comfortable using external editors, just take it slow, be very careful of your code and if you mess up, no big deal, just republish from iWeb and it’ll be brand new again to try again.</p>
<p><a href="#top">Back to Top</a></p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-14-highslide-js-in-iweb/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #13 – Rollovers in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-13-rollovers-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-13-rollovers-in-iweb/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 22:02:15 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[Rollovers]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=137</guid>
		<description><![CDATA[It&#8217;s always fun to add some user interaction to your website and currently the only rollover like interaction iWeb gives us is text rollovers as links.  Well this post is to show you how to get image rollovers on your iWebsites.  Here we go:


See Demo

Step 1) Make 2 graphics. One that is the up/normal state, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/02/rollovers.jpg"><img class="alignleft size-full wp-image-338" title="rollovers" src="http://iwebunlimited.com/wp-content/uploads/2009/02/rollovers.jpg" alt="Rollovers in iWeb" width="249" height="181" /></a>It&#8217;s always fun to add some user interaction to your website and currently the only rollover like interaction iWeb gives us is text rollovers as links.  Well this post is to show you how to get image rollovers on your iWebsites.  Here we go:</p>
<p><span id="more-137"></span></p>
<blockquote>
<h4><a onclick="window.open('http://www.iwebunlimited.com/examples/rollovers.html','Rollovers in iWeb Example','width=810,height=740,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-370)+'');return false;" href="http://www.iwebunlimited.com/examples/rollovers.html" target="_blank">See Demo</a></h4>
</blockquote>
<p><strong>Step 1)</strong> Make 2 graphics. One that is the up/normal state, or what you want to be up when the users mouse is not over the image.  Then make the other graphic the rollover state or what the graphic will look like when you roll the mouse over it.</p>
<p><strong>Step 2)</strong> Size those 2 graphics as small as you can get them without losing quality.  Photoshops save for web features works good for this, but you can get this effect just as easy by opening it with Preview and saving as jpeg and adjusting the quality.</p>
<p><strong>Step 3)</strong> Put those 2 graphics on your server.  You can use the iDisk with MobileMe or your own server.  Just make a folder somewhere on the server perhaps call it “rollover_images” or something like that.  If your putting it on MobileMe make the folder in this location: iDisk/Web/Sites/rollover_images . Then the URL to the images will look something like this: For MobileMe—http://web.me.com/username/rollover_images/rollover.jpg or if you using your own host it would be —http://www.yoursite.com/rollover_images/rollover.jpg in which you would put the folder right on the root level of your public server.</p>
<p><strong>Step 4)</strong> Then simply copy the code below and paste into a snippet.</p>
<blockquote><p><code>&lt;script type="text/javascript"&gt; function mouseOver()<br />
 {document.rollover_one.src ="<span style="color: #ff0000;">http://web.me.com/username/rollover_images/rollover.jpg</span>"}<br />
 function mouseOut()<br />
 {document.rollover_one.src ="<span style="color: #ff0000;">http://web.me.com/username/rollover_images/normal.jpg</span>"}<br />
 &lt;/script&gt;<br />
 &lt;a href="<span style="color: #ff0000;">http://www.your_button_link_here.com</span>"&gt;<br />
 &lt;img alt="<span style="color: #ff0000;">Link Title</span>" src="<span style="color: #ff0000;">http://web.me.com/username/rollover_images/normal.jpg</span>" name="rollover_one" width="<span style="color: #ff0000;">175</span>" height="<span style="color: #ff0000;">175</span>" onmouseover="mouseOver()" onmouseout="mouseOut()" style="border: none;"/&gt;&lt;/a&gt;</code></p>
</blockquote>
<p><strong>Step 5)</strong> Replace what’s in red with your URL’s to your images and image sizes and put in what link you want it to go to by replacing the iwebunlimited link and your set.</p>
<p><strong>Note:</strong> If you&#8217;d like the link to open in a new page replace the link</p>
<blockquote><p><code>&lt;a href="http://www.iwebunlimited.com"&gt; </code></p>
</blockquote>
<p>with</p>
<blockquote><p><code>&lt;a href="http://www.<span style="color: #ff0000;">iwebunlimited</span>.com" target="_blank"&gt;</code></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-13-rollovers-in-iweb/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #12 &#8211; Music (MP3s) in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-12-music-mp3s-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-12-music-mp3s-in-iweb/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 21:09:21 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Google Player]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[mp3s]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[Odeo Player]]></category>
		<category><![CDATA[Premium Beat Player]]></category>
		<category><![CDATA[Yahoo Player]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=132</guid>
		<description><![CDATA[Ever want to have a simple song or audio file play on your website?  Well this tip is all about playing audio files in iWeb.  There are many great audio players out there that can help us get mp3s streaming to our iWebsite.  Google, Yahoo, Odeo, Premium Beat all offer some great audio players. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/01/mp3s.jpg"><img class="alignleft size-full wp-image-352" title="mp3s" src="http://iwebunlimited.com/wp-content/uploads/2009/01/mp3s.jpg" alt="MP3's in iWeb" width="312" height="133" /></a><a name="top"></a>Ever want to have a simple song or audio file play on your website?  Well this tip is all about playing audio files in iWeb.  There are many great audio players out there that can help us get mp3s streaming to our iWebsite.  Google, Yahoo, Odeo, Premium Beat all offer some great audio players.  Some that are single players, some that are multiplayers, some that are playlist players.  So here&#8217;s a great little tip that will help you get them all on your website whether it be for entertainment, background music for your site, a song or sound file you&#8217;d like to share, etc.  So here&#8217;s how to do it:</p>
<p><span id="more-132"></span></p>
<p><strong><a onclick="window.open('http://www.iwebunlimited.com/examples/mp3s_in_iweb.html','MP3s in iWeb Example','width=810,height=780,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-390)+'');return false;" href="http://www.iwebunlimited.com/examples/mp3s_in_iweb.html">View Demo »</a></strong></p>
<p><a href="#iweb_player">iWeb Player</a> |   <a href="#google_player">Google Player </a> |   <a href="#yahoo_player">Yahoo Player</a> |   <a href="#odeo_player">Odeo Player</a> |   <a href="#premium_beat">Premium Beat Players</a></p>
<h2><a name="iweb_player"></a>Using the Built in QuickTime to play Audio:</h2>
<p>First of all iWeb does have built in support to play music or any audio file by default by simply dragging in an audio file.  By doing that you get a QuickTime looking playbar, they even give you the option to add a picture (album art) to the player if you choose.  It looks like this:</p>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/01/iweb_audio.jpg"><img class="size-full wp-image-353 alignleft" title="iweb_audio" src="http://iwebunlimited.com/wp-content/uploads/2009/01/iweb_audio.jpg" alt="" width="206" height="219" /></a></p>
<p>But if you don’t drag an image  into the box, it will disappear leaving only the playback controls, which is sometimes all you want.  iWeb also gives you some options for music in the QuickTime inspector.  It gives you the option to 1) Autoplay 2) Loop Song 3) Show controller or not.</p>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2009/01/show_controller.jpg"><img class="alignnone size-full wp-image-354" title="show_controller" src="http://iwebunlimited.com/wp-content/uploads/2009/01/show_controller.jpg" alt="" width="166" height="69" /></a></p>
<p>I know some of you have asked about playing music on your site for just background music, well this is one way you can do it.  Simply drag a song in, have it auto play upon opening, and leave the controller so people can stop the music if they’d like, presto your set.</p>
<h2><a name="google_player"></a>Google Player:</h2>
<p>If you want a playback player there are many options and Google is one of those choices.  The thing I like about this player is that it’s simple and it has no branding on it.</p>
<p>To use this MP3 player on your website or blog, copy-paste the following code into an html snippet and replace the MP3_FILE_URL with the link to your MP3 file.</p>
<blockquote><p><code>&lt;embed type="application/x-shockwave-flash" src="http://www.google.com/reader/ui/3247397568-audio-player.swf?audioUrl=<span style="color: #ff0000;">MP3_FILE_URL</span>" width="<span style="color: #ff0000;">400</span>" height="<span style="color: #ff0000;">27</span>" allowscriptaccess="always" quality="best" bgcolor="#<span style="color: #ff0000;">ffffff</span>" wmode="window" flashvars="playerMode=embedded" /&gt;</code></p>
</blockquote>
<p>In other words, find your MP3 you want to stream to your site, and throw it on your iDisk or on your own server.  If your doing it on your iDisk go to iDisk&gt;Web&gt;Sites&gt;Then make a folder here called “mp3” and put your MP3s in there.  Then your link to replace in the red will be <span style="color: #ff0000;">http://web.me.com/username/mp3/mymp3file.mp3</span> and that’s it. If your using your own server, it would be similar.  Make a “mp3” folder on your server, then drop your MP3s in to that folder and your link will be <span style="color: #ff0000;">http://www.mysite.com/mp3/mymp3file.mp3</span></p>
<p><strong>Note:</strong> I would recommend naming your mp3 files with no spaces to make the URL easier.</p>
<p><strong>Advanced Tip:</strong> You’ll notice that the Google player is coming from googles site.  If you don’t want to rely on Googles site to provide the player.  You can download it <a title="Google Player" href="http://www.iwebunlimited.com/downloads/audioplayers/googleplayer.zip">Here »</a> (courtesy of me ;-) Your Welcome).  Then just put that player in the same mp3 folder you made and change the google link in the code to link to your downloaded player and your set!</p>
<h2><a name="yahoo_player"></a>Yahoo Player:</h2>
<p>The new Yahoo player works a bit different, put the mp3 files in the mp3 folder on your server (like we did with the Google Player) and add this code to an HTML snippet and replace the link in red.</p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote>
<div id="_mcePaste">&lt;font face=<span style="color: #ff0000;">verdana</span>&gt;</div>
<div id="_mcePaste">&lt;a href="<span style="color: #ff0000;">http://www.yoursite.com/mp3/song1.mp3</span>"&gt;<span style="color: #ff0000;">Song 1</span>&lt;/a&gt;</div>
<div id="_mcePaste">&lt;a href="<span style="color: #ff0000;">http://www.yoursite.com/mp3/song2.mp3</span>"&gt;<span style="color: #ff0000;">Song 2</span>&lt;/a&gt;</div>
<div id="_mcePaste">&lt;a href="<span style="color: #ff0000;">http://www.yoursite.com/mp3/song3.mp3</span>"&gt;<span style="color: #ff0000;">Song 3</span>&lt;/a&gt;</div>
<div id="_mcePaste">&lt;/font&gt;</div>
<div id="_mcePaste">&lt;script type="text/javascript" src="http://mediaplayer.yahoo.com/js"&gt;&lt;/script&gt;</div>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><strong>Note:</strong> You can resize the widget how you&#8217;d like so that they would be in a column or a row.  Has a very Mobile iTunes Store feel to the player.</p>
<h2><a name="odeo_player"></a>Odeo Player:</h2>
<p>Same idea as before.  Add code to a snippet and replace the red with the link to your mp3 URL.</p>
<blockquote><p><code>&lt;embed type="application/x-shockwave-flash" src="http://www.odeo.com/flash/audio_player_standard_gray.swf" width="<span style="color: #ff0000;">400</span>" height="<span style="color: #ff0000;">52</span>" allowScriptAccess="always" wmode="transparent" flashvars="audio_duration=DURATION&amp;external_url=<span style="color: #ff0000;">MP3_FILE_URL</span>" /&gt;</code></p>
</blockquote>
<p><strong>Note:</strong> This player can be downloaded to put on your own server so you don’t have to rely on Odeo’s server.  Here’s the player to <a title="dowload odeo player" href="http://www.iwebunlimited.com/downloads/audioplayers/odeoplayer.zip">download</a> and put on your own server, then just change the odeo link in the code to your own server linking to the odeaplayer.swf</p>
<h2><a name="premium_beat"></a>Premium Beat Players:</h2>
<p>These players work the same way, but you’ll do one extra step.  This one you have to have the player on your own server.  So you’ll first download the player (provided below), then put the player on your server/iDisk in “mp3” folder or perhaps even make one more folder in the mp3 folder just for these players, paste code into html snippet, change links to your player .swf, .js. &amp; .mp3 files and your set.  Here are the players</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<ul>
<li><span style="font-weight: normal;"><strong>Mini Player</strong>—<a title="Premium Mini Player" href="http://www.iwebunlimited.com/downloads/audioplayers/playermini.zip">Download Player »</a></span></li>
</ul>
<p>HTML Snippet Code:</p>
<p><strong> </strong></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p><span style="font-weight: normal;">&lt;script type="text/javascript" src="<span style="color: #ff0000;">http://web.me.com/username/mp3/playermini/swfobject.js</span>"&gt;&lt;/script&gt;</span><span style="white-space: pre;"><span style="font-weight: normal;"> </span></span></p>
<p><span style="font-weight: normal;">&lt;div id="flashPlayer"&gt;</span></p>
<p><span style="font-weight: normal;"> Text will be replaced.</span></p>
<p><span style="font-weight: normal;">&lt;/div&gt;</span></p>
<p><span style="font-weight: normal;">&lt;script type="text/javascript"&gt;</span></p>
<p><span style="font-weight: normal;"> var so = new SWFObject("<span style="color: #ff0000;">http://web.me.com/usernmae/mp3/playermini/playerMini.swf</span>", "mymovie", "75", "30", "7", "#FFFFFF");</span></p>
<p><span style="font-weight: normal;"> so.addVariable("autoPlay", "<span style="color: #ff0000;">no</span>");</span></p>
<p><span style="font-weight: normal;"> so.addVariable("soundPath", "<span style="color: #ff0000;">http://web.me.com/username/mp3/mymp3file.mp3</span>");</span></p>
<p><span style="font-weight: normal;"> so.write("flashPlayer");</span></p>
<p><span style="font-weight: normal;">&lt;/script&gt;</span></p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><strong>Note:</strong> If your using your own server the links will look like this instead.</p>
<p>http://www.mysite.com/mp3/playermini/swfobject.js</p>
<p>http://www.mysite.com/mp3/playermini/playermini.swf</p>
<p>http://www.mysite.com/mp3/mymp3file.mp3</p>
<p>Also note that you don’t have to have the files in these exact locations you can put them where you want just make sure your URL points to the exact place.  You can also change the “no” to “yes” in the autoplay part of the code.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<ul>
<li><span style="font-weight: normal;"><strong>Single Player</strong>—<a title="Premium Beat Single Player" href="http://www.iwebunlimited.com/downloads/audioplayers/singleplayer.zip">Download Player »</a></span></li>
</ul>
<p>HTML Snippet Code:</p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;script type="text/javascript" src="<span style="color: #ff0000;">http://web.me.com/myusername/mp3/playersingle/swfobject.js</span>"&gt;&lt;/script&gt;</p>
<p>&lt;div id="flashPlayer"&gt;</p>
<p>This text will be replaced by the flash music player.</p>
<p>&lt;/div&gt;</p>
<p>&lt;script type="text/javascript"&gt;</p>
<p>var so = new SWFObject("<span style="color: #ff0000;">http://web.me.com/myusername/mp3/playersingle/playerSingle.swf</span>", "mymovie", "192", "67", "7", "#FFFFFF");</p>
<p>so.addVariable("autoPlay", "<span style="color: #ff0000;">no</span>");</p>
<p>so.addVariable("soundPath", "<span style="color: #ff0000;">http://web.me.com/myusername/mp3/audio.mp3</span>");</p>
<p>so.write("flashPlayer");</p>
<p>&lt;/script&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<ul>
<li><strong>MultiMenu Player</strong>—<a title="Premium Beat MultiMenu Player" href="http://www.iwebunlimited.com/downloads/audioplayers/multimenuplayer.zip">Download Player »</a></li>
</ul>
<p>HTML Snippet Code:</p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;script type="text/javascript" src="<span style="color: #ff0000;">http://web.me.com/yourusername/mp3/playermultimenu/swfobject.js</span>"&gt;&lt;/script&gt;</p>
<p>&lt;div id="flashPlayer"&gt;</p>
<p>This text will be replaced by the flash music player.</p>
<p>&lt;/div&gt;</p>
<p>&lt;script type="text/javascript"&gt;</p>
<p>var so = new SWFObject("<span style="color: #ff0000;">http://web.me.com/yourusername/mp3/playermultimenu/playerMultipleList.swf</span>", "mymovie", "295", "200", "7", "#FFFFFF");</p>
<p>so.addVariable("autoPlay","<span style="color: #ff0000;">no</span>")</p>
<p>so.addVariable("playlistPath","<span style="color: #ff0000;">http://web.me.com/yourusername/mp3/playermultimenu/playlist.xml</span>")</p>
<p>so.write("flashPlayer");</p>
<p>&lt;/script&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>This one works pretty much the same, but the big difference is that you tell the player where the mp3 files are by the .xml file.  So in the download you’ll see an .xml file, open in up with an html editor (Text Edit will do), I prefer Coda myself and just change the path to your mp3 file and change the name.  Here’s an example below.</p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;?xml version="1.0" encoding="UTF-8"?&gt;</p>
<p>&lt;xml&gt;</p>
<p>&lt;track&gt;</p>
<p>&lt;path&gt;<span style="color: #ff0000;">http://web.me.com/yourusername/mp3/audio.mp3</span>&lt;/path&gt;</p>
<p>&lt;title&gt;<span style="color: #ff0000;">Track 1 - Od to Joy</span>&lt;/title&gt;</p>
<p>&lt;/track&gt;</p>
<p>&lt;track&gt;</p>
<p>&lt;path&gt;<span style="color: #ff0000;">http://web.me.com/yourusername/mp3/audio2.mp3</span>&lt;/path&gt;</p>
<p>&lt;title&gt;<span style="color: #ff0000;">Track 2 - Fluffy Flutes</span>&lt;/title&gt;</p>
<p>&lt;/track&gt;</p>
<p>&lt;track&gt;</p>
<p>&lt;path&gt;<span style="color: #ff0000;">http://web.me.com/yourusername/mp3/audio3.mp3</span>&lt;/path&gt;</p>
<p>&lt;title&gt;<span style="color: #ff0000;">Track 3 - Smooth Piano</span>&lt;/title&gt;</p>
<p>&lt;/track&gt;</p>
<p>&lt;/xml&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<ul>
<li><strong>Multi Player (Playlist Player)</strong>—<a title="Premium Beat Multi Player" href="http://www.iwebunlimited.com/downloads/audioplayers/multiplayer.zip">Download Player »</a></li>
</ul>
<p>HTML Snippet Code:</p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></code></p>
<p><code></p>
<blockquote><p>&lt;script type="text/javascript" src="<span style="color: #ff0000;">http://web.me.com/yourusername/mp3/playermultiple/swfobject.js</span>"&gt;&lt;/script&gt;</p>
<p>&lt;div id="flashPlayer"&gt;</p>
<p>This text will be replaced by the flash music player.</p>
<p>&lt;/div&gt;</p>
<p>&lt;script type="text/javascript"&gt;</p>
<p>var so = new SWFObject("<span style="color: #ff0000;">http://web.me.com/yourusername/mp3/playermultiple/playerMultiple.swf</span>", "mymovie", "192", "95", "7", "#FFFFFF");</p>
<p>so.addVariable("overColor","#<span style="color: #ff0000;">660000</span>")</p>
<p>so.addVariable("autoPlay","<span style="color: #ff0000;">no</span>")</p>
<p>so.addVariable("playlistPath","<span style="color: #ff0000;">http://web.me.com/yourusername/mp3/playermultiple/playlist.xml</span>")</p>
<p>so.write("flashPlayer");</p>
<p>&lt;/script&gt;</p>
<p>&lt;/script&gt;</p>
</blockquote>
<p></code></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>This one is the same as the multi-menu player where you will have to edit the xml file to point to your mp3s.  Again open up the .xml file in an html editor and change the path of the mp3 files and titles.  Save that, upload it to server, make sure code is pointing to the right spot and your set!</p>
<p>Again just to make clear, if your using your own server your link won’t be from the iDisk it will look like this:</p>
<p>http://www.mysite.com/mp3/playername/swfobject.js</p>
<p>http://www.mysite.com/mp3/playername/playermini.swf</p>
<p>http://www.mysite.com/mp3/playername/player.xml</p>
<p>http://www.mysite.com/mp3/mymp3file.mp3</p>
<p>Hopefully that’s all not to confusing.  It’s kindof fun to put music or audio files on your webpage and hopefully this gives you some great options that you can do that easily.  Remember not to put any mp3’s that are copyrighted and owned by another artist (there now I’m covered ;-))</p>
<p><a href="#top">Back to top</a></p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-12-music-mp3s-in-iweb/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #11 &#8211; Polls in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-11-polls-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-11-polls-in-iweb/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 20:35:55 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[PollDaddy]]></category>
		<category><![CDATA[Polls]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=128</guid>
		<description><![CDATA[Ever wanted to put a poll of some sort on your website?  It’s actually quite easier than you may think.  The key to getting a great looking poll on your site is the 3rd party service Poll Daddy at PollDaddy.com.  It&#8217;s very customizable, has many features to play with, it&#8217;s super easy, and it&#8217;s free! [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2008/12/polls_in_iweb.jpg"><img class="alignleft size-full wp-image-360" title="polls_in_iweb" src="http://iwebunlimited.com/wp-content/uploads/2008/12/polls_in_iweb.jpg" alt="Polls in iWeb" width="218" height="158" /></a>Ever wanted to put a poll of some sort on your website?  It’s actually quite easier than you may think.  The key to getting a great looking poll on your site is the 3rd party service Poll Daddy at PollDaddy.com.  It&#8217;s very customizable, has many features to play with, it&#8217;s super easy, and it&#8217;s free!  Here&#8217;s how:</p>
<p><span id="more-128"></span></p>
<p><strong>Step 1:</strong><br />
 Go to <a title="Visit PollDaddy to create polls in iWeb" href="http://www.polldaddy.com" target="_blank">PollDaddy.com</a> and create a <a title="Sign up for a free PollDaddy account" href="http://www.polldaddy.com/signup/" target="_blank">free account</a>,</p>
<p><strong>Step 2:</strong><br />
 hit create poll and choose your questions and your answers for your poll.</p>
<p><strong>Step 3:</strong><br />
 Adjust features to be on your poll and change the look and feel, then save.</p>
<p><strong>Step 4:</strong><br />
 You’ll then get some code to copy, jump over to iWeb and paste it into an html snippet.</p>
<p>That’s it.  It has many features that I’d recommend checking into while your logged in.</p>
<p>Really that’s it! Go make some fun Polls for your website.</p>
<blockquote><p><a title="See PollDaddy in iWeb" onclick="window.open('http://www.iwebunlimited.com/examples/polldaddy.html','Polls in iWeb Example','width=810,height=740,left='+(screen.availWidth/2-405)+',top='+(screen.availHeight/2-370)+'');return false;" href="http://www.iwebunlimited.com/examples/polldaddy.html" target="_blank">Here&#8217;s an example I&#8217;ve made from PollDaddy working in iWeb »</a></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-11-polls-in-iweb/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #10 &#8211; Favicons with iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-10-favicons-with-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-10-favicons-with-iweb/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 20:27:38 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Favicons]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Post Publish]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=119</guid>
		<description><![CDATA[
How to get favicons in iWeb.  First off, lets answer the question, ‘What is a favicon?  A favicon (short for favorites icon), also known as a website icon, shortcut icon, url icon, or bookmark icon. It is an icon associated with a particular website or webpage. A web designer can create such an icon and [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_120" class="wp-caption alignleft" style="width: 248px"><a href="http://wp.me/pKE8E-1V"><img class="size-full wp-image-120  " title="Favicons in iWeb" src="http://iwebunlimited.com/wp-content/uploads/2010/01/droppedimage_1.jpg" alt="Favicons in iWeb" width="238" height="102" /></a><p class="wp-caption-text">Favicons in iWeb</p></div>
<p><br class="spacer_" /></p>
<p>How to get favicons in iWeb.  First off, lets answer the question, ‘What is a favicon?  A favicon (short for favorites icon), also known as a website icon, shortcut icon, url icon, or bookmark icon. It is an icon associated with a particular website or webpage. A web designer can create such an icon and install it into a website (or webpage) by several means, and most graphical web browsers will then make use of it. Browsers that provide favicon support typically display a page&#8217;s favicon in the browser&#8217;s URL bar and next to the page&#8217;s name in a list of bookmarks. Browsers that support a tabbed document interface typically show a page&#8217;s favicon next to the page&#8217;s title.</p>
<p><span id="more-119"></span></p>
<p>For example when you visit Apple.com this is what you see for the favicon.</p>
<div><a href="http://iwebunlimited.com/wp-content/uploads/2008/11/apple_favicon.jpg"><img class="size-full wp-image-368 alignnone" title="apple_favicon" src="http://iwebunlimited.com/wp-content/uploads/2008/11/apple_favicon.jpg" alt="" width="252" height="44" /></a></div>
<p>notice the Apple logo in the URL bar.  Wouldn’t you like to have a custom one of those on your website?  Well here is how.</p>
<h2>If using MobileMe to host your site:</h2>
<p>First off, favicons are usually as simple as dropping a file on the server and that’s it.  But mobileme is a bit different and makes it a bit harder, but it can be done.  If your hosting on mobileme I would probably recommend that you just forget about having a favicon, cause everytime you make an update to your site you’ll have to go through all these steps again, and you’ll tire of it.  But if your determined to get a favicon on your mobileme site.  Then here is how.</p>
<p><strong>Step 1) Create Graphic<br />
 <span style="font-weight: normal;">Create a graphic that is 32 x 32 that you want to be your favicon.  You could use Photoshop, Pixelmator, or even design a small something in iWeb and take a screenshot of it by pressing “command + shift + 4” and then drag the crosshairs over your graphic making it 32 x 32, then modify and enhance using Preview.  How ever you decide to make your favicon just make it a graphic that is 32 x 32 and looking the way you want.</span></strong></p>
<p><strong>Step 2) Save file as .jpeg<br />
 <span style="font-weight: normal;">Save it as a .jpeg file (If you used the screenshot method then open it in preview and save as a .jpeg).  Name your file “favicon.jpg”</span></strong></p>
<p><strong>Step 3) Change Extension to .ico<br />
 <span style="font-weight: normal;">Now, select your favicon.jpg file and simply change the extension to .ico by selecting the file and pressing return on your keyboard and change the .jpg to .ico.  You will then get a warning dialog that says this</span></strong></p>
<p><a href="http://iwebunlimited.com/wp-content/uploads/2008/11/change_jpg.png"><img class="alignnone size-full wp-image-369" title="change_jpg" src="http://iwebunlimited.com/wp-content/uploads/2008/11/change_jpg.png" alt="" width="524" height="238" /></a></p>
<p>Choose “Use .ico” and your favicon is ready.</p>
<p><strong>Step 4) Add favicon to server<br />
 <span style="font-weight: normal;">Put new favicon.ico file on your iDisk in the site you want the favicon to be.</span></strong></p>
<div><a href="http://iwebunlimited.com/wp-content/uploads/2008/11/add_to_server.png"><img class="alignnone size-full wp-image-370" title="add_to_server" src="http://iwebunlimited.com/wp-content/uploads/2008/11/add_to_server.png" alt="Add Favicon to server" width="579" height="315" /></a></div>
<p>Such as iDisk/Web/Sites/yoursitefolder/put favicon.ico file here.</p>
<p><strong>Step 5) Find and Open HTML files</strong><br />
 I wish that were it, But we have to add a bit of code on each page that you want the favicon to show up on.  So go to your iDisk/Web/Sites/and choose the site folder and find the .html page you want the favicon to show up on.  You now going to open that .html file in something that you can see the html with.  Power users may use something like Coda or Dreamweaver, if you don’t have those apps, it’s OK you can just use TextEdit that comes on every Mac.  But before you go opening the HTML file with TextEdit be sure you fix one thing in the TextEdit preferences under the Open and Save tab, check on “Ignore rich text commands in HTML files” checkbox.  Looks like this:</p>
<div><a href="http://iwebunlimited.com/wp-content/uploads/2008/11/ignore_rich_text.jpg"><img class="alignnone size-full wp-image-371" title="ignore_rich_text" src="http://iwebunlimited.com/wp-content/uploads/2008/11/ignore_rich_text.jpg" alt="" width="451" height="140" /></a></div>
<p>So now that you’ve done that choose your .html file on the iDisk and right-click or control click and choose “Edit With” and choose your html editor Coda, Dreamweaver, or TextEdit (there are many others too).</p>
<p><strong>Step 6) Add Code<br />
 <span style="font-weight: normal;">You will now see a bunch of HTML code your going to put the code below inbetween your &lt;head&gt; tags</span></strong></p>
<blockquote><p><code>&lt;link rel="shortcut icon" href="<span style="color: #ff0000;">http://web.me.com/username/sitefolder/favicon.ico</span>" /&gt;</code></p>
</blockquote>
<p>A good spot to paste this code might be right after your &lt;title&gt; tage of your site.  Just be sure to adjust the text in red to your own info.</p>
<p><strong>Step 7) Add to other pages<br />
 <span style="font-weight: normal;">Then go through and add that same code to each page you’d like to have the favicon appear.  Vist your site and you’ll see a new fancy custom favicon on your mobileme site.</span></strong></p>
<p><strong><span style="font-weight: normal;"><br />
 </span></strong></p>
<h3><strong>Notes:</strong></h3>
<p><strong> </strong><strong>Favicons don’t work with masked domain sites<br />
 <span style="font-weight: normal;">Favicons with MobileMe don’t work if your site is uses a masked domain.  Many people purchase a domain from say GoDaddy then foreward the domain to their mobileme site (which works great).  Many also decide to mask the domain so when forewarded it doesn’t show the web.me.com/username/site etc. it only shows the domain name.  But just know that if you do that your favicon will not show up.  So if you really want the favicon with your mobileme site you can’t mask it with a forwarded domain.</span></strong></p>
<p><strong>3rd Party Software<br />
 <span style="font-weight: normal;">Another Option to get a favicon without doing this manually by the above steps is to use some 3rd party software.  A few are iTweak, iWebExpander, iWeb Valet and they save you a bit of time to add a favicon.  You still have to do it each time your update/re-publish your site, but it could be helpful.  Check out my <a title="../../../../links.html" href="http://www.iwebunlimited.com/links.html">Links</a> page to check’em out.</span></strong></p>
<h2>If using your own server (i.e. GoDaddy hosting, iPower, etc):<br />
 <span style="font-weight: normal; font-size: 13px;">If your using another server other than mobileme it’s much easier and it’s a one time shot and your done.  It’s great.  Just follow all the above steps 1,2, and 3 above, then put the favicon.ico file on the root level of your server.  That’s it!  No code to add to the html or anything.  Most browsers will see the favicon.ico file on the root level of the server and it will load it in.  To get the file to the server I would recommend using Transmit which is a good FTP client that helps you get your favicon and iweb html files onto your server.   If you want to make sure all browsers are compatible with it you could add the same code that we did for the MobileMe setting:</span></h2>
<blockquote><p><code>&lt;link rel="shortcut icon" href="<span style="color: #ff0000;">http://www.mysite.com/favicon.ico</span>" /&gt;</code></p>
</blockquote>
<p>Put that code in the &lt;head&gt; section of your document and it’ll guarentee the favicon look, but again most modern browsers will recognize the favicon if you just put it on the root level of the server</p>
<p>Good luck with the favicons hope that helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-10-favicons-with-iweb/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #9 &#8211; Flash Video in iWeb (JW Player)</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-9-flash-video-in-iweb-jw-player/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-9-flash-video-in-iweb-jw-player/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 07:07:29 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Flash Video]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[jw player]]></category>
		<category><![CDATA[Non-Post Editing]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=110</guid>
		<description><![CDATA[I’ve had many request asking for a tip on how to get flash video into iWeb.  There are many different ways, but this tutorial is going to show you how to do it with Longtail Video’s JW Player, which is the number one open source media player.   The reason we use flash video is because [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwebunlimited.com/wp-content/uploads/2008/10/9-flv.png"><img class="alignleft size-full wp-image-246" title="9-flv" src="http://iwebunlimited.com/wp-content/uploads/2008/10/9-flv.png" alt="Flash Video in iWeb" width="150" height="150" /></a>I’ve had many request asking for a tip on how to get flash video into iWeb.  There are many different ways, but this tutorial is going to show you how to do it with Longtail Video’s JW Player, which is the number one open source media player.   The reason we use flash video is because it’s most compatible with all computers Mac’s and PCs and if your wanting to reach an audience like that it’s the best outlet next to QuickTime and Windows Media Video.  JW player is pretty flexible to customize, but we’re going to make this as simple as possible for you, so here we go:</p>
<blockquote><p><span id="more-110"></span><a title="See FLV in iWeb Example" href="http://www.iwebunlimited.com/examples/jwplayer.html" target="_blank">VIEW DEMO »</a></p>
</blockquote>
<p><strong>Step 1:</strong></p>
<p>Get video you desire to be a flash video and convert it to .flv format if it’s not already.</p>
<p>How do I convert my video to flash video you ask?</p>
<p>Well there are a number of different ways.  You are going to need one of these converter below:</p>
<ul>
<li>Adobe Media Converter (comes with CS4 or Flash Video Encoder from CS3)</li>
<li>Visual Hub (no longer in development, but if you got it while it was out, lucky you)</li>
<li>Aimersoft Video Converter ($65)</li>
<li>Perian QuickTime Plug-In + QuickTime Pro (Perian is free, QuickTime Pro is $29)</li>
<li>SoThink FLV Converter ($45)</li>
<li>FFMpegX (Free, but it requires some external file installations, they make it a little difficult to get, so here it is made easy by me.  Click <a title="FFMPEGX" href="http://www.iwebunlimited.com/downloads/ffmpegX.dmg">here</a> to download the app and <a title="FFMPEGX" href="http://www.iwebunlimited.com/downloads/ffmpegx_addons.zip">here</a> to download the extra files.  Your welcome ;-).  You can get instructions and more info on the software <a title="http://www.ffmpegx.com/" href="http://www.ffmpegx.com/">here</a>. After you open the .dmg file and drap application to your app folder and launch the app it will ask you to locate 3 files to add onto it.  They are the ones I provided.  I would recommend moving them to home folder/library/application support/ffmpegx (you’ll make this folder)/put 3 files here that were in the .zip folder here.  Then in the FFMpegX App you’ll know where to find the 3 files to install and they’ll be in a safe place where no one will touch them.  Hope that makes sense.  If it sounds to complex, just go buy one of the other converters above to make life easier for you.)</li>
</ul>
<p>Which ever converter you use, just convert that video file to a .flv format.  So in a nutshell, step one is convert video to .flv</p>
<p><strong>Step 2:</strong></p>
<p>Download the Longtail Video JW player by clicking <a title="1_9-_Flash_Video_in_iWeb_(using_Longtail_Video_JW_Player)_files/jw-player.zip" href="http://www.iwebunlimited.com/downloads/jw-player.zip">here»</a></p>
<p>You’ll be downloading a .zip file.  Double-click to open and inside you will see 2 files; one called “player.swf” and the other “swfobject.js”.  We will need these files to make this work.  So now we should have a total of three files</p>
<ol>
<li>Our .flv flash video we converted in step one</li>
<li>player.swf file</li>
<li>swfobject.js file</li>
</ol>
<p>We just need to do one more thing and we’re ready to roll</p>
<p><strong>Step 3:</strong></p>
<p>We’ll need to have an image that will sit there until the user decides to click play.  So just export out a frame of your video.</p>
<p>It might be easier to go back to your original video to export out the frame.  You can do this in QuickTime pro, iMovie, Final Cut, and many other apps.  Or if you want to make it simple, just play your video, stop it on a frame that you would like to be your hold image and do a screen shot.  You can do a screen shot by pressing “command + shift + 4” on your mac, then draw a box around the frame of video your holding on.  When you let go you’ll have a new .png still frame  on your desktop.  We are going to use this to be the video preview.</p>
<p>You should now have four files.  Fyew.  These are all the files we need and we are ready to roll.  So we should have these four files</p>
<ol>
<li>Flash Video (our .flv video we converted in step one)</li>
<li>“player.swf” (file we downloaded in step 2)</li>
<li>“swfobject.js” (file we downloaded in step3)</li>
<li>Preview image (file we created in this step.  You should name it preview.png)</li>
</ol>
<p>For file size reasons you may want to open that image you created in step 3 in the application “Preview” and choose file&gt;save as and save it as a jpeg image and bring the image quality down a bit so that the file loads quickly on the web.  Just a suggestion, if you have photoshop you could choose file&gt;save for web and size it down that way too.  You can use a .png file or a .jpeg file for this</p>
<div><strong>Step 4:</strong></div>
<p><img class="size-full wp-image-525 alignright" title="flash_video-finder" src="http://iwebunlimited.com/wp-content/uploads/2008/10/flash_video-finder.jpg" alt="" width="154" height="83" /></p>
<p>Now put those four files (.flv, .swf, .js,(.png or .jpeg)) onto the server, meaning your iDisk or your own ftp server.  If your using MobileMe I’d recommend making a folder called flash in this location: iDisk/Web/Sites/flash/put 4 files here. Just make sure you have these 4 files on your iDisk or server all all will be well.</p>
<p><strong>Step 5:</strong></p>
<p>Almost done.  All we need to do now is use the below code in an html snippet and replace the items in red with our own server path names.</p>
<p><br class="spacer_" /></p>
<p><code></p>
<blockquote>
<div id="_mcePaste">&lt;script type="text/javascript"</div>
<div id="_mcePaste">src="<span style="color: #ff0000;">http://web.me.com/yourusername/flash/swfobject.js</span>"&gt;&lt;/script&gt;</div>
<div id="_mcePaste">&lt;div id="player"&gt;This text will be replaced&lt;/div&gt;</div>
<div id="_mcePaste">&lt;script type="text/javascript"&gt;</div>
<div id="_mcePaste">var so = new SWFObject('<span style="color: #ff0000;">http://web.me.com/yourusername/flash/player.swf</span>','mpl','<span style="color: #ff0000;">720</span>','<span style="color: #ff0000;">480</span>','9');</div>
<div id="_mcePaste">so.addParam('allowscriptaccess','always');</div>
<div id="_mcePaste">so.addParam('allowfullscreen','true');</div>
<div id="_mcePaste">so.addParam('flashvars','&amp;file=<span style="color: #ff0000;">http://web.me.com/yourusername/flash/yourflashfile.flv</span>&amp;image=<span style="color: #ff0000;">http://web.me.com/yourusername/flash/yourimage.jpg</span>&amp;stretching=none');</div>
<div id="_mcePaste">so.write('player');</div>
<div id="_mcePaste">&lt;/script&gt;</div>
</blockquote>
<p></code></p>
<p>Just replace the items in red with the path that goes to your files on the iDisk replacing the appropriate names to point to the right place.  So be sure to put in your MobileMe username and your correct flash video name (yourflashvideo.flv) and your preview image (myimage.jpeg or myimage.png).  Also be sure to adjust the width and height of your video with the 2 numbers that are red in the code.  Once it’s all updated and you have all your links pointing to the right spot, hit “apply”.</p>
<p>Done!</p>
<p>We now have flash video in iWeb successfully! Yay!</p>
<p>Hope it wasn’t too complicated for ya.  Just do it a couple times and you’ll have it down in no time.  There is a video I made that will walk you through this too if you’d rather look at that.  Just got the Video Tutorials section and it’s all about flash video.</p>
<p>Note: You can use Longtail Video JW Player on your site for free as long as your not selling anything, have ads on your site, etc.  If you are doing those things you need to purchase a license.  It’s €30 (Euro) which is about $41 dollars.  You can purchase a license <a title="http://www.longtailvideo.com/players/order" href="http://www.longtailvideo.com/players/order" target="_blank">here»</a></p>
<p><strong>More Notes:</strong></p>
<p>If your wanting to customize the JW player, they have a nifty little embed code creator that you can tell it what paramaters you want to be set.  Click <a title="http://www.longtailvideo.com/support/jw-player-setup-wizard?example=1" href="http://www.longtailvideo.com/support/jw-player-setup-wizard?example=1" target="_blank">here</a> to go to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-9-flash-video-in-iweb-jw-player/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #8 &#8211; FancyZoom in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-8-fancyzoom-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-8-fancyzoom-in-iweb/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 23:00:35 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[FancyZoom]]></category>
		<category><![CDATA[Image Pop Up]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Model Box]]></category>
		<category><![CDATA[Post Publish]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=99</guid>
		<description><![CDATA[FancyZoom in iWeb, huh? What’s that.  Well there are a many websites these days that have that popular image zoom effect so that when you click on the image it animates the photo larger.  Well many have asked, how can I do that with iWeb?  Well here it is, this is the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_100" class="wp-caption alignleft" style="width: 241px"></p>
<div><a style="text-decoration: none;" href="http://wp.me/pKE8E-1B"><span style="color: #000000;"><a style="text-decoration: none;" href="http://wp.me/pKE8E-1B"><img class="size-full wp-image-100  " style="text-decoration: underline;" title="fancyzoom" src="http://iwebunlimited.com/wp-content/uploads/2009/12/fancyzoom.jpg" alt="" width="231" height="171" /></a></span></a></div>
<p><p class="wp-caption-text">FancyZoom in iWeb</p></div>
<p>FancyZoom in iWeb, huh? What’s that.  Well there are a many websites these days that have that popular image zoom effect so that when you click on the image it animates the photo larger.  Well many have asked, how can I do that with iWeb?  Well here it is, this is the tutorial to show you just how to do that.  Keep in mind this one is a bit more complex, but it can be done without getting your hands to dirty in code.</p>
<p><span id="more-99"></span><strong><a href="http://www.iwebunlimited.com/examples/fancyzoom/fancyzoom.html" target="_blank">VIEW DEMO »</a></strong></p>
<p><strong>Step 1:<br />
 <span style="font-weight: normal;">Drag a photo onto your iWeb page that you would like the photo fancy zoom to be on.</span></strong></p>
<p><strong>Step 2:<br />
 <span style="font-weight: normal;">Click on your photo, and head to the hyperlink inspector and make the image a hyperlink.  Where it says “Link To:” choose “A File” and find your same photo that you dragged onto the iWeb page.</span></strong></p>
<p><strong>Step 3:<br />
 <span style="font-weight: normal;">Now your done with the iWeb part.  Now publish, either to a folder or to MobileMe.</span></strong></p>
<p><strong>Step 4:<br />
 <span style="font-weight: normal;">We now need to do just 2 more things.  First download this .zip file. </span></strong></p>
<blockquote><p><a title="Download Fancyzoom for iWeb" href="http://www.iwebunlimited.com/downloads/fancy-zoom.zip">DOWNLOAD FANZYZOOM .ZIP FILE</a></p>
</blockquote>
<p><strong><span style="font-weight: normal;">Once downloaded, open the zip so you have your folder titled “fancy-zoom”.  You will see a bunch of files inside of that folder.  You’ll need to drag this folder into your site folder.   To move to site folder see options below:</span></strong></p>
<p><strong>If you published to a folder:<br />
 <span style="font-weight: normal;">Find the web export folder that you published to and you will see inside a index.html file and a folder which is the name you gave your site.  Drag the “fancy-zoom” folder into that site folder.</span></strong></p>
<p><strong>If you published to MobileMe:<br />
 <span style="font-weight: normal;">Open up a finder window and go to the iDisk.  You are then going to search for the “Web” folder, then go into the “Sites” folder, and in there you should see a folder named the name that you titled you site in iWeb.  Drag and drop this fancy-zoom folder into that folder (it may take a while depending on your internet connection).</span></strong></p>
<p><strong>Step 5:<br />
 <span style="font-weight: normal;">Almost done.  We now just have to alter some code.  Now don’t get scared quite yet, it’s not to bad. In that same folder that we dropped the fancy-zoom folder you will find a bunch of other files including that page that you want to have your fancy zoom on.  Find that html page that you added the photos to and we need to open it up with something that allows you to edit html code.  I personally use “Coda” by Panic Software, they even have some trial version so you can try it out or just use it till you get your fancy zoom going.  Anyway, you can also simply use TextEdit on your Mac.  So here’s what you going to do.  Find that .html file, right click, choose “open with” and choose your html editor, it will say TextEdit or Coda or whatever you choose.  You will then see all the great code that iWeb users typically try to stay away from, but we just need to alter 2 lines of code.  Both Coda and Text Edit have a Find and Replace feature.  So press command + F on your keyboard and you’ll get the find and replace window.  Simply find and replace these two things:</span></strong></p>
<p>1) Find:</p>
<blockquote><p><code>&lt;/head&gt;</code></p>
</blockquote>
<p>Replace:</p>
<blockquote><p><code>&lt;script src="fancy-zoom/FancyZoom.js" type="text/javascript"&gt;&lt;/script&gt;&lt;script src="fancy-zoom/FancyZoomHTML.js" type="text/javascript"&gt;&lt;/script&gt;&lt;/head&gt;</code></p>
</blockquote>
<p>2) Find:</p>
<blockquote><p><code>onload="onPageLoad();"</code></p>
</blockquote>
<p>Replace:</p>
<blockquote><p><code>onload="onPageLoad(); setupZoom();"</code></p>
</blockquote>
<p>Then just save (command + s, or File &gt; Save).</p>
<p>Done!</p>
<p>Now that wasn’t so bad eh?</p>
<p>From there you should have a fancy, shmancy zoom that will look great and it will also work on the iPhone.  Pretty cool, eh.</p>
<p>Note: You can only use FancyZoom on none commercial websites, if you would like to use FancyZoom on a commercial site you must purchase a license for $39 on <a href="http://www.cabel.name/2008/02/fancyzoom-10.html" target="_blank">Cabel’s Blog</a> (the creator of FancyZoom)</p>
<p><strong>More Notes:</strong></p>
<p>If you are looking to do other things with FancyZoom here are some tips:</p>
<p>• If you want to replace the Title below the photo then, do a search for href and find the title it’s using and change to what you want. Example title=”Add Your Title Here”</p>
<p>• If you want to get rid of the title entirely just Edit the FancyZoom.js file and on line 431, change the “visible” value to “invisible”</p>
<p>• If you want to add a border on the popup just add something like a 10px border on the image by adding the following at line after 63 in FancyZoomHTML.js: inImage1.style.border = &#8216;10px solid white&#8217;;</p>
<p>• FancyZoom will attach itself to any jpg, gif, png, bmp, or tiff link in your page.</p>
<p>• There is not a way to put anything else but photos into the fancy zoom, so no videos, flash, etc.  But I’m working on another tutorial to use another method so you can get video and flash in them, check back.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-8-fancyzoom-in-iweb/feed/</wfw:commentRss>
		<slash:comments>57</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #7 &#8211; MobileMe Web Gallery in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-7-mobileme-web-gallery-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-7-mobileme-web-gallery-in-iweb/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 22:35:37 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[MobileMe Gallery]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=92</guid>
		<description><![CDATA[We all love the MobileMe (.Mac) Web Gallery for sharing photos, uploading, downloading, etc. and it’s great how iWeb has the little integration with the gallery in the Web Widgets.
But all you get is a little tiny window of skimming photos that then takes you to the gallery in a new window.  So here [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_93" class="wp-caption alignleft" style="width: 242px"><a href="http://wp.me/pKE8E-1u"><img class="size-full wp-image-93 " title="web_gallery" src="http://iwebunlimited.com/wp-content/uploads/2009/12/web_gallery.jpg" alt="" width="232" height="171" /></a><p class="wp-caption-text">MobileMe Web Gallery in iWeb</p></div>
<p>We all love the MobileMe (.Mac) Web Gallery for sharing photos, uploading, downloading, etc. and it’s great how iWeb has the little integration with the gallery in the Web Widgets.</p>
<p>But all you get is a little tiny window of skimming photos that then takes you to the gallery in a new window.  So here is how you can get your entire gallery in iWeb so visitors won’t ever have to leave your iWeb site at all which will also let you decorate around your gallery.  Here’s how.</p>
<p><span id="more-92"></span></p>
<blockquote>
<h3><a title="See MobileMe Gallery in iWeb Example" href="http://www.iwebunlimited.com/examples/webgallery.html" target="_blank">VIEW DEMO »</a></h3>
</blockquote>
<p><strong>Step 1:<br />
<span style="font-weight: normal;">Choose an HTML snippet from the Web Widgets.</span></strong></p>
<p><strong>Step 2:<br />
<span style="font-weight: normal;">Paste this code below replacing the items in red with your own MobileMe (.Mac) name and the size you want it to be on your page.</span></strong></p>
<blockquote><p><code>&lt;iframe height="<span style="color: #ff0000;">600</span>" width="<span style="color: #ff0000;">800</span>" allowTransparency="true" frameborder="0" scrolling="<span style="color: #ff0000;">no</span>" style="border:none" src="<span style="color: #ff0000;">http://gallery.me.com/yourusername</span>"&gt;&lt;/iframe&gt;</code></p></blockquote>
<p><strong>Step 3:<br />
<span style="font-weight: normal;">Click “Apply” and resize and position the snippet till it fits well on your page and your set.</span></strong></p>
<p><strong>Sizing suggestions:<br />
<span style="font-weight: normal;">You’ll need to make your snippet at least 800px by 350px to get the scroll bar to show up (assuming you have enough published events and videos to make it scroll)</span></strong></p>
<p><strong>Other Options:<br />
<span style="font-weight: normal;">If you want to have a specific gallery to show up use this code below:</span></strong></p>
<blockquote><p><code>&lt;iframe height="<span style="color: #ff0000;">600</span>" width="<span style="color: #ff0000;">800</span>" allowTransparency="true" frameborder="0" scrolling="no" style="border:none" src="http://gallery.me.com/<span style="color: #ff0000;">membername</span>#<span style="color: #ff0000;">albumnumber</span>&amp;view=mosaic&amp;bgcolor=dkgrey"&gt;&lt;/iframe&gt;</code></p></blockquote>
<p>you can equally just copy and paste the URL for the gallery look and feel you want.  For example if you want the background of your gallery to be white in iWeb then visit your page online make the background white, then just copy the URL and paste it into the section in red below.</p>
<blockquote><p><code>&lt;iframe height="<span style="color: #ff0000;">600</span>" width="<span style="color: #ff0000;">800</span>" allowTransparency="true" frameborder="0" scrolling="no" style="border:none" src="<span style="color: #ff0000;">http://gallery.mac.com/membername#albumnumber&amp;view=mosaic&amp;bgcolor=dkgrey</span>"&gt;&lt;/iframe&gt;</code></p></blockquote>
<p>Good luck with it and have fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-7-mobileme-web-gallery-in-iweb/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #6 &#8211; Pop Up Windows in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/iweb-tip-6-pop-up-windows-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/iweb-tip-6-pop-up-windows-in-iweb/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 22:14:34 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Image Pop Up]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[pop-up windows]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=84</guid>
		<description><![CDATA[Opening certain small windows on a page can be very helpful and convenient.  As long as the content of your pop-up window is relative to your site, visitors don’t mind the pop-ups, it’s when it’s for something unrelated to your site, like an “ad” of some sort, that visitors don’t like them.


See Demo

Step 1:
Create [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_85" class="wp-caption alignleft" style="width: 241px"><a href="http://wp.me/pKE8E-1m"><img class="size-full wp-image-85 " title="popupwindows" src="http://iwebunlimited.com/wp-content/uploads/2009/12/popupwindows.jpg" alt="" width="231" height="171" /></a><p class="wp-caption-text">Pop Up Windows in iWeb</p></div>
<p>Opening certain small windows on a page can be very helpful and convenient.  As long as the content of your pop-up window is relative to your site, visitors don’t mind the pop-ups, it’s when it’s for something unrelated to your site, like an “ad” of some sort, that visitors don’t like them.</p>
<p><span id="more-84"></span></p>
<blockquote>
<h3><a title="Pop Ups Example" href="http://www.iwebunlimited.com/examples/popups.html" target="_blank">See Demo</a></h3>
</blockquote>
<p><strong>Step 1:</strong><br />
Create a new page page in iWeb that you want to be your pop-up window.  Usually it’s smaller so you might want to make your page size something like 400-500 width and 600 height.  You can change the sizes in the Page Inspector under Layout (take into account your headers and footers).</p>
<p><strong>Step 2:<br />
<span style="font-weight: normal;">Finish your design of how you’d like your pop-up to look and jump to the page where you want to button for the pop-up to be.  Get an HTML Snippet and paste this code into it. </span></strong></p>
<blockquote><p><code>&lt;script type="text/javascript"&gt;<br />
function open_win()<br />
{<br />
window.open("<span style="color: #ff0000;">http://web.mac.com/username/sitename/pagename.html</span>", "_blank", "toolbar=<span style="color: #ff0000;">no</span>,  location=<span style="color: #ff0000;">no</span>,  directories=<span style="color: #ff0000;">no</span>,  status=<span style="color: #ff0000;">no</span>,  menubar=<span style="color: #ff0000;">no</span>,  scrollbars=<span style="color: #ff0000;">no</span>,  resizable=<span style="color: #ff0000;">no</span>, copyhistory=<span style="color: #ff0000;">yes</span>, width=<span style="color: #ff0000;">490</span>, height=<span style="color: #ff0000;">600</span>") }<br />
&lt;/script&gt;<br />
&lt;form&gt;<br />
&lt;input type="button" value="<span style="color: #ff0000;">View Pop-up Window</span>" onclick="open_win()"&gt; &lt;/form&gt;</code></p></blockquote>
<p><strong>Step 3:<br />
<span style="font-weight: normal;">Change the items in <span style="color: #ff0000;">RED</span> and hit apply.</span></strong></p>
<p>You need to be sure that the URL is the exact location of your pop-up.  If your pop-up is within a blog, or a My Albums page there might be a few more folders you’ll have to type in for example:</p>
<p>http://web.me.com/username/sitename/myalbumpagename/pagename.html</p>
<p>From there just decide if you want scrollbars, and other things that say “no”, just change to “yes” if you want them.  Also change the red text at the bottom of the code to be what you want the button to read.</p>
<p><strong>Step 4:<br />
<span style="font-weight: normal;">Publish and your set.  Be sure to try it out before inviting anyone to view your site.</span></strong></p>
<p>Good luck with it and have fun.</p>
<p><strong>To use your own images:<br />
<span style="font-weight: normal;">If you’d rather have your own image for the button, put your button graphic (jpg, png, gif, etc) on your server somewhere and use this code:</span></strong></p>
<blockquote><p><code>&lt;A HREF="javascript:void(0)"onclick="window.open('<span style="color: #ff0000;">http://www.iwebunlimited.com</span>', 'Open Link', 'height=<span style="color: #ff0000;">640</span>, width=<span style="color: #ff0000;">500</span>, scrollbars=<span style="color: #ff0000;">no</span>')"&gt;&lt;img src="<span style="color: #ff0000;">http://www.yoursite.com/imagefolder/yourbutton.png</span>"style="border:none;" &gt;&lt;/a&gt;</code></p></blockquote>
<p><strong>To Use Text:<br />
<span style="font-weight: normal;">If you’d rather use text instead of a form button or your own button use this code:</span></strong></p>
<blockquote><p><code>&lt;A HREF="javascript:void(0)"onclick="window.open('<span style="color: #ff0000;">http://www.iwebunlimited.com/examples/popup.html</span>', 'Open Link', 'height=<span style="color: #ff0000;">600</span>, width=<span style="color: #ff0000;">500</span>, scrollbars=<span style="color: #ff0000;">no</span>')"&gt;<span style="color: #ff0000;">View Pop-up Window</span>&lt;/a&gt;</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/iweb-tip-6-pop-up-windows-in-iweb/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #5 &#8211; Forms in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/tip-5-forms-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/tip-5-forms-in-iweb/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 19:36:04 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[JotForm]]></category>
		<category><![CDATA[Non-Post Editing]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=73</guid>
		<description><![CDATA[This has been a big one for many people who ask “How do I get a form in iWeb?”
iWeb doesn’t have this feature built into the app yet, but through the HTML Snippets we can achieve this and we can achieve this very easily.  You might want a form for a contact form, a sign [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_74" class="wp-caption alignleft" style="width: 242px"><a href="http://wp.me/pKE8E-1b"><img class="size-full wp-image-74  " title="forms" src="http://iwebunlimited.com/wp-content/uploads/2009/12/forms.jpg" alt="" width="232" height="171" /></a><p class="wp-caption-text">Forms in iWeb</p></div>
<p>This has been a big one for many people who ask “How do I get a form in iWeb?”</p>
<p>iWeb doesn’t have this feature built into the app yet, but through the HTML Snippets we can achieve this and we can achieve this very easily.  You might want a form for a contact form, a sign up for our newsletter or email list, request an appointment form, get a quote form, email us form, etc.  Most all sites have a form on them now and so can you with iWeb, here’s how:</p>
<p><span id="more-73"></span></p>
<blockquote>
<h3><a href="http://www.iwebunlimited.com/examples/formsiniweb.html" target="_blank">See Demo</a></h3>
</blockquote>
<p><strong>Step 1:<br />
<span style="font-weight: normal;">Sign up for a free account with one of these free form builder sites: <a title="Go to JotForm.com" href="http://www.jotform.com" target="_blank">JotForm.com</a>,  <a title="Go to Wufoo.com" href="http://www.wufoo.com" target="_blank">Wufoo.com</a>, <a title="Go to Google Docs" href="http://docs.google.com" target="_blank">Google Docs</a>, <a title="Go to FormSpring.com" href="http://www.formspring.com" target="_blank">FormSpring.com</a>, <a title="Go to Icebrrg.com" href="http://www.icebrrg.com" target="_blank">Icebrrg.com</a>, or <a title="Go to Formsite.com" href="http://www.formsite.com/" target="_blank">Formsite.com</a></span></strong></p>
<p>Obviously there are many services that offer this functionality, so you can decide which one you like the best, but they all have the same basic idea to create the form then get the code and paste in an HTML Snippet.  I personally like JotForm the best, it’s (like others) totally free for most peoples needs and they have a paid account if you need a bit more monthly submission (like other sites).  I&#8217;ll be using JotForm to demonstrate this tutorial, but remember the other sites I listed have a similar functionality so if you find you like the others better, have at it.  Here&#8217;s how to do it with JotForm:</p>
<p>First you need to sign up by clicking the “Sign Up” button</p>
<p><strong>Step 2:<br />
<span style="font-weight: normal;">Start a new form by clicking the “My Forms” button at the top of the window and then you can hit the “New” button to start a new form.</span></strong></p>
<p><strong>Step 3:<br />
<span style="font-weight: normal;">Add form fields. You&#8217;ll see there are a plethora of types of form fields that you can use.  Like a text filed, a drop down menu, radio buttons, check boxes, file upload button, and many more.  They are all on the right hand side of the window and you just drag and drop them in whatever order you’d like.  The then customize the text name and the appropriate properties (also on right side, toward the bottom).  Once the form is complete.  Click on the properties button toward the top toolbar, and be sure that you have the form setup to go to your email address.  You can also change the font and background color here as well as other things (if you want the background transparent, simply type &#8220;transparent&#8221; in the color box instead of a color).</span></strong></p>
<p><strong>Step 4:<br />
<span style="font-weight: normal;">Simply click the “Source” button up top on that same toolbar.</span></strong></p>
<p>It will give you 2 option for putting the form onto your site.  We want option 1. Copy the code that is on the top and you will be pasting that into your iWeb HTML Snippet.</p>
<p><strong>Step 5:<br />
<span style="font-weight: normal;">Paste the code into an iWeb HTML Snippet and you are set.  Just resize your HTML Snippet accordingly, publish and your golden.</span></strong></p>
<p>Hope that helps and you can start to become more familiar with JotForm.com and make spectacular forms.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/tip-5-forms-in-iweb/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #4 &#8211; Transparent Flash in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/tip-4-transparent-flash-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/tip-4-transparent-flash-in-iweb/#comments</comments>
		<pubDate>Thu, 01 May 2008 19:18:52 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[swf files]]></category>
		<category><![CDATA[Transparent]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=65</guid>
		<description><![CDATA[This is much like the tutorial before on adding flash to iWeb, but sometimes you still want to use the background that you have in iWeb, or you want to use other graphics behind your flash file.  Well here is the solution to have the background of your flash (.swf) file transparent.
1) Create flash [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_66" class="wp-caption alignleft" style="width: 278px"><a href="http://wp.me/pKE8E-13"><img class="size-full wp-image-66" title="transparent flash" src="http://iwebunlimited.com/wp-content/uploads/2009/12/transparent-flash.jpg" alt="" width="268" height="138" /></a><p class="wp-caption-text">Transparent Flash in iWeb</p></div>
<p>This is much like the tutorial before on adding flash to iWeb, but sometimes you still want to use the background that you have in iWeb, or you want to use other graphics behind your flash file.  Well here is the solution to have the background of your flash (.swf) file transparent.<span id="more-65"></span></p>
<p><strong>1) </strong>Create flash .swf file</p>
<p><strong>2) </strong>Place swf file on server (like your iDisk or your own server).  If using your MobileMe I recommend making a folder called “flash” on your iDisk in this location: iDisk/Web/Sites/flash/myflashfile.swf.  Same if using your own server www.site.com/flash/file.swf</p>
<p><strong>3) </strong>Come to iWeb, choose HTML Snippet and paste this code:</p>
<blockquote><p><code>&lt;object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="<span style="color: #ff0000;">800</span>" height="<span style="color: #ff0000;">196</span>"&gt;&lt;param name="movie" value="<span style="color: #ff0000;">http://web.me.com/username/flash/myflashfile.swf</span>"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;param name="wmode" value="transparent" /&gt;&lt;param name="quality" value="High"&gt;&lt;embed src="<span style="color: #ff0000;">http://web.me.com/username/flash/myflashfile.swf</span>" wmode="transparent" pluginspage="http://www.adobe.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="<span style="color: #ff0000;">800</span>" height="<span style="color: #ff0000;">196</span>" allowScriptAccess="always"&gt;&lt;/object&gt;</code></p></blockquote>
<p><strong>4) </strong>Now just change the code in <strong><span style="color: #ff0000;">red</span></strong> to your own URL and flash width and height, and hit apply.</p>
<p><strong>5) </strong>You now have successfully put a flash file in your iWeb document and you will see the transparency behind it.</p>
<p>Note: if your using your own server and not MobileMe, just replace the URLs in red with your URL.  For example http://www.mysite.com/flash/myflashfile.swf</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/tip-4-transparent-flash-in-iweb/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #3 &#8211; Drop Down Navigation in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/tip-3-drop-down-navigation-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/tip-3-drop-down-navigation-in-iweb/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 01:31:35 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Drop Down Menus]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Non-Post Editing]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=49</guid>
		<description><![CDATA[

Drop Down Navigation in iWeb


Here’s a tip that will allow you to have a neat little drop down navigation menu in iWeb.  It might be handy for a site map, quick links, or even the main navigation of your site.  Here’s how:


See Demo »

This drop down will take the viewer to the link immediately on [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl class="wp-caption alignleft"><a href="http://wp.me/pKE8E-N"><img class="size-full wp-image-52 " title="dropdownnavigation" src="http://iwebunlimited.com/wp-content/uploads/2009/12/dropdownnavigation1.png" alt="" width="218" height="178" /></a></p>
<dd class="wp-caption-dd">Drop Down Navigation in iWeb</dd>
</dl>
</div>
<p>Here’s a tip that will allow you to have a neat little drop down navigation menu in iWeb.  It might be handy for a site map, quick links, or even the main navigation of your site.  Here’s how:</p>
<p><span id="more-49"></span></p>
<blockquote>
<h3><a title="Drop Down Menu Example" href="http://www.iwebunlimited.com/examples/dropdownmenu.html" target="_blank">See Demo »</a></h3>
</blockquote>
<p>This drop down will take the viewer to the link immediately on click.  Here&#8217;s how to do it:</p>
<p><strong>Step 1:</strong><br />
Simply paste the following code into an HTML Snippet</p>
<blockquote><p><code>&lt;form&gt;<br />
&lt;select id="menu" onchange="parent.window.location=this.value"&gt;<br />
&lt;option&gt;<span style="color: #ff0000;">--</span><span style="color: #ff0000;">Drop Down Menu in iWeb</span><span style="color: #ff0000;">--</span>&lt;/option&gt;<br />
&lt;option value="<span style="color: #ff0000;">http://www.iwebunlimited.com</span>"&gt;<span style="color: #ff0000;">iWebUnlimited.com</span>&lt;/option&gt;<br />
&lt;option value="<span style="color: #ff0000;">http://www.imaginatestudio.com</span>"&gt;<span style="color: #ff0000;">My Web Design Company</span>&lt;/option&gt;<br />
&lt;option value="<span style="color: #ff0000;">http://www.learn2mac.com</span>"&gt;<span style="color: #ff0000;">Learn2Mac.com</span>&lt;/option&gt;<br />
&lt;option value="<span style="color: #ff0000;">http://www.apple.com</span>"&gt;<span style="color: #ff0000;">Apple.com</span>&lt;/option&gt;<br />
&lt;option value="<span style="color: #ff0000;">http://www.apple.com/ilife/iweb</span>"&gt;<span style="color: #ff0000;">iWeb on Apple.com</span>&lt;/option&gt;<br />
&lt;option value="<span style="color: #ff0000;">http://www.google.com</span>"&gt;<span style="color: #ff0000;">Google</span>&lt;/option&gt;<br />
&lt;/select&gt;<br />
&lt;/form&gt;</code></p></blockquote>
<p><strong>Step 2:</strong></p>
<p>Replace the items in RED with your URLs and your link text and your set.  It’s that easy!</p>
<p><strong>Step 3:</strong></p>
<p>Have Fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/tip-3-drop-down-navigation-in-iweb/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #2 &#8211; iFrames in iWeb (Websites within Websites)</title>
		<link>http://iwebunlimited.com/iweb-tips/tip-2-iframes-in-iweb-websites-within-websites/</link>
		<comments>http://iwebunlimited.com/iweb-tips/tip-2-iframes-in-iweb-websites-within-websites/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 01:05:05 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[iFrames]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Non-Post Editing]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=40</guid>
		<description><![CDATA[This page lets you load another webpage (whether made in iWeb or not) into your site.  Very helpful if you have a page made somewhere else and want to put it directly onto your webpage.  Some things you might want to iFrame on your page are:

iCal published calendars
Aperture made photo galleries
Pages made in 3rd party [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-259 alignleft" title="iFrames in iWeb" src="http://iwebunlimited.com/wp-content/uploads/2008/03/2-iframes.png" alt="iFrames in iWeb" width="150" height="150" />This page lets you load another webpage (whether made in iWeb or not) into your site.  Very helpful if you have a page made somewhere else and want to put it directly onto your webpage.  Some things you might want to iFrame on your page are:</p>
<ul>
<li>iCal published calendars</li>
<li>Aperture made photo galleries</li>
<li>Pages made in 3rd party web software such as RapidWeaver, DreamWeaver, Sandvox, etc.</li>
<li>HTML Flash Galleries with XML files</li>
<li>and many more</li>
</ul>
<p>Here’s how to do it:</p>
<p><span id="more-40"></span><a class="linkmoreinner" title="iFrames in iWeb" onclick="window.open('http://www.iwebunlimited.com/examples/iframe.html',iFrames in iWeb Example','scrollbars=yes,width=830,height=735,left='+(screen.availWidth/2-415)+'');return false;" href="http://www.iwebunlimited.com/examples/iframe.html">See Demo »</a></p>
<h2>Full iFrame:</h2>
<p>1-Copy the code below by doing a triple click and then pressing (command + C)</p>
<blockquote><p><code> </code><code>&lt;IFRAME SRC = "<span style="color: #ff0000;">http://www.iwebunlimited.com</span>" WIDTH="<span style="color: #ff0000;">600</span>px" HEIGHT="<span style="color: #ff0000;">425</span>px" FRAMEBORDER="0" --if "0" no border, otherwise "1" with border MARGINWIDTH ="0px" MARGINHEIGHT="0px" SCROLLING="<span style="color: #ff0000;">auto</span>" --"no" no scrolling bar, "yes" show always, "auto" showed when need &gt; Your browser does not support IFRAME &lt;/IFRAME&gt;</code></p>
</blockquote>
<p>2-Paste into an HTML Snippet in iWeb</p>
<p>3-Replace the items highlighted in <span style="color: #ff0000;"><strong>red</strong></span> in the code.  First the website that you want to display in your page, second the width and height of the site.  If your not sure the width and height, just enter some values and keep changing it till your page fits.  You also have some option to have a frameborder, margin, and scrolling.  For scroll bars you can put in yes or auto (auto will auto detect if you page needs scroll bars or not).</p>
<p><br class="spacer_" /></p>
<h2>Partial iFrames:</h2>
<p>There are times when you only want to iFrame portions of a site.  This code will help you do that.</p>
<p>1- Copy the code below into an HTML Snippet:</p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code> </code></p>
<p><code></code></p>
<p><code></p>
<blockquote>
<div id="_mcePaste">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"</div>
<div id="_mcePaste">"http://www.w3.org/TR/html4/loose.dtd"&gt;</div>
<div id="_mcePaste">&lt;html&gt;</div>
<div id="_mcePaste">&lt;head&gt;</div>
<div id="_mcePaste">&lt;title&gt;&lt;/title&gt;</div>
<div id="_mcePaste">&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;</div>
<div id="_mcePaste">&lt;style type="text/css"&gt;</div>
<div id="_mcePaste">&lt;!--</div>
<div id="_mcePaste">#container{</div>
<div id="_mcePaste">width:<span style="color: #ff0000;">340</span>px;</div>
<div id="_mcePaste">height:<span style="color: #ff0000;">290</span>px;</div>
<div id="_mcePaste">border:0px solid #000;</div>
<div id="_mcePaste">overflow:hidden;</div>
<div id="_mcePaste">margin:auto;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">#container iframe {</div>
<div id="_mcePaste">width:<span style="color: #ff0000;">670</span>px;</div>
<div id="_mcePaste">height:<span style="color: #ff0000;">1200</span>px;</div>
<div id="_mcePaste">margin-left:<span style="color: #ff0000;">10</span>px;</div>
<div id="_mcePaste">margin-top:<span style="color: #ff0000;">-560</span>px;</div>
<div id="_mcePaste">border:0 solid;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">--&gt;</div>
<div id="_mcePaste">&lt;/style&gt;</div>
<div id="_mcePaste">&lt;/head&gt;</div>
<div id="_mcePaste">&lt;body&gt;</div>
<div id="_mcePaste">&lt;div id="container"&gt;</div>
<div id="_mcePaste">&lt;iframe src="<span style="color: #ff0000;">http://www.iwebunlimited.com</span>"; scrolling="<span style="color: #ff0000;">no</span>"&gt;&lt;/iframe&gt;</div>
<div id="_mcePaste">&lt;/div&gt;</div>
<div id="_mcePaste">&lt;/body&gt;</div>
<div id="_mcePaste">&lt;/html&gt;</div>
</blockquote>
<p></code></p>
<p>2- Then you need to modify the items in red to get the portion of the site you want to iFrame in iWeb.  What is going on here, is we have the container size, then we have the iFrame size, the we have where on the page the container is located using the left and top margins.</p>
<p>How I&#8217;d recommend going about this is to first put in the URL of the site your iFraming in the last item highlighted in red, then hit apply in the snippet.  Now we just need to modify the sizing to show the portion of the iFrame you want to show.</p>
<p>3-Let&#8217;s size your iFrame dimension. So to size your iFrame dimensions in correctly, first put in the width and height that the actual page your iFraming in is.  A quick way to do this is to visit your actual page your iFraming in and press Command + Shift + 4, you&#8217;ll then get a cross hair instead of your arrow for your mouse.  This is ordinarily how we take screenshots of items on our screen, but we are using it just to get the dimensions of our site.  You see when we drag our mouse in this mode (in Snow Leopard &amp; Leopard OS only) you&#8217;ll see dimensions in pixels of how large the area is.  Once you have your width and height dimensions by dragging your mouse in this mode hit the escape key on your keyboard before letting go of your mouse button, that way you won&#8217;t actually take a screenshot and we can just take the info that it gave us in the width and height pixels to enter into our iFrame snippet here.</p>
<p>4- Then adjust the container size.  Adjust the container width and height to be the size that you want to show of the iFramed site.</p>
<p>5-Then use the margin-left and margin-top to move the container around the iFramed page so that the container is located in the spot you want.</p>
<p>You should now have an iFrame that only shows the portion of a site that you want to be shown.  Yay!  Don&#8217;t you love little tricks like this in iWeb!  Hope that helped.</p>
<p>If this tip helped you, consider donating to the iWebUnlimited cause by clicking <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=10756022" target="_blank">here »</a></p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/tip-2-iframes-in-iweb-websites-within-websites/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>iWeb Tip #1 &#8211; Flash in iWeb</title>
		<link>http://iwebunlimited.com/iweb-tips/tip-1-flash-in-iweb/</link>
		<comments>http://iwebunlimited.com/iweb-tips/tip-1-flash-in-iweb/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 22:26:12 +0000</pubDate>
		<dc:creator>iJason</dc:creator>
				<category><![CDATA[iWeb Tips]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[iWeb]]></category>
		<category><![CDATA[Non-Post Editing]]></category>
		<category><![CDATA[swf files]]></category>

		<guid isPermaLink="false">http://iwebunlimited.wordpress.com/?p=4</guid>
		<description><![CDATA[This tutorial will show you how to get an Adobe Flash created file into iWeb.  Flash adds all sorts of interactivity to your site as well as fun animations.  It really makes your sites come to life. iWeb does not accept those files natively to just drag and drop them in, so how can you [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_7" class="wp-caption alignleft" style="width: 310px"><a href="http://iwebunlimited.wordpress.com/2008/02/01/tip-1-flash-in-iweb/#more-4"><img class="size-medium wp-image-7 " title="Flash in iWeb" src="http://iwebunlimited.com/wp-content/uploads/2009/12/flash_in_iweb1.jpg?w=300" alt="Flash in iWeb" width="300" height="129" /></a><p class="wp-caption-text">See how to get Flash SWF files into iWeb</p></div>
<p>This tutorial will show you how to get an Adobe Flash created file into iWeb.  Flash adds all sorts of interactivity to your site as well as fun animations.  It really makes your sites come to life. iWeb does not accept those files natively to just drag and drop them in, so how can you get those files into iWeb?  Well, the HTML Snippets is the key. If you don’t know what flash is or how to use it there are many books, podcasts, online tutorials that can help you learn.  This tutorial is just how to get that flash created file into iWeb.  So buckle up, here we go.</p>
<h3><span id="more-4"></span> <strong><a class="aligncenter" title="View Flash in iWeb Demo" href="http://www.iwebunlimited.com/examples/flashiniweb.html" target="_blank">VIEW DEMO »</a></strong></h3>
<p>1-Create flash .swf file</p>
<p>2-Place swf file on server (like your iDisk (MobileMe) or your own server).  If using MobileMe I recommend making a folder called “flash” in your sites folder like this: iDisk/Web/Sites/flash/myflashfile.swf<br />
If your not using MobileMe and using your own server like GoDaddy, iPower, etc. then you could just make a folder on the root level of your server called “flash” and put it in there.  That way your link to the file become http://www.yoursite.com/flash/yourfile.swf</p>
<p>3-Go to iWeb, choose HTML Snippet and paste this code:</p>
<blockquote><p><code></code><code></code><code>&lt;object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=" http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="<span style="color: #ff0000;">550</span>" height="<span style="color: #ff0000;">400</span>" align="middle"&gt; &lt;param name="movie" value="<span style="color: #ff0000;">http://www.yoursite.com/flash/myflashfile.swf</span>"&gt; &lt;param name="allowScriptAccess" value="always"&gt; &lt;embed type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" width="<span style="color: #ff0000;">550</span>" height="<span style="color: #ff0000;">400</span>" align="middle" src="<span style="color: #ff0000;">http://www.yoursite.com/flash/myflashfile.swf</span>" allowScriptAccess="always"&gt;&lt;/embed&gt;&lt;/object&gt;</code></p></blockquote>
<p>4-Now just change the code in to your own URL and flash width and height and hit apply in the HTML Snippet.</p>
<p>5-You now have successfully put a flash file in your iWeb document.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebunlimited.com/iweb-tips/tip-1-flash-in-iweb/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
	</channel>
</rss>
