<?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>dwcourse.com &#187; Dominate Dreamweaver</title>
	<atom:link href="http://www.dwcourse.com/dreamweaver/category/dominate-dreamweaver/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dwcourse.com</link>
	<description>Adobe Dreamweaver Tips, Tricks and Tutorials</description>
	<lastBuildDate>Fri, 23 Jul 2010 09:26:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>The Ten Commandments for Editing Dreamweaver’s Spry Menubars</title>
		<link>http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php</link>
		<comments>http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php#comments</comments>
		<pubDate>Wed, 21 Apr 2010 15:28:43 +0000</pubDate>
		<dc:creator>jcook</dc:creator>
				<category><![CDATA[Dominate Dreamweaver]]></category>
		<category><![CDATA[Dreamweaver CSS]]></category>
		<category><![CDATA[Dreamweaver Tips]]></category>

		<guid isPermaLink="false">http://dwcourse.com/?p=1097</guid>
		<description><![CDATA[Adapted from my Dominate Dreamweaver online training course. Back in the day, the Hebrews had a habit of getting themselves into trouble in spite of their favored status with God. So he decided to try to make it easy on them by reducing the rules to Ten Commandments. In search of similar guidance from a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><em>Adapted from my Dominate Dreamweaver online training course.</em></p>
<p><a href="http://dwcourse.com/wp-content/uploads/2010/04/10commandments-e1271369129866.jpg"><img class="alignright size-full wp-image-1100" title="Moses 10 Commandments iPad" src="http://dwcourse.com/wp-content/uploads/2010/04/10commandments-e1271369129866.jpg" alt="" width="279" height="373" /></a>Back in the day, the Hebrews had a habit of getting themselves into trouble in spite of their favored status with God. So he decided to try to make it easy on them by reducing the rules to Ten Commandments.</p>
<p>In search of similar guidance from a lesser deity (Adobe), I ventured to the top of our local equivalent of Mount Sinai where I received these Ten Commandments for Editing Dreamweaver’s Spry Menubars on a stone iPad.<br />
<span id="more-1097"></span></p>
<blockquote>
<ol>
<li><a href="#one">Thou shalt not edit the style sheet without reading the comments.</a></li>
<li><a href="#two">Thou shalt not edit the styles haphazardly.</a></li>
<li><a href="#three">Verily, rules for some selectors are defined in two locations.</a></li>
<li><a href="#four">Thou shalt not edit the position or display properties within the menubar styles.</a></li>
<li><a href="#five">Thou shalt not use the height property within menubar styles.</a></li>
<li><a href="#six">Thou shalt not apply padding, borders or margins to menubar list items &lt;li&gt;.</a></li>
<li><a href="#seven">Thou shalt not set widths for links &lt;a&gt; within menubars.</a></li>
<li><a href="#eight">Thou shalt not edit the browser hacks.</a></li>
<li><a href="#nine">Thou shalt not edit the menubar JavaScript file.</a></li>
<li><a href="#ten">Verily I say unto you, a new style shall appear to define the appearance of submenus.</a></li>
</ol>
</blockquote>
<p><em>Click a commandment above to view the related commentary.</em></p>
<h3 id="one">I. Thou shalt not edit the style sheet without reading the comments.</h3>
<blockquote><p>Some very clever person at Adobe (God bless them) hath taken the time to insert extensive comments into the code of the menubar CSS file. Open the CSS file and read those comments and you shall be enlightened (and save a lot of wasted effort).</p></blockquote>
<h3 id="two">II. Thou shalt not edit the styles haphazardly.</h3>
<blockquote><p>Adobe hath joined the various styles rules together to function in harmony. Editing them without a clear plan and understanding of their purpose is guaranteed to create more problems than solutions.</p>
<p>A good plan is to edit styles according to the structure of the HTML page (and for that matter the order the styles appear in the css file).</p>
<ol>
<li>Overall list (ul.MenuBarVertical or ul.MenuBarHorizontal)</li>
<li>Top-level list items (ul.MenuBarVertical li or ul.MenuBarHorizontal li)</li>
<li>Overall sub-menus (ul.MenuBarVertical ul or ul.MenuBarHorizontal ul – notice the second ul)</li>
<li>Sub-menu list items (ul.MenuBarVertical ul li or ul.MenuBarHorizontal ul li)</li>
<li>Links (styles related to the &lt;a&gt; tag including hover, focus, etc. states)</li>
</ol>
</blockquote>
<h3 id="three">III. Verily, rules for some selectors are defined in two locations.</h3>
<blockquote><p>Adobe hath divided the LAYOUT INFORMATION from the DESIGN INFORMATION (not a bad idea) so rules using the same style selectors may appear in both locations. You can edit them in either place but make sure the properties you set in the layout section aren’t overwritten in the design section.</p></blockquote>
<h3 id="four">IV. Thou shalt not edit the position or display properties within the menubar styles.</h3>
<blockquote><p>Those who have not yet eaten the fruit from the tree of CSS knowledge are often tempted to edit the position and display properties within the menubar styles. While some sins go unpunished, this one rarely does. It WILL break your menu. And, while we’re on the subject, don’t go adding position or display properties to the style rules that don’t have them either.</p></blockquote>
<h3 id="five">V. Thou shalt not use the height property within menubar styles.</h3>
<blockquote><p>It’s very tempting to try to “force” your menubar to conform to your design by defining a CSS height property for one or more of the menu elements and you might get away with it. But the odds are that, under some conditions, one of your menu items will wrap to a second line and the height properties you so meticulously set will be ignored or your links partially obscured.</p>
<p>To be delivered from this evil, the best practice is to allow the height of your menu and menu items to be determined by a combination of the text-size and padding of your menu link &lt;a&gt; style.</p></blockquote>
<h3 id="six">VI. Thou shalt not apply padding, borders or margins to menubar list items &lt;li&gt;.</h3>
<blockquote><p>Set the width of your menubar “buttons” using the list item &lt;li&gt; rules. Since, as it is written, padding, borders and margin add to the width of HTML elements, applying those properties to list items will likely break your design.</p>
<p>Apply padding and borders to your buttons using the link &lt;a&gt; rules.</p></blockquote>
<h3 id="seven">VII. Thou shalt not set widths for links within menubars.</h3>
<blockquote><p>In the commentary for Commandment VI we learned the width of our buttons should be set using the list item style rules. Any attempt to set a width for the links will likely conflict with those settings. But be not afraid, because the display: block property in the link style rule guarantees the link will completely fill its parent li tag.</p></blockquote>
<h3 id="eight">VIII. Thou shalt not edit the browser hacks.</h3>
<blockquote><p>What CSS hacks Adobe hath joined together, let no man set asunder.</p></blockquote>
<h3 id="nine">IX. Thou shalt not edit the menubar JavaScript file.</h3>
<blockquote><p>Yeah though you walk through the valley of Javascript, you shall fear no evil (if you just leave it alone).</p></blockquote>
<h3 id="ten">X. Verily I say unto you, a new style shall appear and it shall define the appearance of submenus.</h3>
<blockquote><p>And God said, “let the styling for the sub-menus be separated from the styling of the main menu.” And it was, with the addition of a new style rule, so.</p>
<p>By creating a new style rule (ul.MenuBarVertical ul li or ul.MenuBarHorizontal ul li for submenu list items and ul.MenuBarVertical ul a or ul.MenuBarHorizontal ul a for submenu links – notice the second ul in the selectors) you can define CSS properties that apply only to submenus (or more precisely to unordered lists that are themselves within an unordered list). And, by the way, you only have to define the properties that you want to be different from the main menu. The rest of the properties will be inherited.</p></blockquote>
<p><strong><em>Now, go forth and sin no more.</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Dominate Dreamweaver Registration Opening Soon</title>
		<link>http://www.dwcourse.com/dreamweaver/dominate-dreamweaver-registration-open.php</link>
		<comments>http://www.dwcourse.com/dreamweaver/dominate-dreamweaver-registration-open.php#comments</comments>
		<pubDate>Sat, 27 Feb 2010 22:00:07 +0000</pubDate>
		<dc:creator>jcook</dc:creator>
				<category><![CDATA[Dominate Dreamweaver]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://dwcourse.com/?p=528</guid>
		<description><![CDATA[Registration Opening Soon Registration for the Dominate Dreamweaver will reopen the week of July 12. Please contact me if you have any questions.]]></description>
			<content:encoded><![CDATA[<p></p><h2 style="font-size: 1.5em;">Registration Opening Soon</h2>
<p>Registration for the Dominate Dreamweaver will reopen the week of July 12.</p>
<p>Please contact me if you have any questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwcourse.com/dreamweaver/dominate-dreamweaver-registration-open.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are You Ready to Dominate Dreamweaver?</title>
		<link>http://www.dwcourse.com/dreamweaver/are-you-ready.php</link>
		<comments>http://www.dwcourse.com/dreamweaver/are-you-ready.php#comments</comments>
		<pubDate>Tue, 08 Sep 2009 13:45:37 +0000</pubDate>
		<dc:creator>jcook</dc:creator>
				<category><![CDATA[Dominate Dreamweaver]]></category>

		<guid isPermaLink="false">http://dwcourse.com/?p=495</guid>
		<description><![CDATA[Enrollment is now open. Sign up now… On Sept 14th I opened registration on a full-fledged, interactive online Dreamweaver course. It will begin by building on the material I&#8217;ve already covered in Let&#8217;s Get Started with Dreamweaver and walk you step by step through the learning process until you&#8217;re able to create the visually stunning [...]]]></description>
			<content:encoded><![CDATA[<p></p><h2>Enrollment is now open. <a href="http://dwcourse.com/enroll-now">Sign up now…</a></h2>
<p>On Sept 14th I opened registration on a full-fledged, interactive online Dreamweaver course. It will begin by building on the material I&#8217;ve already covered in <em>Let&#8217;s Get Started with Dreamweaver</em> and walk you step by step through the learning process until you&#8217;re able to create the visually stunning and technically advanced websites you&#8217;ve always wanted to build.</p>
<p><img class="aligncenter size-full wp-image-425" title="dominate-logo" src="http://dwcourse.com/wp-content/uploads/2009/08/dominate-logo.jpg" alt="dominate-logo" width="468" height="60" /></p>
<p>The course, <strong><em>Dominate Dreamweaver</em></strong>, will consist of 12 weekly modules containing:</p>
<ul>
<li> A digital text book broken into manageable weekly segments</li>
<li> &#8220;Over the shoulder&#8221; style videos illustrating the crucial techniques and concepts</li>
<li> Weekly &#8220;classroom&#8221; session webinars where I&#8217;ll go over each week&#8217;s material and answer any questions you might have</li>
<li> Complimentary web hosting space on our student server</li>
<li> and 24/7 access to ALL course materials</li>
</ul>
<p>Basically, it&#8217;s going to recreate the classroom experience without the limitations. You&#8217;ll be able to work through the course when it fits your schedule, at your own pace, and I&#8217;ll be there whenever you need me.</p>
<p>Plus, the weekly webinars will be recorded and available to download and watch later. So if life gets busy and you have to miss a class, you don&#8217;t have to beg a classmate for the notes to catch up.</p>
<p><strong>Enrollment Period:</strong> Sept 14th-18th</p>
<p><strong>Maximum Class Size:</strong> 100 students</p>
<p>Even without all these details, I received several emails from interested students all wanting to know the same thing you&#8217;re probably asking yourself right now:</p>
<p><strong>What&#8217;s it cost?</strong></p>
<p>There&#8217;s probably some fancy way that I&#8217;m supposed to tell you the price so that it seems like pocket change but I&#8217;m a web designer, not a car salesman.</p>
<p>I&#8217;m offering the entire 12 week course for 3 payments of $149.95 or a one time fee of $399.97 which <strong>saves you $50.00</strong>.</p>
<p>Now, I realize you&#8217;re probably not going to dig that out from between the cushions of your sofa. But let me ask you a couple of questions before you decide whether or not this is an investment you should make.</p>
<p>Can you imagine how many hours you&#8217;ll spend learning Dreamweaver on your own?</p>
<p>Imagine time spent:</p>
<ul>
<li> On hold waiting for tech support to figure out how to set up Dreamweaver to access your web server.</li>
<li> Googling topics like CSS positioning and Spry Datasets (if you can even figure out what to search for).</li>
<li>Reading blogs (with no guarantee the author knows what he&#8217;s talking about).</li>
<li>Participating in forums where no one knows or agrees on the answer to your questions.</li>
<li>Reading books for beginners, dummies and idiots. And good luck emailing the author with a question.</li>
</ul>
<p>I can guarantee that having all this information in one place with the opportunity to ask questions and receive feedback from a professional with 12 years of web design experience will save you hundreds of hours while learning and using Dreamweaver.</p>
<p>But let&#8217;s be wildly conservative and say you only <strong>save 50 hours</strong>.</p>
<p>If your time is worth $20 an hour (&amp; if you can design websites, it&#8217;s worth a lot more than that) we&#8217;re talking about <strong>$1,000 or 250% of your original investment</strong>!</p>
<p>Or, look at it another way, this course is equivalent to the three-semester hour course I taught at the college level.</p>
<p>Three semester hours at our local public university will cost you more than double the $400 you&#8217;ll spend on this course.</p>
<p>And, if you&#8217;ve checked lately, you know you aren&#8217;t likely to find a course with an instructor who is a practicing professional web designer and current with the latest version of Dreamweaver.</p>
<p>Or maybe after struggling with the program for a few days or a few weeks you&#8217;ll admit defeat and decide to hire a designer to build your site.</p>
<p>I&#8217;ll let you in on a secret, after a dozen years in the business my price for a small website of 10 to 20 pages STARTS at $4000.</p>
<p>And you can expect to pay a lot more to a big design firm.</p>
<p>So ask yourself, would rather you enroll in this course, pay 1/10th of my standard fee for ONE site, and be able to create and modify MULTIPLE web sites yourself&#8230;</p>
<p><strong>OR</strong></p>
<p>Are you going to depend on expensive designers for every update, redesign or new site your company needs?</p>
<p>Now maybe you have endless hours of spare time, incredible patience, and plenty of money to throw at web designers but most of the people and companies I know don&#8217;t.</p>
<p>That&#8217;s why I&#8217;m so confident you&#8217;ll get a huge return on your investment in this course.</p>
<h2 style="font-size: 1.5em;"><a href="http://dwcourse.com/enroll-now">Enroll now…</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.dwcourse.com/dreamweaver/are-you-ready.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
