<?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; (X)HTML</title>
	<atom:link href="http://helpspa.com/category/web_development/xhtml/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 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>Create Two Column Table with Bullet Points Without Using &lt;UL&gt;</title>
		<link>http://helpspa.com/web_development/xhtml/create-a-two-column-table-with-bullet-bulleted-points-without-using-ul/</link>
		<comments>http://helpspa.com/web_development/xhtml/create-a-two-column-table-with-bullet-bulleted-points-without-using-ul/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 01:51:06 +0000</pubDate>
		<dc:creator>David W</dc:creator>
				<category><![CDATA[(X)HTML]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://helpspa.com/?p=133</guid>
		<description><![CDATA[Recently I had the task of adding bullets to items in a pre-existing two-column HTML table. I first started to look at how to add the bullets using css to format the &#60;TABLE&#62; or &#60;TD&#62; tags, and then I looked at using css to make two columns of separate lists using &#60;UL&#62; and &#60;LI&#62; tags. [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had the task of adding bullets to items in a pre-existing two-column HTML table. I first started to look at how to add the bullets using css to format the &lt;TABLE&gt; or &lt;TD&gt; tags, and then I looked at using css to make two columns of separate lists using &lt;UL&gt; and &lt;LI&gt; tags. I eventually found an easier solution: ASCII codes. This article will provide a general overview the the options for creating a two column tabled with bulleted items.<br />
<strong><br />
Option 1: Modify the Table Markup</strong><br />
I looked at how I could manipulate the formatting of the table because I already had quite a few items into the table and I didn&#8217;t feel like cutting and pasting the items into two separate CSS lists (see below). I could have wrapped the columns in list tags, and then wrapped the table items in &lt;LI&gt; tags but I didn&#8217;t feel like doing all of that typing. I thus decided that this method was not the way to go for me.<br />
<strong><br />
Option 2: Delete the Table and Create a Two Column Layout of Individual Lists with CSS</strong><br />
Getting rid of the table and creating two columns, each with a css list was probably the best approach and most standards-compliant approach. This approach also would be the fastest one to update if I ever decided to change the bullet to something else in the future. The reason I didn&#8217;t choose this method is because I didn&#8217;t feel like adding the new &lt;div&gt; tags and floats I would need to setup the columns within the preexisting code. One of the problems with this approach could be with older browsers that don&#8217;t do well with css. (as always that&#8217;s a decision to make based on your website demographic). Although I do admit that this solution would only have taken around 10 minutes to implement, I chose not to use it because I found a faster way to solve the problem: ASCII characters.</p>
<p><strong>Option 3: Use ASCII Characters</strong><br />
So for the quick and dirty solution, I used the ASCII code for the bullet and placed it in front of each item in the list in my table. The ASCII code (entity number for HTML) for a bullet is: <code>&amp;8226;</code> . Some argue, however, that is it is better to use the entity name for special characters instead of the entity number. The entity name for the bullet is:  <code>&amp;bull;</code>.</p>
<p>Here is an example (I&#8217;ve omitted the table and tr tags for brevity):</p>
<p><code>&lt;td&gt;•Your Text Here&lt;td&gt;</code></p>
<p>The drawback of this approach is that using ASCII codes may not be visible in browsers that are not using the standard set of English/Western European (Latin) character encoding.</p>
<p>It&#8217;s up to you to decide which solution is best for your specific site and audience, noting the advantages and disadvantages of each method.</p>
]]></content:encoded>
			<wfw:commentRss>http://helpspa.com/web_development/xhtml/create-a-two-column-table-with-bullet-bulleted-points-without-using-ul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

