<?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: Adobe Dreamweaver Blog &#187; Page Design</title>
	<atom:link href="http://www.dwcourse.com/dreamweaver/category/page-design/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dwcourse.com</link>
	<description>Tutorials, Tips &#38; Help Adobe Creative Suite CS3 through CS6</description>
	<lastBuildDate>Thu, 02 Feb 2012 21:34:05 +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>Center a CSS web page layout</title>
		<link>http://www.dwcourse.com/dreamweaver/centering-a-web-layout.php</link>
		<comments>http://www.dwcourse.com/dreamweaver/centering-a-web-layout.php#comments</comments>
		<pubDate>Wed, 13 Oct 2010 01:37:51 +0000</pubDate>
		<dc:creator>dwcourse</dc:creator>
				<category><![CDATA[Dominate Dreamweaver]]></category>
		<category><![CDATA[Dreamweaver CSS]]></category>
		<category><![CDATA[Dreamweaver Tips]]></category>
		<category><![CDATA[Page Design]]></category>
		<category><![CDATA[Tip of the Day]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.dwcourse.com/?p=1629</guid>
		<description><![CDATA[How to center a web page layout in Dreamweaver (or any other web design program): Duration 2:40 Click for step-by-step directions to Center an HTML Page Layout…]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: center;"><iframe title="YouTube video player" class="youtube-player" type="text/html" width="580" height="390" src="http://www.youtube.com/embed/CcswpZRiYIg?rel=0" frameborder="0"></iframe></p>
<p style="text-align: center;"><em>How to center a web page layout in Dreamweaver (or any other web design program): Duration 2:40</em></p>
<p style="text-align: center;">Click for step-by-step directions to <a href="/dreamweaver/centering-page-layout.php">Center an HTML Page Layout</a>…</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Center+a+CSS+web+page+layout+http%3A%2F%2Fbit.ly%2FscmKz7" title="Post to Twitter"><img class="nothumb" src="http://www.dwcourse.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dwcourse.com/dreamweaver/centering-a-web-layout.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Center an HTML Page Layout</title>
		<link>http://www.dwcourse.com/dreamweaver/centering-page-layout.php</link>
		<comments>http://www.dwcourse.com/dreamweaver/centering-page-layout.php#comments</comments>
		<pubDate>Thu, 18 Jun 2009 19:15:35 +0000</pubDate>
		<dc:creator>dwcourse</dc:creator>
				<category><![CDATA[Page Design]]></category>
		<category><![CDATA[Tip of the Day]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS postitioning]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://dwcourse.com/?p=315</guid>
		<description><![CDATA[Update: The directions here have been updated to accomodate absolutely positioned divs. Thanks to Dianne Lewandowski for pointing out the issue. You can also view my video on Centering a CSS web page layout… I thought I'd expand a bit on my answer to a question from Brandon85 on Twitter. He asked: Why is this so [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>Update:</strong> The directions here have been updated to accomodate absolutely positioned divs. Thanks to Dianne Lewandowski for pointing out the issue. You can also view my video on <a href="/dreamweaver/centering-a-web-layout.php">Centering a CSS web page layout</a>…</p>
<p>I thought I'd expand a bit on my answer to a question from <a title="Brandon" href="http://twitter.com/Brandon85" target="_blank">Brandon85</a> on Twitter. He asked:</p>
<blockquote><p><span><span id="msgtxt2222785130">Why is this so hard!! How do you Center a website in the browser using Dreamweaver?</span></span></p></blockquote>
<p><span><span>Actually, it's relatively easy (if you know how).<span id="more-315"></span></span></span></p>
<ol>
<li>Begin by selecting your entire page in Design View.</li>
<li>Select menu: Insert&gt;Layout Objects&gt;Div Tag (or click on Insert Div Tag in the Common tab of the Insert Palette).</li>
<li>In the Insert Div Tag dialog:
<ol>
<li>Select Wrap Around Selection (your entire design) from the Insert menu.</li>
<li>Leave the Class field empty</li>
<li>Type "wrapper" (without the quotes) into the ID field (this is assuming you don't already have an item with the ID "wrapper."</li>
<li>Click the New CSS Rule button.</li>
</ol>
</li>
<li>In the New CSS rule dialog
<ol>
<li>ID should already be selected in the Selector Type menu.</li>
<li>#wrapper should have been automatically inserted into the Selector Name field.</li>
<li>Decide whether the new style should be in the current document or a new or existing style sheet and make your selection in the Rule Definition menu .</li>
<li>Click the OK button.</li>
</ol>
</li>
<li>In the CSS Rule Definition dialog:
<ol>
<li>Select the Box category.
<ol>
<li>Type in a Width. By default the horizontal width of a div is 100% so you need to set a width for the wrapper div to properly center it. Logically this should be the width (most likely in pixels) of your page design.</li>
<li>Uncheck the Same for All option under Margin.</li>
<li>Set the Right margin to auto by selecting auto in the pop-up menu to the right of the Right field.</li>
<li>Set the Left margin to auto using the same method.</li>
</ol>
</li>
<li>Select the Block category
<ol>
<li>Select left from the Text-Align menu (I'll tell you why in a moment).</li>
</ol>
</li>
<li>Select the Positioning category
<ol>
<li>Select relative from the Position menu. This forces any absolutely positioned divs in your page to align relative to the "wrapper" div rather than the browser window. See <a href="http://dwcourse.com/css-div-positioning">CSS positioning</a> for more information on positioning.</li>
</ol>
</li>
<li>Click OK</li>
</ol>
</li>
</ol>
<p>Your design should now be centered but we still have one step to go.</p>
<p><strong><em>Correction: </em></strong><em>The following work-around was originally mislabeled. It is intended for IE5 compatibility (and can probably be ignored by most folks)</em></p>
<p><strong>Work-Around for Internet Explorer 5</strong>: If desired, we'll need an additional fix to make this IE5 friendly.</p>
<ol>
<li>Set the text-align property of the body style to center (This will center your page layout in IE5)
<ol>
<li>If you already have a body style, double click on it in the Styles Palette to open the CSS Style Definition dialog.</li>
<li>If you don't have a body style, create a new one:
<ol>
<li> Choose menu: Format&gt;CSS Styles&gt;New… (or select New… from the pop-up menu in the upper-right corner of the Styles Palette) <strong>OR</strong></li>
<li>In the New CSS Rule dialog:
<ol>
<li>Choose Tag from the Selector Type menu.</li>
<li>Type "body" into the Selector Name field.</li>
<li>Decide whether the new style should be in the current document or a new or existing style sheet and make your selection in the Rule Definition menu .</li>
<li>Click the OK button to open the CSS Style Definition dialog.</li>
</ol>
</li>
</ol>
</li>
<li>In the CSS Style Definition dialog:
<ol>
<li>Select the Box category.</li>
<li>Select center from the Text-Align menu.</li>
<li>Click OK</li>
</ol>
</li>
</ol>
</li>
</ol>
<p><strong>That explanation I promised</strong>: Setting the text-align property in the body style to center centers your page design but, since styles are inherited in CSS, it also centers all the text on your page. By setting text-align for #wrapper to left, we effectively overrule the centering for all page elements inside of #wrapper (which should be all of the page elements).</p>
<p>Funny how much a 140 character answer on Twitter can grow once it's a blog post!</p>
<p><em>As always, feel free to </em><a style="color: #2361a1; text-decoration: underline; padding: 0px; margin: 0px;" href="mailto:%20jcook@DWcourse.com"><em>email me</em></a><em> with your questions, comments and suggestions. And please follow me on Twitter (</em><a style="color: #2361a1; text-decoration: underline; padding: 0px; margin: 0px;" href="http://twitter.com/dwcourse"><em>DWcourse</em></a><em>) for additional Dreamweaver news and tips.</em></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Center+an+HTML+Page+Layout+http%3A%2F%2Fbit.ly%2FtrHEKi" title="Post to Twitter"><img class="nothumb" src="http://www.dwcourse.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dwcourse.com/dreamweaver/centering-page-layout.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Introduction to Dreamweaver</title>
		<link>http://www.dwcourse.com/dreamweaver/an-introduction-to-dreamweaver.php</link>
		<comments>http://www.dwcourse.com/dreamweaver/an-introduction-to-dreamweaver.php#comments</comments>
		<pubDate>Fri, 08 May 2009 04:25:42 +0000</pubDate>
		<dc:creator>dwcourse</dc:creator>
				<category><![CDATA[Dreamweaver Tips]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Page Design]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://dwcourse.com/?p=257</guid>
		<description><![CDATA[As I mentioned earlier this week, I've been busily working to expand the amount of information we provide here at DWcourse. Well, after some long hours and late nights, I'm proud to announce the release of Let's Get Started with Dreamweaver, my introductory mini-course to Dreamweaver. It's a FREE 50+ page PDF that walks you [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>As I mentioned <a href="http://dwcourse.com/dreamweaver/hostgator.php">earlier this week</a>, I've been busily working to expand the amount of information we provide here at DWcourse.</p>
<p>Well, after some long hours and late nights, I'm proud to announce the release of <a href="http://dwcourse.com/dreamweaver-mini-course">Let's Get Started with Dreamweaver</a>, my introductory mini-course to Dreamweaver.</p>
<p><a href="http://dwcourse.com/dreamweaver-mini-course"><img class="alignnone" title="Lets Get Started with Dreamweaver" src="http://dwcourse.com/wp-content/uploads/2009/05/dwcourse-intro-wide.jpg" alt="" width="500" height="232" /></a></p>
<p>It's a <strong>FREE</strong> 50+ page PDF that walks you step-by-step through the most basic steps you need to master when starting to work with Dreamweaver.</p>
<p>If you've been working with Dreamweaver for years, this information is probably old hat to you by now. However, if you're relatively new to Dreamweaver this mini-course covers everything I wish someone had told me when I first started using DW.</p>
<p>It covers the kinds of things that a lot of people screw up early on, get frustrated with, and then quit before even giving the program a real chance.</p>
<p>Ok, enough with the sales pitch. If you're interested just <a href="http://dwcourse.com/dreamweaver-mini-course" target="_blank">go enter your name</a> &amp; email address and I'll send it over to you.</p>
<p>If you're already registered for our newsletter you don't need to sign up again, there's a copy on its way to your inbox shortly.</p>
<p>Anyway, I really hope this helps and as always, if you have any questions feel free to email me or message me on Twitter.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=An+Introduction+to+Dreamweaver+http%3A%2F%2Fbit.ly%2FssZBgP" title="Post to Twitter"><img class="nothumb" src="http://www.dwcourse.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dwcourse.com/dreamweaver/an-introduction-to-dreamweaver.php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Upgrading from Dreamweaver 8 to CS4</title>
		<link>http://www.dwcourse.com/dreamweaver/upgrading-dreamweaver8-cs.php</link>
		<comments>http://www.dwcourse.com/dreamweaver/upgrading-dreamweaver8-cs.php#comments</comments>
		<pubDate>Thu, 02 Apr 2009 21:09:51 +0000</pubDate>
		<dc:creator>dwcourse</dc:creator>
				<category><![CDATA[Page Design]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tip of the Day]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[CS4]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Dreamweaver 8]]></category>
		<category><![CDATA[upgrading]]></category>
		<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://dwcourse.com/?p=29</guid>
		<description><![CDATA[Personally I considered Dreamweaver CS3, Adobe's first upgrade to the program after acquiring it, to be a "must have" update.Obviously, a lot of you didn't see it that way.

Lately I've fielded a lot of questions from people considering upgrading from Dreamweaver 8 (CS2) to Dreamweaver CS4. While it's fairly easy to find information about the incremental updates: from DW8 to CS3 and from CS3 to CS4 (links at the end of this post) I haven't found a source that offers an overview of what's in store if you make the leap from 8 directly to CS4. So I've put together a quick  overview with some brief comments of the features that await you at the end of the DW8 to DWCS4 upgrade process.]]></description>
			<content:encoded><![CDATA[<p></p><p><em><span style="color: #ff0000;"><strong>IMPORTANT:</strong> </span>With the announcement of Creative Cloud, Adobe has also changed its upgrade pricing policy. For CS6 only owners of CS5 and CS5.5 will qualify for upgrade pricing discounts. For more on this critical change and how it will affect your upgrade plans see <a title="Creative Suite: Upgrade, Wait for Creative Cloud or ???" href="http://www.dwcourse.com/dreamweaver/adobe-creative-cloud-or-suite-upgrade.php">Creative Suite: Upgrade, Wait for Creative Cloud or ???</a></em></p>
<p><em></em>Personally I considered Dreamweaver CS3, Adobe's first upgrade to the program after acquiring it, to be a "<strong>must have</strong>" update. Obviously, a lot of you didn't see it that way.</p>
<p>Lately I've fielded a lot of questions from people considering upgrading from Dreamweaver 8 (CS2) to Dreamweaver CS4. While it's fairly easy to find information about the incremental updates: from DW8 to CS3 and from CS3 to CS4 (links at the end of this post) I haven't found a source that offers an overview of what's in store if you make the leap from 8 directly to CS4. So I've put together a quick  overview with some brief comments of the features that await you at the end of the DW8 to DWCS4 upgrade process.<span id="more-29"></span></p>
<h2>New in CS3</h2>
<p><em><strong>Overview:</strong> CS3 marked the beginning of the process of integrating Dreamweaver into Creative Suite but more importantly it was the first version of Dreamweaver  to support CSS (Cascading Style Sheets) styles and layout in a manner accessible to non-programmers. That feature alone made CS3 a required update in my book. Of course with the new functionality there was also a bit of a learning curve.</em></p>
<ul>
<li><strong>Integration with Adobe Creative Suite</strong>
<ul>
<li>Copy and paste from Photoshop</li>
</ul>
</li>
<li><strong>Improved CSS handling</strong>
<ul>
<li>Convert inline CSS to a rule</li>
<li>Built-in CSS-based page layouts</li>
</ul>
<p><strong>Spry (AJAX) widgets and effects</strong></p>
<ul>
<li>Pop-out menus, "accordion" panels and more</li>
</ul>
<ul>
<li><strong>Browser compatibility checking</strong><br />
Hints<br />
Community-based help</li>
</ul>
</li>
<li><strong>Tag Inspector</strong>: right click to view</li>
<li><strong>Adobe Device Central</strong>
<ul>
<li>Preview designs for mobile devices</li>
</ul>
</li>
<li><strong>Better Intel support for Macs</strong></li>
</ul>
<h2>New in CS4</h2>
<p>CS4 continues Dreamweaver's integration into Creative Suite but the changes are more evolutionary than those in CS3. What you'll notice immediately is several UI (user interface) changes that may take a bit of getting used to. Other changes offer increase functionality - especially In-Context Edit and AIR Authoring - but you might never notice them if you don't go looking.</p>
<ul>
<li><strong>Improved integration with Adobe Creative Suite</strong>
<ul>
<li>Photoshop Smart Objects automatically update placed images when the linked Photoshop image is changed</li>
</ul>
</li>
<li><strong>New Workspaces</strong>
<ul>
<li>Built in workspaces: App Developer, App Developer Plus, Classic, Coder, Coder Plus, Designer, Designer Compact</li>
<li>Ability to create and save custom workspaces</li>
</ul>
</li>
<li><strong>Related Files Bar</strong>
<ul>
<li>Easy access to linked JavaScript and CSS files</li>
</ul>
</li>
<li><strong>Live View</strong>
<ul>
<li>View JavaScript and CSS effects within Dreamweaver</li>
<li>View effects of code changes "live"</li>
</ul>
</li>
<li><strong>Improved code hinting</strong>
<ul>
<li>AJAX and JavaScript code hinting</li>
</ul>
</li>
<li><strong>In-context  editing</strong>
<ul>
<li>Online editing through an Adobe hosted service</li>
</ul>
</li>
<li><strong>HTML Datasets</strong>
<ul>
<li>Import tabular data from an HTML file into a sortable table</li>
</ul>
</li>
<li><strong>Subversion Version Control</strong>
<ul>
<li>Improved version control for site with multiple authors</li>
</ul>
</li>
<li><strong>AIR Authoring</strong>
<ul>
<li>Convert your web site into a stand-alone application</li>
</ul>
</li>
<li><strong>Additional document viewing options</strong>
<ul>
<li>When viewing code and design in the Split view, the window can now be split vertically as well as horizontally (menu: View&gt;Split Vertically)</li>
<li>Menu: View&gt;Visual Aids&gt; offers a variety of viewing options to make page elements more readily identifiable</li>
</ul>
</li>
<li><strong>Code Navigator</strong>
<ul>
<li>Easily access code in linked files</li>
</ul>
</li>
<li><strong>Layout Mode for "drawing" tables no longer available</strong></li>
</ul>
<h2>The bottom line</h2>
<p><strong>Should you upgrade from Dreamweaver 8 to CS4?</strong></p>
<p>In a word, <strong>YES</strong>. You'll get the benefit of two excellent updates, an improved UI and access to "modern" web technologies like CSS and AJAX.</p>
<p><strong>What about the learning curve?</strong></p>
<p>Make no mistake you may encounter a significant learning curve moving to CS4. How steep it is will depend upon your familiarity with advanced web technologies such as CSS. If the move to CS4 marks your first venture into CSS-based (as opposed to table-based) layout, expect a few headaches as the wonders (and eccentricities) of Cacscading Style Sheets are revealed.</p>
<p>However, if you're serious about web design, the transition to CSS is a requirement and CS4 offers the tools and templates to make the transition possible and rewarding if not always pleasant.</p>
<h2>Additional resources:</h2>
<ul>
<li><a href="http://webdesign.about.com/b/2007/10/16/whats-new-in-dreamweaver-cs3.htm" target="_blank">What's new in Dreamweaver CS3</a>: An excellent step-by-step guide the differences between DW8 and CS3</li>
<li><a href="http://www.adobe.com/products/dreamweaver/features/" target="_blank">6 Things To Like About Dreamweaver CS4</a></li>
<li><a href="http://www.adobe.com/products/dreamweaver/features/" target="_blank">Dreamweaver CS4 Features Overview</a> (Adobe)</li>
</ul>
<h2>What's your experience?</h2>
<p>If you've got information or tips that you'd like to share about the Dreamweaver upgrade experience or if you got questions before or after making the link, please leave a comment below.</p>
<p><em><a href="http://twitter.com/DWcourse" target="_blank">Follow me on Twitter…</a></em></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Upgrading+from+Dreamweaver+8+to+CS4+http%3A%2F%2Fbit.ly%2FsxJa7p" title="Post to Twitter"><img class="nothumb" src="http://www.dwcourse.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dwcourse.com/dreamweaver/upgrading-dreamweaver8-cs.php/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>

