<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>I&#039;d Rather Be Writing &#187; CSS</title>
	<atom:link href="http://idratherbewriting.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://idratherbewriting.com</link>
	<description>The Latest Trends in Technical Communication</description>
	<lastBuildDate>Fri, 10 Feb 2012 23:59:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Does a Technical Writer Need to Understand Web Design?</title>
		<link>http://idratherbewriting.com/2010/07/06/does-a-technical-writer-need-to-understand-web-design/</link>
		<comments>http://idratherbewriting.com/2010/07/06/does-a-technical-writer-need-to-understand-web-design/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 14:24:52 +0000</pubDate>
		<dc:creator>Tom Johnson</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[RSS feed]]></category>
		<category><![CDATA[selectors]]></category>
		<category><![CDATA[stylesheets]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://idratherbewriting.com/?p=6789</guid>
		<description><![CDATA[A reader asks, Technical writing is a field that I&#8217;ve been pursuing and about to complete a certification. My question, how important or valuable would also pursuing a web design certificate for a technical writer? The certificate in web design? Not necessary. But a working knowledge of HTML and CSS? Yes, critical, because everything is moving (or already moved about 10 years ago) to the ... <a href="http://idratherbewriting.com/2010/07/06/does-a-technical-writer-need-to-understand-web-design/">more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>A reader asks,</p>
<blockquote><p>Technical writing is a field that I&#8217;ve been pursuing and about to complete a certification. My question, how important or valuable would also pursuing a web design certificate for a technical writer?</p></blockquote>
<p>The certificate in web design? Not necessary. But a working knowledge of HTML and CSS? Yes, critical, because everything is moving (or already moved about 10 years ago) to the web, including documentation. If you create help in a print environment only, chances are you still publish the PDF on a website somewhere.</p>
<div id="attachment_6821" class="wp-caption alignright" style="width: 327px"><a href="http://idratherbewriting.com/wp-content/uploads/2010/07/booksintheattick.jpg"><img class="size-full wp-image-6821 " title="Books in the Attic" src="http://idratherbewriting.com/wp-content/uploads/2010/07/booksintheattick.jpg" alt="" width="317" height="237" /></a><p class="wp-caption-text">You don&#39;t need to understand web design/development if you&#39;re publishing books to a musty old attic.</p></div>
<p>About the only reason you wouldn&#8217;t need to know anything about web design or development is if you&#8217;re creating books in an attic. Don&#8217;t get my wrong. Attics are pretty cool places, and if you have some musty old books up there, they might be fun to explore. But I doubt they would include software how-to books.</p>
<h3>Why the Lack of Emphasis on Print?</h3>
<p>After most users download a product, usually the only printed material they want is a short <em>Getting Started </em>guide. It gets them going with the product. As they start using the product and have questions, they search an online help site for answers.</p>
<p>Your online site is where the majority of your documentation should be available. Because of this, you need to understand how to author and design in a web environment.</p>
<p>Many help authoring tools allow you to get by with only a minimal understanding of web concepts. Others require extensive knowledge of CSS to style even the help&#8217;s printed output. Whatever your situation, you should be familiar with basic web design concepts because your documentation will most likely be on the web.</p>
<p>In trying to distill the basics of web managing and publishing, I&#8217;ve come up with 10 basic concepts that every technical writer should know when working with the web.</p>
<h3>Understand Basic HTML Markup</h3>
<p>Understand how to type basic HTML markup, such as a heading, list, image, or link. You type an unordered list like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;ul&gt;My list
	&lt;li&gt;First item in a list&lt;/li&gt;
	&lt;li&gt;Second item in a list&lt;/li&gt;
&lt;/ul&gt;</pre></div></div>

<p>The code for an image is this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;img src=&quot;http://idratherbewriting.com/someimage.png&quot; alt=&quot;my image name&quot; /&gt;</pre></div></div>

<p>An image that links to something is just an image wrapped inside of a hyperlink.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;a href=&quot;http://someurl.com&quot;&gt; 
&lt;img src=&quot;http://idratherbewriting.com/someimage.png&quot; alt=&quot;my image name&quot; /&gt; 
&lt;/a&gt;</pre></div></div>

<h3>Transfer Files with FTP</h3>
<p>FTP stands for file transfer protocol. It&#8217;s the way you transfer files to and from a web host. The most common open-source FTP program for Windows is <a href="http://filezilla-project.org/">Filezilla</a>. To connect with FTP, you need a host address, user name, and password. Once connected, you usually see two panes: files on your local computer and files on your web host. You then move files from one side to the other to upload or download your files.</p>
<h3>Modify CSS</h3>
<p>CSS stands for cascading style sheets and is the language used to style almost everything on the web. You need to know CSS to design or modify a website, including changing the font or altering the headings or line height or layout widths. Almost nothing is coded in tables anymore (if it is, it&#8217;s usually bad practice). Instead, CSS controls everything.</p>
<p>Most websites reference an external stylesheet where all the styles are defined. This page, for example, puts h1 tags around the post title. These h1 tags are defined in the stylesheet as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.entry</span> h1 <span style="color: #00AA00;">&#123;</span> 
                <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#e6e6e6</span><span style="color: #00AA00;">;</span> 
                <span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">20px</span><span style="color: #00AA00;">;</span> 
                <span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
          <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>The first part, .entry h1, is called a selector. Selectors can consist of HTML elements, classes, or IDs. When you stack selectors together, you get a complex selector. In the above example, the complex selector refers to only h1 headings inside the .entry class. This style wouldn&#8217;t affect all content tagged with the h1 selector.</p>
<p>For a good tutorial on CSS, see <a href="http://www.w3schools.com/css/">W3C Schools&#8217; CSS Tutorial</a>.</p>
<h3>Leverage CSS Tools</h3>
<p>When you style a website, certain tools in your web browser can simplify the process considerably. Download <a href="http://www.mozilla.com/en-US/firefox/ie.html">Firefox</a>, if don&#8217;t already have it. Then download the <a href="https://addons.mozilla.org/en-US/firefox/addon/60/">Web Developer Extension</a> and <a href="http://getfirebug.com/">Firebug</a>.</p>
<p>With these two extensions, you can quickly find and edit styles on a website. On the Web Developer extension toolbar, go to <strong>CSS &gt; Edit CSS</strong> to edit the CSS for the page live. (You still have to save and upload your changes to make your edits stick.)</p>
<p>To identify the CSS selector for an element, right-click the element and select <strong>Inspect Element</strong>. (This option is available through the Firebug extension.) Now you can identify the CSS selector that is defining your site content, and then you can change the selector&#8217;s properties in the stylesheet.</p>
<h3>View Source Code</h3>
<p>In Firefox or IE, you can also view the source code of the page you&#8217;re viewing by right-clicking the page and selecting <strong>View Source</strong>. This shows you all the code behind the site. By viewing the source code, you can look for the styles around the elements that you&#8217;re trying to adjust. You can also select a part of the web page only and choose to just view that selection. Once you know what CSS selectors are used, you can find and adjust the properties for the selectors in your stylesheet.</p>
<h3>Create New Styles</h3>
<p>You can create a new style with just a few keystrokes. For example, add the following to your stylesheet:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.mynewstyle</span> <span style="color: #00AA00;">&#123;</span>
                   <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">30px</span><span style="color: #00AA00;">;</span> 
                   <span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">40px</span><span style="color: #00AA00;">;</span>
            <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Now on your web page, just add a div tag with that class before the text, like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;mynewstyle&quot;&gt;
This is my sample content ....
&lt;/div&gt;</pre></div></div>

<p>Now that text will appear in 30px font with a 40px bottom margin.</p>
<p>Knowing how to create a style like this can be incredibly helpful. You can use classes or IDs to create the styles. The same class can appear multiple times on the page, but you can only use the same ID once.</p>
<h3>Use the Right Image Format</h3>
<p>You should understand what image format to use. GIF and PNG support transparency, JPG does not. JPG is best for photos or images with gradients. GIF is better for solid colors. PNG works well for both, but the IE6 browser doesn&#8217;t recognize transparency with PNG.</p>
<p>Whatever image format you&#8217;re using, make sure the file size is small, such as 20KB or so. If your image is 1MB or more, it will take too long to load.</p>
<h3>Make Online Content Readable</h3>
<p>When you create content online, keep readability in mind. Column widths should be about 75 characters across. Font should be about 12 to 14 pixels. Line height (the space between lines) should be spacious, such as 20px to 26px. Additionally, you should chunk your content into small paragraphs consisting of no more than 3-4 sentences per paragraph, with frequent subheadings.</p>
<h3>Subscribe to RSS Feeds</h3>
<p>Most content on the web has an RSS feed. The RSS feed contains your content in a format that can be pushed out and parsed by RSS readers, such as Google Reader. Since people don&#8217;t visit your site every day, you need a way to send them updated information on a regular basis. By subscribing to an RSS feed through an RSS reader such as Google Reader, you can follow hundreds of feeds without ever returning to the original sites to view the content.</p>
<h3>Use Content Management Systems</h3>
<p>Most websites are built on content management systems, such as WordPress, Joomla, Drupal, Expression Engine, or others. Hand-coding websites with individual, flat pages is a practice that&#8217;s out of fashion given the ease and manageability that content management systems provide. Using a CMS to build your site is also a lot easier, since you can implement themes that have already been created by web designers. You can also leverage templates, reuse different design components, and take advantage of many plugins and extensions already created to increase your site&#8217;s functionality.</p>
<p>Familiarity with these ten concepts won&#8217;t make you a web designer, but it will allow you to get by with many of the tasks you may need to do with your documentation on the web.</p>
<p>&#8212;&#8212;&#8212;-</p>
<p>Photo by <a href="http://www.flickr.com/photos/anvosa/3729242060/sizes/l/">anvosa on flickr</a><br />
<h2>Blog Sponsors</h2>
<ul>
<li><a href="http://webworks.com">Webworks ePublisher</a></li>
<li><a href="http://scriptorium.com">Scriptorium</a></li>
<li><a href="http://www.helpgenerator.com">Help Generator help authoring software</a></li>
<li><a href="http://idc.spsu.edu">Southern Polytechnic: Information Design and Communication</a></li>
<li><a href="http://simplifiedenglish.net">Simplified English</a></li>
<li><a href="http://info.mindtouch.com/irbw/tcs-custom-tour?persona=content">MindTouch</a></li>
<li><a href="http://www.madcapsoftware.com/products/madpak/overview.aspx?utm_source=IdRatherBeWriting&#038;utm_medium=Banner&#038;utm_campaign=MadPak"</a>Madcap Software</a></li>
<li><a href="http://www.drexplain.com/">Dr.Explain</a> </li>
<li><a href="http://www.adobe.com/products/technicalcommunicationsuite/try.html?sdid=ITRSO">Adobe Technical Communication Suite</a></li>
<li><a href="http://www.congree.com/en/download-congree-personal-edition.aspx">Congree</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://idratherbewriting.com/2010/07/06/does-a-technical-writer-need-to-understand-web-design/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 Challenging But Awesome CSS Techniques &#8211; Nettuts+</title>
		<link>http://idratherbewriting.com/2009/03/31/10-challenging-but-awesome-css-techniques-nettuts/</link>
		<comments>http://idratherbewriting.com/2009/03/31/10-challenging-but-awesome-css-techniques-nettuts/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 15:53:11 +0000</pubDate>
		<dc:creator>Tom Johnson</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://writerriver.com/?p=939</guid>
		<description><![CDATA[10 Challenging But Awesome CSS Techniques &#8211; Nettuts+. Blog Sponsors Webworks ePublisher Scriptorium Help Generator help authoring software Southern Polytechnic: Information Design and Communication Simplified English MindTouch]]></description>
			<content:encoded><![CDATA[<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/10-challenging-but-awesome-css-techniques/">10 Challenging But Awesome CSS Techniques &#8211; Nettuts+</a>.<br />
<h2>Blog Sponsors</h2>
<ul>
<li><a href="http://webworks.com">Webworks ePublisher</a></li>
<li><a href="http://scriptorium.com">Scriptorium</a></li>
<li><a href="http://www.helpgenerator.com">Help Generator help authoring software</a></li>
<li><a href="http://idc.spsu.edu">Southern Polytechnic: Information Design and Communication</a></li>
<li><a href="http://simplifiedenglish.net">Simplified English</a></li>
<li><a href="http://info.mindtouch.com/irbw/tcs-custom-tour?persona=content">MindTouch</a></li>
<li><a href="http://www.madcapsoftware.com/products/madpak/overview.aspx?utm_source=IdRatherBeWriting&#038;utm_medium=Banner&#038;utm_campaign=MadPak"</a>Madcap Software</a></li>
<li><a href="http://www.drexplain.com/">Dr.Explain</a> </li>
<li><a href="http://www.adobe.com/products/technicalcommunicationsuite/try.html?sdid=ITRSO">Adobe Technical Communication Suite</a></li>
<li><a href="http://www.congree.com/en/download-congree-personal-edition.aspx">Congree</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://idratherbewriting.com/2009/03/31/10-challenging-but-awesome-css-techniques-nettuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Styling Category Levels in WordPress (video)</title>
		<link>http://idratherbewriting.com/2009/01/23/styling-category-levels-in-wordpress-video/</link>
		<comments>http://idratherbewriting.com/2009/01/23/styling-category-levels-in-wordpress-video/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 12:25:38 +0000</pubDate>
		<dc:creator>Tom Johnson</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[styles]]></category>
		<category><![CDATA[web developer extension]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.idratherbewriting.com/?p=2715</guid>
		<description><![CDATA[Assigning unique styles to each category level in WordPress requires you to insert the following classes in your stylesheet: Top level: .cat-item a { } Second level: .cat-item ul li a { } Third level: .cat-item ul ul li a { } I created a five-minute video showing how the addition of these category classes to your WordPress stylesheet will change the style of each ... <a href="http://idratherbewriting.com/2009/01/23/styling-category-levels-in-wordpress-video/">more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Assigning unique styles to each category level in WordPress requires you to insert the following classes in your stylesheet:</p>
<ul>
<li>Top level: <span style="color: #ff6600;">.cat-item a { }</span></li>
<li>Second level:<span style="color: #ff9900;"> <span style="color: #ff6600;">.cat-item ul li a { }</span></span></li>
<li>Third level: <span style="color: #ff6600;">.cat-item ul ul li a { }</span></li>
</ul>
<div id="attachment_2718" class="wp-caption alignnone" style="width: 410px"><a href="http://www.idratherbewriting.com/wp-content/uploads/2009/01/catimages2.png"><img class="size-medium wp-image-2718" title="Styling Categories in WordPress " src="http://www.idratherbewriting.com/wp-content/uploads/2009/01/catimages2-400x301.png" alt="Styling Categories in WordPress " width="400" height="301" /></a><p class="wp-caption-text">Styling Categories in WordPress </p></div>
<p>I created a five-minute video showing how the addition of these category classes to your WordPress stylesheet will change the style of each category level.</p>
<p><a href="http://idratherbewriting.com/video/Styling_Category_Levels_in_WordPress/Styling_Category_Levels_in_WordPress.mp4" target="_self">Watch the video</a></p>
<p>I also uploaded it to Vimeo, although the quality isn&#8217;t as good.<br />
<h2>Blog Sponsors</h2>
<ul>
<li><a href="http://webworks.com">Webworks ePublisher</a></li>
<li><a href="http://scriptorium.com">Scriptorium</a></li>
<li><a href="http://www.helpgenerator.com">Help Generator help authoring software</a></li>
<li><a href="http://idc.spsu.edu">Southern Polytechnic: Information Design and Communication</a></li>
<li><a href="http://simplifiedenglish.net">Simplified English</a></li>
<li><a href="http://info.mindtouch.com/irbw/tcs-custom-tour?persona=content">MindTouch</a></li>
<li><a href="http://www.madcapsoftware.com/products/madpak/overview.aspx?utm_source=IdRatherBeWriting&#038;utm_medium=Banner&#038;utm_campaign=MadPak"</a>Madcap Software</a></li>
<li><a href="http://www.drexplain.com/">Dr.Explain</a> </li>
<li><a href="http://www.adobe.com/products/technicalcommunicationsuite/try.html?sdid=ITRSO">Adobe Technical Communication Suite</a></li>
<li><a href="http://www.congree.com/en/download-congree-personal-edition.aspx">Congree</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://idratherbewriting.com/2009/01/23/styling-category-levels-in-wordpress-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://idratherbewriting.com/video/Styling_Category_Levels_in_WordPress/Styling_Category_Levels_in_WordPress.mp4" length="5622620" type="audio/mp4" />
		</item>
		<item>
		<title>YouTube &#8211; Introduction to CSS editing using Firebug</title>
		<link>http://idratherbewriting.com/2009/01/22/youtube-introduction-to-css-editing-using-firebug/</link>
		<comments>http://idratherbewriting.com/2009/01/22/youtube-introduction-to-css-editing-using-firebug/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 14:35:44 +0000</pubDate>
		<dc:creator>Tom Johnson</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://writerriver.com/?p=697</guid>
		<description><![CDATA[Introduction to CSS editing using Firebug (youtube) If you work with CSS at all, Firebug is essential. Blog Sponsors Webworks ePublisher Scriptorium Help Generator help authoring software Southern Polytechnic: Information Design and Communication Simplified English MindTouch]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=FsX6qwQqGgQ">Introduction to CSS editing using Firebug (youtube)</a></p>
<p>If you work with CSS at all, Firebug is essential.<br />
<h2>Blog Sponsors</h2>
<ul>
<li><a href="http://webworks.com">Webworks ePublisher</a></li>
<li><a href="http://scriptorium.com">Scriptorium</a></li>
<li><a href="http://www.helpgenerator.com">Help Generator help authoring software</a></li>
<li><a href="http://idc.spsu.edu">Southern Polytechnic: Information Design and Communication</a></li>
<li><a href="http://simplifiedenglish.net">Simplified English</a></li>
<li><a href="http://info.mindtouch.com/irbw/tcs-custom-tour?persona=content">MindTouch</a></li>
<li><a href="http://www.madcapsoftware.com/products/madpak/overview.aspx?utm_source=IdRatherBeWriting&#038;utm_medium=Banner&#038;utm_campaign=MadPak"</a>Madcap Software</a></li>
<li><a href="http://www.drexplain.com/">Dr.Explain</a> </li>
<li><a href="http://www.adobe.com/products/technicalcommunicationsuite/try.html?sdid=ITRSO">Adobe Technical Communication Suite</a></li>
<li><a href="http://www.congree.com/en/download-congree-personal-edition.aspx">Congree</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://idratherbewriting.com/2009/01/22/youtube-introduction-to-css-editing-using-firebug/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Coding Horror: The Two Types of Browser Zoom</title>
		<link>http://idratherbewriting.com/2009/01/22/coding-horror-the-two-types-of-browser-zoom/</link>
		<comments>http://idratherbewriting.com/2009/01/22/coding-horror-the-two-types-of-browser-zoom/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 12:00:50 +0000</pubDate>
		<dc:creator>Tom Johnson</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://writerriver.com/?p=693</guid>
		<description><![CDATA[Coding Horror: The Two Types of Browser Zoom. For help authors producing browser-based formats, the issues in this post may impact the usability of your help. How will Zoom impact your design? Blog Sponsors Webworks ePublisher Scriptorium Help Generator help authoring software Southern Polytechnic: Information Design and Communication Simplified English MindTouch]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.codinghorror.com/blog/archives/001212.html">Coding Horror: The Two Types of Browser Zoom</a>.</p>
<p>For help authors producing browser-based formats, the issues in this post may impact the usability of your help. How will Zoom impact <em>your</em> design?<br />
<h2>Blog Sponsors</h2>
<ul>
<li><a href="http://webworks.com">Webworks ePublisher</a></li>
<li><a href="http://scriptorium.com">Scriptorium</a></li>
<li><a href="http://www.helpgenerator.com">Help Generator help authoring software</a></li>
<li><a href="http://idc.spsu.edu">Southern Polytechnic: Information Design and Communication</a></li>
<li><a href="http://simplifiedenglish.net">Simplified English</a></li>
<li><a href="http://info.mindtouch.com/irbw/tcs-custom-tour?persona=content">MindTouch</a></li>
<li><a href="http://www.madcapsoftware.com/products/madpak/overview.aspx?utm_source=IdRatherBeWriting&#038;utm_medium=Banner&#038;utm_campaign=MadPak"</a>Madcap Software</a></li>
<li><a href="http://www.drexplain.com/">Dr.Explain</a> </li>
<li><a href="http://www.adobe.com/products/technicalcommunicationsuite/try.html?sdid=ITRSO">Adobe Technical Communication Suite</a></li>
<li><a href="http://www.congree.com/en/download-congree-personal-edition.aspx">Congree</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://idratherbewriting.com/2009/01/22/coding-horror-the-two-types-of-browser-zoom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Columns with CSS Float &#124; eHow.com</title>
		<link>http://idratherbewriting.com/2009/01/01/how-to-create-columns-with-css-float-ehowcom/</link>
		<comments>http://idratherbewriting.com/2009/01/01/how-to-create-columns-with-css-float-ehowcom/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 06:49:34 +0000</pubDate>
		<dc:creator>Tom Johnson</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://writerriver.com/2009/01/01/how-to-create-columns-with-css-float-ehowcom/</guid>
		<description><![CDATA[How to Create Columns with CSS Float &#124; eHow.com I see so many sites that structure everything with tables. News flash: tables are out. Divs and floats are in. Blog Sponsors Webworks ePublisher Scriptorium Help Generator help authoring software Southern Polytechnic: Information Design and Communication Simplified English MindTouch]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ehow.com/how_2084304_columns-css-float.html?ref=fuel&amp;utm_source=yahoo&amp;utm_medium=ssp&amp;utm_campaign=yssp_art">How to Create Columns with CSS Float | eHow.com </a></p>
<p>I see so many sites that structure everything with tables. News flash: tables are out. Divs and floats are in.<br />
<h2>Blog Sponsors</h2>
<ul>
<li><a href="http://webworks.com">Webworks ePublisher</a></li>
<li><a href="http://scriptorium.com">Scriptorium</a></li>
<li><a href="http://www.helpgenerator.com">Help Generator help authoring software</a></li>
<li><a href="http://idc.spsu.edu">Southern Polytechnic: Information Design and Communication</a></li>
<li><a href="http://simplifiedenglish.net">Simplified English</a></li>
<li><a href="http://info.mindtouch.com/irbw/tcs-custom-tour?persona=content">MindTouch</a></li>
<li><a href="http://www.madcapsoftware.com/products/madpak/overview.aspx?utm_source=IdRatherBeWriting&#038;utm_medium=Banner&#038;utm_campaign=MadPak"</a>Madcap Software</a></li>
<li><a href="http://www.drexplain.com/">Dr.Explain</a> </li>
<li><a href="http://www.adobe.com/products/technicalcommunicationsuite/try.html?sdid=ITRSO">Adobe Technical Communication Suite</a></li>
<li><a href="http://www.congree.com/en/download-congree-personal-edition.aspx">Congree</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://idratherbewriting.com/2009/01/01/how-to-create-columns-with-css-float-ehowcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conditional-CSS</title>
		<link>http://idratherbewriting.com/2008/08/11/conditional-css/</link>
		<comments>http://idratherbewriting.com/2008/08/11/conditional-css/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 15:25:32 +0000</pubDate>
		<dc:creator>Tom Johnson</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://writerriver.com/2008/08/11/conditional-css/</guid>
		<description><![CDATA[Conditional-CSS.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.conditional-css.com/">Conditional-CSS</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://idratherbewriting.com/2008/08/11/conditional-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Approaching Help as Solutions to Problems — An Interesting Format from the CSS Cookbook</title>
		<link>http://idratherbewriting.com/2008/07/01/approaching-help-as-solutions-to-problems-%e2%80%94-an-interesting-format-from-the-css-cookbook/</link>
		<comments>http://idratherbewriting.com/2008/07/01/approaching-help-as-solutions-to-problems-%e2%80%94-an-interesting-format-from-the-css-cookbook/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 01:27:17 +0000</pubDate>
		<dc:creator>Tom Johnson</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Christopher Schmitt]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Cookbook]]></category>
		<category><![CDATA[help formats]]></category>
		<category><![CDATA[problems and solutions]]></category>
		<category><![CDATA[Technical Writing]]></category>

		<guid isPermaLink="false">http://www.idratherbewriting.com/?p=1650</guid>
		<description><![CDATA[At Borders or Barnes &#38; Noble, I often browse the computer books to see the different ways writers approach help material — especially how they approach the same help material. The other day I wanted a book on CSS, so I pulled four available CSS books off the shelf and began browsing them. Each book looked respectable, but the CSS Cookbook, by Christopher Schmitt, had a unique ... <a href="http://idratherbewriting.com/2008/07/01/approaching-help-as-solutions-to-problems-%e2%80%94-an-interesting-format-from-the-css-cookbook/">more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://books.google.com/books?id=_n8-TX3rmQMC&amp;dq=css+cookbook&amp;pg=PP1&amp;ots=tEBGY2QgDx&amp;sig=td-ni5KZsu9C8M4PyetvZfV8uZ4&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=4&amp;ct=result#PPP1,M1" target="_blank"><img class="alignright size-full wp-image-1654" title="CSS Cookbook" src="http://www.idratherbewriting.com/wp-content/uploads/2008/07/bear.jpg" alt="" width="128" height="180" /></a>At Borders or Barnes &amp; Noble, I often browse the computer books to see the different ways writers approach help material — especially how they approach the <em>same</em> help material.</p>
<p>The other day I wanted a book on CSS, so I pulled four available CSS books off the shelf and began browsing them. Each book looked respectable, but the <a href="http://www.idratherbewriting.com/wp-content/uploads/2008/06/bear.jpg" target="_blank"><em>CSS Cookbook</em>, by Christopher Schmitt</a>, had a unique format that caught my attention and convinced me to buy it.</p>
<p>In the <em>CSS Cookbook</em>, each topic is formatted with Problem and Solution subheadings. Here&#8217;s an example:  <span id="more-1650"></span></p>
<p><a href="http://www.idratherbewriting.com/wp-content/uploads/2008/07/sample1.png"><img class="alignnone size-full wp-image-1653" title="Example of the Problem-Solution Format" src="http://www.idratherbewriting.com/wp-content/uploads/2008/07/sample1.png" alt="" width="500" height="217" /></a></p>
<p>I like the problem-solution format. For one, while sitting there trying to choose the right CSS book, the problem-solution format convinced me that the book would deal with my actual problems, not just provide general CSS rules and principles. That feeling &#8212; an extremely compelling one &#8212; won me over to the help.</p>
<p>Almost invariably, the reason we turn to help is to solve a problem. Some would say every human action is driven by the desire to solve a problem (<em>People don&#8217;t go to Home Depot to buy a shovel; they go to to dig a hole</em>, as someone once said). But it&#8217;s especially true for help material. Problems are the explicit motivation for why we turn to help. Consequently, help material that arranges itself around problems and solutions isn&#8217;t too far-fetched of a format.</p>
<p>At the Trends Panel at the last STC Summit, the panelists even recommended that technical writers become problem solvers. Write less and think more<em>, </em>they said. You don&#8217;t write &#8212; you solve problems. As you solve problems, your value in the organization increases. They essentially recast our role from writer to problem-solver.</p>
<p>Perhaps it would change the way we wrote documentation if we looked at help as a collection of problems and solutions rather than features and functions. Rather than asking, <em>What can a person do on this page of the application? </em>instead ask, <em>What problems might my user have here?</em></p>
<p>At the very least, thinking in terms of problems would perhaps get us out of the vocabulary of the application and into the vocabulary of the user. For example, rather than addressing how to &#8220;create navigation menus,&#8221; we would be writing about building a &#8220;curved tab navigation menu that works even when text is resized&#8221; (as one problem in the <em>CSS Cookbook </em>is worded). The first is a general help topic; the second is phrased more after the language of users.</p>
<p>Some readers may object and say that we&#8217;re already thinking of problems and solutions <em>unconsciously </em>when we write help. In part, sure. But adopting an explicit problem-solution paradigm would make us even more in tune with the actual problems users encounter. Rather than focusing on the general topics, it would help us focus on the scenarios where users will be challenged and confused.</p>
<p>The problem-solution format has its share of difficulties. The main difficulty is that some topics have problems, and others don&#8217;t. A problem, in my mind, is one with specific circumstances and variables. A hairy situation. Here&#8217;s an example where the problem-solution format feels forced.</p>
<p> <a href="http://www.idratherbewriting.com/wp-content/uploads/2008/07/sample1x.png"><img class="alignnone size-full wp-image-1651" title="Sample of the Problem-Solution Format" src="http://www.idratherbewriting.com/wp-content/uploads/2008/07/sample1x.png" alt="" width="500" height="245" /></a></p>
<p>In this example, the problem is so simple it doesn&#8217;t feel like a true &#8220;problem.&#8221; And the problem merely repeats the title, so it seems redundant. The repetition isn&#8217;t needed, but for consistency&#8217;s sake, the author carries the problem-solution format into every topic.</p>
<p>Another difficulty is crafting the topic title. At times the title succinctly states the problem; at other times the title strays from the problem. If the title just repeats the problem, the problem seems redundant. If the title is too different from the problem, the title seems poorly chosen.</p>
<p>In these situations, the saving grace is the Discussion section, which I haven&#8217;t yet mentioned. After the Problem and Solution sections, the topic usually has a Discussion section that brings up other related points surrounding the problem. When a topic has a discussion that touches on several related issues or considerations, the repetition at the beginning is forgiveable. In that situation, the Problem section merely provides a concrete starting point for a larger discussion.</p>
<p>Overall, the problem-solution format probably works best for more advanced help, where the solutions are more complicated and involve combining several general principles or bending traditional rules. Despite the challenges I mentioned, in looking over the book, the format appeals to me more and more.</p>
]]></content:encoded>
			<wfw:commentRss>http://idratherbewriting.com/2008/07/01/approaching-help-as-solutions-to-problems-%e2%80%94-an-interesting-format-from-the-css-cookbook/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

