<?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>HelpSpa &#187; Dreamweaver</title>
	<atom:link href="http://helpspa.com/category/web_development/dreamweaver/feed/" rel="self" type="application/rss+xml" />
	<link>http://helpspa.com</link>
	<description>Computer Advice, Help. and Video Tutorials</description>
	<lastBuildDate>Thu, 12 Jan 2012 03:18:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to Select a Single page with a CSS ID in Dreamweaver with a .DWT template.</title>
		<link>http://helpspa.com/web_development/dreamweaver/how-to-select-a-single-page-with-a-css-id-in-dreamweaver-with-a-dwt-template/</link>
		<comments>http://helpspa.com/web_development/dreamweaver/how-to-select-a-single-page-with-a-css-id-in-dreamweaver-with-a-dwt-template/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 02:45:22 +0000</pubDate>
		<dc:creator>David W</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>

		<guid isPermaLink="false">http://helpspa.com/?p=2534</guid>
		<description><![CDATA[Those of us familiar with Dreamweaver .DWT template files know their tremendous advantages, and their limitations.  One of the difficulties with .DWT templates is that once you&#8217;ve setup a website using .DWTs, it can be difficult to pick out a single page based on a CSS ID tag.  People often use an ID attached to [...]]]></description>
			<content:encoded><![CDATA[<p>Those of us familiar with Dreamweaver .DWT template files know their tremendous advantages, and their limitations.  One of the difficulties with .DWT templates is that once you&#8217;ve setup a website using .DWTs, it can be difficult to pick out a single page based on a CSS ID tag.  People often use an ID attached to a &lt;body&gt; tag in order to be able to select and manipulate an individual page for a particular purpose; but with .DWT&#8221;s, you can&#8217;t make different ID&#8217;s on the body tag.</p>
<p><strong>The Solution is an Editable Header and &lt;head&gt; Tag.</strong></p>
<p>While your &lt;body&gt; tag is likely consumed by the template, it&#8217;s very likely that your &lt;head&gt; tag has editable regions.  If you are adding any kind of meta tags, you will have an editable &lt;head&gt; tag.  So in order to take advantage of the &lt;head&gt; tag, simply add a &lt;style&gt; tag to the &lt;head&gt; area of the page in question, and you can then manipulate the CSS to your needs.</p>
<p><strong>Let&#8217;s Look at An Example.</strong></p>
<p>For example, let&#8217;s say you have an image with the ID &#8220;myImage&#8221; you want to display on every page on the website except for the &#8220;contact&#8221; page.   Go ahead and add the image to the .DWT so that the image code propagates to all of your pages.  Now in order to remove the image from the contact page, simply open up the contact page and add the following code within the header tag:</p>
<pre class="brush: html">

&lt;style type=&quot;text/css&quot;&gt;
#myImage {
display: none; }
&lt;/style&gt;
</pre>
<p>What will happen is that the page will render and read the site&#8217;s main .css file.  The browser will then read the above style code that you put in the &lt;head&gt; tag, which will override the site&#8217;s global stylesheet.  In this manner, the image with the myImage tag will now be hidden on the contact page.</p>
<p><strong>Summary</strong></p>
<p>In order to apply  CSS code to  individual pages using Dreamweaver and .DWT templates, simply add a &lt;style&gt; tag with your overriding CSS code to the &lt;head&gt; tag of the page in question.</p>
]]></content:encoded>
			<wfw:commentRss>http://helpspa.com/web_development/dreamweaver/how-to-select-a-single-page-with-a-css-id-in-dreamweaver-with-a-dwt-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 &#8211; A Review of SmartSVN–A GUI Subversion Client for Windows</title>
		<link>http://helpspa.com/web_development/4-a-review-of-smartsvn-a-gui-subversion-client-for-windows/</link>
		<comments>http://helpspa.com/web_development/4-a-review-of-smartsvn-a-gui-subversion-client-for-windows/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 21:09:32 +0000</pubDate>
		<dc:creator>David W</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://helpspa.com/?p=2110</guid>
		<description><![CDATA[This article is the third in a series of guides about my experiences using Subversion (svn) for Web Development. These are the articles in the series: 1. A Desktop-Laptop Solution for Web Developers – Using Subversion to Co-Exist (this article) 2. What is Subversion and How Does it Help in the Web Design and Development [...]]]></description>
			<content:encoded><![CDATA[<p>This article is the third  in a series of guides about my experiences  using Subversion (svn) for Web Development.  These are the articles in the series:</p>
<p>1. <a href="http://helpspa.com/web_development/subversion/a-desktop-laptop-solution-for-web-developers-using-subversion-to-co-exist/">A Desktop-Laptop Solution for Web Developers – Using Subversion to Co-Exist (this article)</a><br />
2. <a href="http://helpspa.com/web_development/what-is-subversion-and-how-does-it-help-in-the-web-design-and-development-process/ ">What is Subversion and How Does it Help in the Web Design and Development Process?</a><br />
3. <a href="http://helpspa.com/web_development/a-subversion-workflow-for-web-developers-and-web-development-using-dreamweaver/">A Subversion Workflow for Web Developers and Web Development</a><br />
4.<strong> A Review of SmartSVN – a GUI Subversion client for Windows (this article)</strong><br />
5.  A Quick Review of Online Options for Hosted Subversion for Web Developers<br />
6. <a href="http://helpspa.com/web_development/assembla-review-the-best-free-subversion-hosting/">A Brief Review of Assemmbla, an Online Subversion Hosting Company.</a></p>
<p>Being new to Subversion and especially with using it in a web development workflow with Dreamweaver, I wanted to make the most of SVN but without having to deal with the command-line.  Generally speaking there are three major ways to go about using SVN.</p>
<p>1) command line &#8211; it&#8217;s great for those who use it but as a novice this wasn&#8217;t an option for me so  I won&#8217;t discuss it further here.</p>
<p>2) TortoiseSVN</p>
<p>3) GUI Subversion client such as SmartSVN.</p>
<p><strong>TortoiseSVN</strong> is a free option and it basically adds the SVN command set to the right-click menu.  While I find this helpful now (after having been using SVN for a while), in the beginning I found TortoiseSVN a little confusing.  The truth is that there really isn&#8217;t anything confusing about TortoiseSVN &#8212; but it takes a decent understanding of subversion and how it works in order (at least for me) to be comfortable with TortoiseSVN.</p>
<p><strong>SmartSVN &#8211; a Subverion GUI Client for Windows.</strong></p>
<p>So wanting to reap the benefits of SVN without having to worry about the implementation and interface I started looking for a GUI for Windows and I came across <a href="http://www.syntevo.com/smartsvn/index.html">SmartSVN</a>.  The best way to show you how SmartSVN works (and how easy it is to use) is by going through my sample subversion web design workflow showing you screenshots along the way.  Note that SmartSVN comes in two flavors, a free Foundation Edition and a paid Professional Edition at very reasonable $79.  I will be using the Professional Edition for the examples below, and you can download a <a href="http://www.syntevo.com/smartsvn/download.html">free trial edition</a> to evaluate the Professional Edition.</p>
<p><em><strong>Note that in this review I used screenshots from an actual production workflow, so some of the client information and server information is blurred out. </strong></em></p>
<p>Let&#8217;s assume you already have a subversion server setup somewhere and you&#8217;ve already created a repository.  One of the best things about SmartSVN is that it lets you immediately decide if you want to go directly into a Subversion project or if you want to browse a repository:</p>
<p><img class="alignnone size-full wp-image-2115" title="smart_proj_repo" src="http://helpspa.com/wp-content/uploads/2011/01/smart_proj_repo.jpg" alt="smart_proj_repo" width="304" height="250" /></p>
<p>In this example I&#8217;m going to want to work on a specific project so I&#8217;ll go to the &#8220;New Project Window&#8221; option &#8212; which will let me select from the projects I&#8217;ve already setup, or setup a new project.</p>
<p><img class="alignnone size-full wp-image-2114" title="smart_proj_options" src="http://helpspa.com/wp-content/uploads/2011/01/smart_proj_options.jpg" alt="smart_proj_options" width="547" height="254" /></p>
<p>Because I&#8217;m going to work on an existing project, I&#8217;ll select one of the projects I already have listed [not shown] under the &#8220;Open existing project(s)&#8221; option.</p>
<p>Once you have selected a project (or created a new one) you are presented with the main SmartSVN screen.  Here is where you will control your interaction with your SVN server/repository.  You will have a tree-like view on the top left, a working area on the top right, a command output area on the bottom left, and a transaction list on the bottom right.</p>
<p>So now let&#8217;s assume that I went into Dreamweaver and made some changes to the files in my website.  SmartSVN will show you what files have changed (and you can easily sort to see what&#8217;s changed and what hasn&#8217;t):</p>
<p><img class="alignnone size-full wp-image-2113" title="smart_modList" src="http://helpspa.com/wp-content/uploads/2011/01/smart_modList.jpg" alt="smart_modList" width="347" height="175" /></p>
<p>Note the revision number, the state &#8220;modified&#8221; and the path on the right side of the screenshot.  SmartSVN can also help you see if you&#8217;ve added any files that are not yet versioned:</p>
<p><img class="alignnone size-full wp-image-2121" title="smart_unversioned" src="http://helpspa.com/wp-content/uploads/2011/01/smart_unversioned.jpg" alt="smart_unversioned" width="626" height="202" /></p>
<p>Because I don&#8217;t want to keep track of the dwsync.xml files, you can easily have SmartSVN ignore these files (an option in the main menu bar on top or an option in the right-click menu). But if you did want to add these files, you can also easily do so quickly.</p>
<p>So now that I&#8217;ve made a few changes, ignored a few and added a file or two, I&#8217;m ready to commit the changes.   Committing is as simple as clicking a button and adding a commit message, so I&#8217;ll skip that here.  But now let&#8217;s assume I&#8217;ve made the commit and I want to see a list of my commits (note that while the commit is happening and while SmartSVN is interacting with the server/repository, you will see the progress in the lower left part of the screen).  You can now easily look at the lower-right area of the screen, the Transactions area to see what&#8217;s gone on with your repository (note you can maximize this view if needed).</p>
<p><img class="alignnone size-full wp-image-2119" title="smart_transList" src="http://helpspa.com/wp-content/uploads/2011/01/smart_transList.jpg" alt="smart_transList" width="454" height="403" /></p>
<p>So you can see quite a bit of information from this transaction list and you can also expand the &#8220;+&#8221; signs to get more information.</p>
<p>Now that I&#8217;ve committed my changes, I&#8217;d like to add a tag (so as to have a snapshot in time of my project).  For more information about how I use SVN in my web development process you might consider reading this article series starting from the top &#8212; you can see a list of the articles at the top of this page.</p>
<p>Back to tags &#8212;  let&#8217;s now create a tag.  The easiest thing to do is to head to the Tag+Branch menu and click &#8220;Add Tag&#8230;&#8221;</p>
<p><img class="alignnone size-full wp-image-2112" title="smart_addTag" src="http://helpspa.com/wp-content/uploads/2011/01/smart_addTag.jpg" alt="smart_addTag" width="343" height="236" /></p>
<p>to bring up the &#8220;Add Tag&#8221; options:</p>
<p><img class="size-full wp-image-2118 alignnone" title="smart_tagOptions" src="http://helpspa.com/wp-content/uploads/2011/01/smart_tagOptions.jpg" alt="smart_tagOptions" width="511" height="564" /></p>
<p>I like to name my tags like this:  client_tag_1.05, with increments as needed.  In the above example I used the name &#8220;sampleTag&#8221; and notice how SmartSVN automatically created a commit message based on my tag name.  In this dialog box you are able to create the tag based on your working copy or the repository copy, and you can decide (at the bottom) how to manage it if the tag already exists.  When you are done you can hit the &#8220;Add Tag&#8221; button to finish adding the tag.</p>
<p>Moving along, let&#8217;s take a look at the list of our tags in the repository.  Note first that SmartSVN lets you pick which repository you want to look at (if you have separate repos):</p>
<p><img class="alignnone size-full wp-image-2116" title="smart_repo_change" src="http://helpspa.com/wp-content/uploads/2011/01/smart_repo_change.jpg" alt="smart_repo_change" width="559" height="281" /></p>
<p>But moving back, let&#8217;s look at the repository view of our project:</p>
<p><img class="alignnone size-full wp-image-2117" title="smart_repo_tag_list" src="http://helpspa.com/wp-content/uploads/2011/01/smart_repo_tag_list.jpg" alt="smart_repo_tag_list" width="186" height="143" /></p>
<p>This is just a clipping but you can easily see the structure of my project, and if you wanted to you could click the &#8220;+&#8221; to see all of the tags that I have.</p>
<p>On the subject of tags, let&#8217;s go ahead and download a copy of a tag to the local drive so I can have an archive.   You could easily copy your working directory, but don&#8217;t forget that your working directory has lots of special svn files that you may not want to necessarily keep in your copy (this is a function of subversion itself, not SmartSVN).  Let&#8217;s now walk through the export process.  The first thing I did is I went to a tag in the repository view and right-clicked on &#8220;check-out&#8221; (incidentally you also could use this command if you wanted to create a working copy based on a tag).</p>
<p><img class="alignnone size-full wp-image-2122" title="svn_export_tag_1" src="http://helpspa.com/wp-content/uploads/2011/01/svn_export_tag_1.jpg" alt="svn_export_tag_1" width="282" height="248" /></p>
<p>I then added a local directory and set some options:</p>
<p><img class="alignnone size-full wp-image-2123" title="svn_export_tag_2" src="http://helpspa.com/wp-content/uploads/2011/01/svn_export_tag_2.jpg" alt="svn_export_tag_2" width="527" height="317" /></p>
<p>and then finalized my choices.  Under the &#8220;Export only&#8221; selection I left the selection as &#8220;native&#8221; &#8212; which basically exports the tag as it is &#8212; but without the svn files.</p>
<p><img class="alignnone size-full wp-image-2124" title="svn_export_tag_3" src="http://helpspa.com/wp-content/uploads/2011/01/svn_export_tag_3.jpg" alt="svn_export_tag_3" width="477" height="366" /></p>
<p>Lastly you can view a summary report before you finish the creation of the local copy of the tag:</p>
<p><img class="alignnone size-full wp-image-2125" title="svn_export_tag_4_report" src="http://helpspa.com/wp-content/uploads/2011/01/svn_export_tag_4_report.jpg" alt="svn_export_tag_4_report" width="453" height="342" /></p>
<p><strong>Foundation Version vs Professional Version</strong></p>
<p>I spent time with the Foundation Edition and the Professional Edition and I found that the Foundation, while free, is greatly limited compared to the Professional Edition.  The Foundation is excellent as a repository browser and for basic management, but for creating tags and for more complex operations, the Professional Edition is needed to take advantage of these tasks with a GUI.</p>
<p><strong>Conclusion</strong></p>
<p>Subversion is a fantastic way to implement revision control into the web development process, but can be confusing and a little overwhelming for the novice user.  For this reason the use of a GUI such as <a href="http://www.syntevo.com/smartsvn/index.html">SmartSVN</a> is a great way to get going with subversion.  SmartSVN is a paid option but is the best GUI that I&#8217;ve seen for interacting with Subversion; the $79 is well worth it when you consider that with SmartSVN, you can worry about your project, and let SmartSVN  worry about interacting with your repository.</p>
<p><em>Disclosure. I originally approached Syntevo  about writing a review of  SmartSVN.   I was given a free license to use the product.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://helpspa.com/web_development/4-a-review-of-smartsvn-a-gui-subversion-client-for-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Manage Multiple Level Lists in Dreamweaver &#8211; Bullets, Letters, Numbers</title>
		<link>http://helpspa.com/web_development/how-to-manage-multiple-level-lists-in-dreamweaver-bullets-letters-numbers/</link>
		<comments>http://helpspa.com/web_development/how-to-manage-multiple-level-lists-in-dreamweaver-bullets-letters-numbers/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 06:36:33 +0000</pubDate>
		<dc:creator>David W</dc:creator>
				<category><![CDATA[(X)HTML]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://helpspa.com/?p=1977</guid>
		<description><![CDATA[Every so often I come across a deep-level list that needs to be put into an HTML document.  You can make yourself nuts with tons of classes, ID&#8217;s and the like, but found that by creating classes for the styles you need, you can save yourself a lot of time. Thus, for each list-style: that [...]]]></description>
			<content:encoded><![CDATA[<p>Every so often I come across a deep-level list that needs to be put into an HTML document.  You can make yourself nuts with tons of classes, ID&#8217;s and the like, but found that by creating classes for the styles you need, you can save yourself a lot of time.</p>
<p>Thus, for each <code>list-style:</code> that I need, I create a CSS class:</p>
<pre class="css">.olDecimal li {list-style: decimal;}
.olAlpha li {list-style: lower-alpha;}
.olRoman li {list-style: lower-roman;}</pre>
<p>These three classes will make my &lt;UL&gt; or &lt;OL&gt; with a decimal, lowercase alpha, or lowercase roman list-style: . Now I simply assign the class I want to the list in question, and I&#8217;m done.</p>
<p>This setup is particularly useful for a list like the following:</p>
<ol>
<li>Bread Aisle
<ul>
<li>white bread</li>
<li>wheat bread</li>
</ul>
</li>
<li>Meat and Fish Aisle
<ul>
<li>Chicken</li>
<li>Beef
<ol>
<li>Hamburgers</li>
<li>Steak</li>
</ol>
</li>
<li>Tuna Fish</li>
</ul>
</li>
</ol>
<p>Getting the &#8220;Hamburgers&#8221; and &#8220;Steak&#8221; entires to have a lowercase roman text style can get a little tricky &#8212; especially on deeper and larger lists.  So by assigning the .olRoman class, to the &lt;ul&gt; under the Beef section, you can easily make this change.  Using this method  you can easily get the list-style formatting you want.  And to get even more precise, you can make the white and wheat breads (as well as Chicken, Beef and Tuna Fish) with lowercase alpha text (a., b.) by assigning the class .olAlpha to the  &lt;ul&gt; below the Bread Aisle &lt;li&gt;.  Remember, the classes should be assigned to the &lt;UL&gt; that proceeds the &lt;li&gt;&#8217;s in question.</p>
<p>We&#8217;ll that&#8217;s my solution, I hope it helps you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://helpspa.com/web_development/how-to-manage-multiple-level-lists-in-dreamweaver-bullets-letters-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 &#8211; Assembla Review &#8211; Excellent Free Subversion Hosting</title>
		<link>http://helpspa.com/web_development/assembla-review-the-best-free-subversion-hosting/</link>
		<comments>http://helpspa.com/web_development/assembla-review-the-best-free-subversion-hosting/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 06:09:19 +0000</pubDate>
		<dc:creator>David W</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://helpspa.com/?p=1973</guid>
		<description><![CDATA[This article is the sixth in a series of guides about my experiences  using Subversion (svn) for Web Development.  These are the articles in the series: 1. A Desktop-Laptop Solution for Web Developers &#8211; Using Subversion to Co-Exist 2. What is Subversion and How Does it Help in the Web Design and Development Process? 3. A Subversion [...]]]></description>
			<content:encoded><![CDATA[<p>This article is the sixth in a series of guides about my experiences  using <a href="http://subversion.tigris.org/">Subversion</a> (svn) for Web Development.  These are the articles in the series:</p>
<p>1. <a href="http://helpspa.com/web_development/subversion/a-desktop-laptop-solution-for-web-developers-using-subversion-to-co-exist/">A Desktop-Laptop Solution for Web Developers &#8211; Using Subversion to Co-Exist</a><br />
2. <a href="http://helpspa.com/web_development/what-is-subversion-and-how-does-it-help-in-the-web-design-and-development-process/">What is Subversion and How Does it Help in the Web Design and Development Process?</a><br />
3. <a href="http://helpspa.com/web_development/a-subversion-workflow-for-web-developers-and-web-development-using-dreamweaver/">A Subversion Workflow for Web Developers and Web Development</a><br />
4. <a href="http://helpspa.com/web_development/4-a-review-of-smartsvn-%E2%80%93-a-gui-subversion-client-for-windows/"> </a><a href="http://helpspa.com/web_development/4-a-review-of-smartsvn-a-gui-subversion-client-for-windows/">A Review of SmartSVN &#8211; a GUI Subversion client for Windows</a><br />
5.  A Quick Review of Online Options for Hosted Subversion for Web Developers<br />
6. <a href="http://helpspa.com/web_development/assembla-review-the-best-free-subversion-hosting/">A Brief Review of Assembla, an Online Subversion Hosting Company</a> (this article).</p>
<p>In my quest to find a solution to the &#8220;laptop by day, more powerful desktop system by night&#8221; problem, I came across the idea of using subversion with Dreamweaver.  Now I know I could have used one of a dozen sync program (I actually use syncback and I love it) to go back and forth, but I wanted to add sync with some level of version control.  As web developers and coders can attest, version control is critical in any project; it doesn&#8217;t matter how you do it &#8212; as long as it works for you.</p>
<p>So I went ahead and started testing using Dreamweaver with SVN. . Because I&#8217;m always on the go, I wanted to find some kind of secure , easy, reliable and indexpensive subversion hosting, and I came across Assembla.</p>
<p><strong>Free Subversion Hosting with Assembla</strong></p>
<p>Being new to SVN, I really needed a system that was simple to use, and easy to integrate from my client of choice (currently I run SmartSVN on one machine, and TortosieSVN on the other).  I did some hunting and <a href="http://www.assembla.com/">Assembla </a>offers 2GB of subversion hosting for free &#8212; which is more space than I found with any other company.  I must underscore that being new to SVN, I really only need a limited feature set.  But for the features I need, Assembla does a great job:</p>
<ul>
<li>Easy Setup:  I was configured and up and running in minutes.</li>
<li>Secure Access: It&#8217;s all SSL&#8217;d.</li>
<li>Easy and Fast Access:  I expected a speed drop because my repo is online but much to my pleasant surprise, Assembla is lightening fast in connection and in uploading/downloading. (My SVN clients show a definite speed difference, but that&#8217;s for later, too).</li>
<li>Exporting is Easy:  I&#8217;m used to a very rigid versioning system (which I still have in place), but Assembla allows you to quickly and easily download your repository.  So even though they&#8217;ve got it all backed up, it&#8217;s incredibly simple to take a snapshot of your repo and keep it in a safe place on your hard drive.</li>
</ul>
<p>So for the beginning subversion user, I cannot recommend Assembla more highly.  I&#8217;ve yet to have a problem, and as long as I continue to use subversion, I&#8217;ll be hosting with Asssembla.</p>
<p><strong>Update &#8211; A Few Weeks Later</strong><br />
I remain very happy with Assembla&#8217;s free service.  My only complaint is that they don&#8217;t seem to have an intermediate plan for smaller users like myself.  I&#8217;d be interested in working with tickets, but their basic plan that includes tickets starts at around $24/mo and includes way more resources than I need.  Some of the competition does offer tickets (via Trac and other systems) for between $5-$10/mo, but at this point since I&#8217;m not using tickets, I&#8217;m content to stay with Assembla.</p>
]]></content:encoded>
			<wfw:commentRss>http://helpspa.com/web_development/assembla-review-the-best-free-subversion-hosting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Website in IE Shows Last Letter or Word of Text, but is Fine in Firefox</title>
		<link>http://helpspa.com/web_development/dreamweaver/website-in-ie-shows-last-letter-or-word-of-text-but-is-fine-in-firefox/</link>
		<comments>http://helpspa.com/web_development/dreamweaver/website-in-ie-shows-last-letter-or-word-of-text-but-is-fine-in-firefox/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 03:39:35 +0000</pubDate>
		<dc:creator>David W</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://helpspa.com/?p=317</guid>
		<description><![CDATA[There are many things that will cause a site to display properly in Firefox but not in IE (especially in IE6). One of the surprise reasons that this may happen is due to HTML comments. The problem you get is that while viewing a site with Internet Explorer only, you see the last letter, letters, [...]]]></description>
			<content:encoded><![CDATA[<p>There are many things that will cause a site to display properly in Firefox but not in IE (especially in IE6).  One of the surprise reasons that this may happen is due to HTML comments.</p>
<p>The problem you get is that while viewing a site with Internet Explorer only, you see the last letter, letters, or words of your text in the wrong place on the page. If you test the site with firefox or opera, there&#8217;s no problem. So why is this happening?</p>
<p>The reason is because Internet Explorer doesn&#8217;t do well with too many HTML comments in one area. If you are using Dreamweaver Templates, Dreameweaver adds comments to delineate the template region starting and end points. Now if you go ahead and add some more commented text (e.g. for notes for yourself, code notes, or even just content that&#8217; s &#8216;on hold&#8217; for now), IE will incorrectly render the text that is nested within the comments.</p>
<p>The solution is to one by one, remove some of the HTML comments. You can try to combine them if possible, or put the comments elsewhere. Once you remove enough of the comments (e.g the actual tags &#8211;&gt;, you will find that the text now displays normally.</p>
<p>It&#8217;s a frustrating bug to figure out, as you&#8217;d <em>never expect that comments </em>(which I encourage people to OVERuse), are the source of the problem!</p>
]]></content:encoded>
			<wfw:commentRss>http://helpspa.com/web_development/dreamweaver/website-in-ie-shows-last-letter-or-word-of-text-but-is-fine-in-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

