<?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>Layers Magazine &#187; Janine Warner</title>
	<atom:link href="http://layersmagazine.com/author/janine-warner/feed" rel="self" type="application/rss+xml" />
	<link>http://layersmagazine.com</link>
	<description>The How-to Magazine for Everything Adobe</description>
	<lastBuildDate>Wed, 23 May 2012 20:08:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Designing Pages in Dreamweaver with CSS3</title>
		<link>http://layersmagazine.com/designing-pages-in-dreamweaver-with-css3.html</link>
		<comments>http://layersmagazine.com/designing-pages-in-dreamweaver-with-css3.html#comments</comments>
		<pubDate>Thu, 24 Feb 2011 17:05:19 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://layersmagazine.com/?p=14916</guid>
		<description><![CDATA[ All the hype about HTML5 and CSS3 has Web designers chomping at the keyboard to make the Web more beautiful. With all of the warnings that these cool new features may not be ready for prime time, what should you do today? Here are a few of my favorite new CSS3 techniques that work well enough to put them to use right away.]]></description>
			<content:encoded><![CDATA[<p>Â All the hype about HTML5 and CSS3 has Web designers chomping at the keyboard to make the Web more beautiful. With all of the warnings that these cool new features may not be ready for prime time, what should you do today? Here are a few of my favorite new CSS3 techniques that work well enough to put them to use right away.</p>
<p><strong>1 USE ANY FONT ON YOUR WEBPAGES<br />
</strong>Designers have been begging for years to have more fonts on the Web (without resorting to images). Now, thanks to CSS3, you can link to any font and use that font for any or all of the text on your webpages. This long-awaited feature already works in the most recent versions of most browsers, even Internet Explorer (since version 8). In older browsers, text reverts to the default font, but that&#x0092;s what people with old browsers deserve anyway. Your hip friends and clients using Firefox, and even Safari on an iPhone or iPad, will see your fancy fonts.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0129.jpg" alt="" /></p>
<p><strong>2 TARGETING BROWSERS WITH CSS<br />
</strong>The good news is a growing percentage of Internet users can view these new CSS features such as linked fonts. If you use a good traffic reporting service, such as Google Analytics (shown here), you can identify the browsers that visit your website&#x0097;and design for your target audience. Firefox is now the most popular browser in the U.S., and other browsers that use WebKit (such as Safari) also support most of the new CSS3 features. Even Internet Explorer supports a growing number of HTML5 and CSS3 features with each new version. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0231.jpg" alt="" /></p>
<p><strong>3 ENHANCE DESIGNS WITH CSS3 TECHNIQUES<br />
</strong>If you want to design for the future, without compromising the present, all of the CSS rules in this tutorial won&#x0092;t break, even in older browsers. If you use something like a drop shadow or fancy font, an old browser simple won&#x0092;t display it. So you have nothing to lose but a few minutes with this tutorial. The page shown here in Firefox was designed entirely with CSS, not an image on the page. The majority of the Web audience is using browsers that can display these new features already.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0330.jpg" alt="" /></p>
<p><strong>4 DREAMWEAVER WON&#x0092;T DISPLAY HTML5/CSS3<br />
</strong>If you know how to write the styles and other code, you can use any Web design program or text editor to create pages with HTML5 and CSS3. If you&#x0092;re used to getting a good preview of your page designs in Dreamweaver, you may be disappointed that even Dreamweaver CS5 doesn&#x0092;t support all of the new features of HTML5 and CSS3 (at least not yet). If you add the HTML5 Pack (shown in the next step) you can preview pages with these features, but in Design View in Dreamweaver, as you see here, linked fonts and drop shadows won&#x0092;t display. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0428.jpg" alt="" /></p>
<p><strong>5 THE HTML5 EXTENSION FOR DREAMWEAVER<br />
</strong>What you see here is the multiscreen display you get when you add the HTML5 Pack to Dreamweaver. (The HTML5 Pack is now part of the 11.0.3 update for Dreamweaver CS5). The HTML5 Extension adds a three-way split-screen preview that simulates how your pages will look in an iPhone, iPad, and any browser that supports HTML5. The extension also supports many new CSS3 enhancements, which is why you see the fancy fonts, rounded corners, and drop-shadow effects in this preview.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0526.jpg" alt="" /></p>
<p><strong>6 LINKING FONTS<br />
</strong>You add the font link tag to the head area of an HTML page referencing where the font is hosted on a Web server. There are multiple ways to set up fonts on a server, and a growing list of online services, such as the Google Font Directory, that make fonts easy to use (if you&#x0092;re willing to settle for limited font collections). Here&#x0092;s the code generated to link to a font named Lobster in the Google Font Directory: . Just add this code to the top of any webpage and you can use the font in CSS styles.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0625.jpg" alt="" /></p>
<p><strong>7 USING LINKED FONTS IN CSS STYLES<br />
</strong>Once you link a font to your page, you can use it in any CSS style rule. Here are two examples that use the Lobster font and the Molengo font from the Google Font Directory:<br />
? .molengo { font-family: &#8216;Molengo&#8217;, arial, serif; }<br />
H1 { ?font-family: &#8220;Lobster, arial, serif; font-size: large; ?}? .</p>
<p>Finally, you need to apply a style to text in the page (like the ones shown in the image above and the example below):<br />
&lt;p class=&#8221;molengo&#8221;&gt;. This is how you&#x0092;d format the HTML to apply a class style like .molengo to use the Molengo font to format this sentence. &lt;/p&gt;</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0722.jpg" alt="" /></p>
<p><strong>8 GENERATE FONT CODE AT FONTSQUIRREL<br />
</strong>Check out how FontSquirrel.com makes it easy to use free fonts or to generate the code you need for your website to use any font you can upload to their server. (You&#x0092;ll find detailed instructions on how to use their Font-Face Generator on the site.) They also offer a collection of font kits that are ready for you to use. Essentially, they have collected all the best free fonts they could find (so you don&#x0092;t have to worry about licensing issues, even on commercial projects). Similar to the Google Font Directory, you can generate the code you need from their site, but FontSquirrel has a bigger collection of fonts.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0821.jpg" alt="" /></p>
<p><strong>9 CREATE SIMPLE ROUNDED CORNERS<br />
</strong>One of the simplest and most popular new options in CSS3 is the ability to create rounded corners without a lot of extra markup or that image trick we used to put in the corners of our divs. If the Web were a perfect, standards-based world, border-radius: is all the code you&#x0092;d need, but if you want your rounded corners to work in Firefox, you&#x0092;ll need to add a second line with -moz to create a style like this:<br />
.rounded-corners { width: 225px; padding: 10px; border-radius: 15px; -moz-border-radius: 15px; border: 1px solid #333;}</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0922.jpg" alt="" /></p>
<p><strong>10 CREATE COMPLEX ROUNDED CORNERS<br />
</strong>Now, rounder corners can be created with a single line of the border-radius option in CSS and can be used to create a different style for each corner. Using the four border-radius properties (border-bottom-right-radius, border-top-right-radius, etc.) you can create more complex designs. For example, this code makes the two left corners rounded:<br />
.two-rounded-corners { width: 200px; padding: 20px; margin: 10px; color: #fff; background-color: #999; border-top-left-radius: 50px 50px; border-bottom-left-radius: 50px 50px; -moz-border-radius: 50px 50px 0px 0px; 	}</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1036.jpg" alt="" /></p>
<p><strong>11 ADD A DROP SHADOW TO TEXT<br />
</strong>CSS3 finally eliminates the need for Photoshop when all you want to do is add a simple shadow. The text-shadow property can be used in a style rule. For example, this code adds a drop shadow to any text formatted with the H1 tag. You can adjust the color and spacing of drop shadows by changing the pixel size and hexadecimal color code in the example below:<br />
h1 { text-shadow: 2px 2px 2px #999;}</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1135.jpg" alt="" /></p>
<p><strong>12 COMBINE FONTS AND DROP SHADOWS<br />
</strong>You can use the CSS rules in combination to create more elaborate text effects. In this example, we used a font face, text shadow, and contrasting text and background colors. Remember, you must first link a font to a page (see Step 6) before you can use a font in a style rule. Here&#x0092;s the style:<br />
.logo { font-size: 300%; color: #FFF; background-color: #930; padding: 10px; text-shadow: 2px 2px 2px #000; }</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1233.jpg" alt="" /></p>
<p><strong>13 ADD A DROP SHADOW TO A DIV<br />
</strong>You can also add drop shadows to div tags. Again, you can control the color and location of the shadow, and you can even control how big it is, but the code for this is a bit more complex when you add all of those options, and you&#x0092;ll need to use three different variations on this code to create shadows that work in Firefox and WebKit browsers. The code for this example is included in the following step, where you can see how it looks in Safari (like the other features in this column, you won&#x0092;t see the drop shadows in Dreamweaver).</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1332.jpg" alt="" /></p>
<p><strong>14 VIEW SHADOWS IN FIREFOX AND SAFARI<br />
</strong>To view most of these features, you&#x0092;ll need to preview your pages in the latest version of Firefox or Safari. Here&#x0092;s the example shown in Safari above (and in Dreamweaver in the previous step).<br />
.drop-shadow {<br />
width: 625px;<br />
padding: 5px;<br />
-webkit-box-shadow: #CCC 10px 10px 5px;<br />
-moz-box-shadow: #CCC 10px 10px 5px;<br />
box-shadow: #CCC 10px 10px 5px; }</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1429.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/designing-pages-in-dreamweaver-with-css3.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Editing a WordPress blog with Dreamweaver CS5</title>
		<link>http://layersmagazine.com/editing-a-wordpress-blog-with-dreamweaver-cs5.html</link>
		<comments>http://layersmagazine.com/editing-a-wordpress-blog-with-dreamweaver-cs5.html#comments</comments>
		<pubDate>Thu, 13 Jan 2011 16:21:33 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://layersmagazine.com/?p=14587</guid>
		<description><![CDATA[One of the most dramatic improvements to Dreamweaver CS5 is the ability edit WordPress themes, but before you can get WordPress (or Joomla! or Drupal) to work, you’ll need to set up your computer as a Web server.]]></description>
			<content:encoded><![CDATA[<p>One of the most dramatic improvements to Dreamweaver CS5 is the ability edit WordPress themes, but before you can get WordPress (or Joomla! or Drupal) to work, you&#x0092;ll need to set up your computer as a Web server. It&#x0092;s a lot of technical steps, but once you get all this set up, you&#x0092;ll be able to use all of the great design tools in Dreamweaver.</p>
<p><strong>1 WEB SERVER AND DATABASE SOFTWARE<br />
</strong>To run WordPress, you need a Web server, a MySQL database, and PHP installed on your local computer. It&#x0092;s also best to have the Firefox Web browser, so be sure to install it if you haven&#x0092;t already. On a Mac, you can get everything you need in one nifty package at www.mamp.info. If you&#x0092;re on Windows, go to wampserver.com/en. Because of the limited space in this column, these steps are specific to the Mac, but the process is similar for both platforms (and you&#x0092;ll find special instructions for Windows users in the Dreamweaver Help Center on my site at www.DigitalFamily.com).</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0122.jpg" alt="" /></p>
<p><strong>2 LAUNCH MAMP<br />
</strong>After you download, install, and launch MAMP, a little window opens with controls to turn the Apache server and MySQL database on and off. Give them a second to get going and MAMP will launch the Firefox Web browser. If the browser doesn&#x0092;t open automatically, click on the Open Start Page button. You&#x0092;ll know that the server is working on your Mac when you see the Welcome to MAMP screen in your browser window and http://localhost/8888/MAMP in the address bar. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0224.jpg" alt="" /></p>
<p><strong>3 SET SERVER PREFERENCES<br />
</strong>This is an optional step to remove the 8888 from the local URL: In the small, floating MAMP window, click Preferences, then click the Ports tab, and click the Set to Default Apache and MySQL Ports button. This changes the port from 8888 to 80. Click OK. Anytime you make a change to the server setup, or if things just don&#x0092;t seem to be working right, restarting the server often fixes the problem. Click the Stop Servers button, wait a minute, and then click the Start Servers button to restart the server. Click the Open Start Page button to refresh the browser with the simplified URL.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0323.jpg" alt="" /></p>
<p><strong>4 CREATE A MYSQL DATABASE<br />
</strong>Next, you need to create a database. Don&#x0092;t worry, it&#x0092;s not as hard as you may imagine because WordPress builds all of the tables for you. With MAMP open in Firefox, click on the phpMyAdmin tab at the top. In the Create New Database Field, enter a name (don&#x0092;t use spaces or special characters). Make note of the name. Better yet, copy it so you can just paste it into WordPress when you get to Step 8 (you&#x0092;ll need to enter it exactly). Click the Create button and you&#x0092;ve created a database (WordPress takes care of the rest). </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0422.jpg" alt="" /></p>
<p><strong>5 DOWNLOAD AND INSTALL WORDPRESS<br />
</strong>Next, go to WordPress.org (not WordPress.com) and download WordPress (it&#x0092;s free and it&#x0092;s a quick download.) Unzip the WordPress folder and you&#x0092;ll find all of the files and subfolders for a new blog. There&#x0092;s really nothing to install but you&#x0092;ll need to copy these files into the root folder of your local Apache Web server. On a Mac, the htdocs folder inside the MAMP folder inside the Applications folder is the root folder of your local server. (More on copying these files into the htdocs folder in the next step.)</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0520.jpg" alt="" /></p>
<p><strong>6 COPY FILES INTO THE HTDOCS FOLDER<br />
</strong>If you&#x0092;re creating a single blog, simply copy all of the files in the WordPress folder you unzipped into the htdocs folder (inside the MAMP folder). If you&#x0092;re working on multiple blogs, or if your blog is part of an existing Dreamweaver site and you want to work on all of the files together, you can create subfolders in the htdocs folder. Then copy the entire WordPress folder into the subfolder within htdocs as well as any Dreamweaver site files. This way you can work on them together in the same root folder in Dreamweaver.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0619.jpg" alt="" /></p>
<p><strong>7 OPEN WORDPRESS IN FIREFOX<br />
</strong>Now it&#x0092;s time to open the blog in a Web browser on your computer. Make sure that the Apache server and MySQL database are still running in the background (you can always check the floating MAMP dialog). In Firefox, enter the URL: http://localhost/ followed by any subfolder names you added to the htdocs folder. Note: The http:// isn&#x0092;t optional, and you don&#x0092;t use www. Also note: If you didn&#x0092;t change the preferences in Step 3, you&#x0092;ll still need the 8888, so your URL would be something like this: http://localhost/8888/foldername. Don&#x0092;t panic when WordPress returns an error.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0716.jpg" alt="" /></p>
<p><strong>8 CREATE A CONFIGURATION FILE<br />
</strong>Click the Create a Configuration File button and follow the WordPress instructions. On the screen where you have to enter the name of the database, enter the exact name you entered when you created the database in Step 4. In both the MySQL User Name field and the Password field enter &#x0093;root.&#x0094; Note: All MySQL databases come with the user name and password &#x0093;root.&#x0094; Unless you&#x0092;re worried about someone hacking your blog on your local computer, there&#x0092;s no reason to change them. Leave the last two fields in the WordPress setup page as they are and click Submit.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0815.jpg" alt="" /></p>
<p><strong>9 INSTALL AND SET UP WORDPRESS<br />
</strong>Click Run the Install button and fill in the WordPress Welcome screen. I recommend you don&#x0092;t use &#x0093;admin&#x0094; as the Username and that you take note of your user name and password because you&#x0092;ll need them to access your blog even on your local computer. Follow the rest of the WordPress instructions and you&#x0092;ll soon find yourself at the WordPress Dashboard. From here you can do all the things on your local computer that you can do on a remote server with a WordPress install, including creating and editing posts, downloading and changing themes, adding plug-ins, etc.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0917.jpg" alt="" /></p>
<p><strong>10 SET UP YOUR BLOG IN DREAMWEAVER<br />
</strong>Once you have the Apache server and MySQL database working and you&#x0092;ve installed WordPress, you can set up your blog so that you can edit it in Dreamweaver. You set up a blog much as you would set up any site in Dreamweaver. Choose Site&gt;New Site. Give the site a name (this name is just for your reference). Click on the Browse for Folder icon at the far right of the Local Site Folder field and browse to find the htdocs folder in your MAMP folder in the Applications folder. If you created a subfolder for your site, select that folder. Don&#x0092;t click Save yet.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1031.jpg" alt="" /></p>
<p><strong>11 SET UP THE TESTING SERVER<br />
</strong>With the Site Setup dialog still open, click the Servers category on the left. Click on the small plus sign (+) near the bottom of the servers dialog to add a new server (just as if you were setting up a remote server connection). Enter a name, such as &#x0093;Testing Server&#x0094; (again this name is just for your reference). From the Connect Using drop-down list, choose Local/Network (not FTP). With Local/Network selected, the rest of the options will change. Again, use the Browse icon (folder) to find the site folder. If you didn&#x0092;t create a subfolder, it should be Applications/MAMP/htdocs. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1130.jpg" alt="" /></p>
<p><strong>12 SAVE SERVER SETTINGS<br />
</strong>In the Web URL field at the bottom of the Server Setup dialog, type http://localhost/ (again, adjust this name to include any subfolder names you may have added to the htdocs folder.) Note: You&#x0092;ll need to add 8888 if you didn&#x0092;t change the preferences in MAMP in Step 3. Click Save. The dialog closes and the server is added to the Servers list in the Site Setup dialog. Important: Next to the server name are two checkboxes for Remote and Testing. Uncheck Remote and check Testing. Then click Save to complete the setup.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1228.jpg" alt="" /></p>
<p><strong>13 OPEN THE INDEX.PHP PAGE<br />
</strong>Choose File&gt;Open and select the index.php file in your WordPress blog folder (you can also open it by double-clicking on the index.php page in the Files panel). Expect a blank screen&#x0097;this doesn&#x0092;t mean you&#x0092;ve made a mistake (necessarily). In tiny text at the top of the workspace, look for the message: This page may have dynamically-related files that can only be discovered by the server. Click the Discover link, then click Yes. Finally, click the Live View button at the top of the workspace to make Dreamweaver act like a Web browser and display the dynamic WordPress page.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1327.jpg" alt="" /></p>
<p><strong>14 EDIT YOUR BLOG IN DREAMWEAVER<br />
</strong>If you got through all those steps, congrats! Setting all that up is complicated, but you only have to get it right once. Dreamweaver saves your server settings and you can now take advantage of all of the wonderful CSS and PHP features in Dreamweaver to edit your blog theme. (Note: You still want to create and edit posts in the WordPress Dashboard.) When you get the theme design the way you want it, you can copy just the CSS file to your remote Web server, or use the WordPress export/import features to move the entire blog from your local server to a remote server.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1424.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/editing-a-wordpress-blog-with-dreamweaver-cs5.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Editing CSS Layouts in Dreamweaver CS5</title>
		<link>http://layersmagazine.com/editing-css-layouts-in-dreamweaver-cs5.html</link>
		<comments>http://layersmagazine.com/editing-css-layouts-in-dreamweaver-cs5.html#comments</comments>
		<pubDate>Tue, 09 Nov 2010 18:29:07 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://layersmagazine.com/?p=14186</guid>
		<description><![CDATA[Dreamweaver CS5 includes a new collection of CSS layouts you can customize to create webpage designs. These layouts are designed to work well in a variety of Web browsers, and they can help you avoid common problems with CSS. This tutorial shows you how to edit these layouts to make them your own.]]></description>
			<content:encoded><![CDATA[<p>Dreamweaver CS5 includes a new collection of CSS layouts you can customize to create webpage designs. These layouts are designed to work well in a variety of Web browsers, and they can help you avoid common problems with CSS. This tutorial shows you how to edit these layouts to make them your own.</p>
<p><strong>1 CREATE A NEW PAGE<br />
</strong>To use a CSS layout in Dreamweaver, create a new document by choosing File&gt;New. Then, choose Blank Page from the left column and HTML from the Page Type column. Choose one of the more advanced options&#x0097;such as ASP.NET, PHP, or ColdFusion&#x0097;only if you&#x0092;re working on a dynamic site. (If you&#x0092;re not familiar with these technologies, stick with HTML.) From the Layout column in the middle, click to select a CSS layout and a preview of the layout is displayed in the top right of the dialog.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0116.jpg" alt="" /></p>
<p><strong>2 CHOOSE A FIXED OR LIQUID LAYOUT<br />
</strong>Dreamweaver includes several layouts designed with two distinct approaches to CSS. When you create a new page with one of these layouts, the first thing you must do is decide which type you want to use. Essentially, you have two options: Liquid layouts are designed to expand and contract depending on the size of the browser window; fixed layouts are centered within the browser and set to a width of 960 pixels. Although there are some advantages to the flexibility of liquid layouts, you&#x0092;ll have more design control with fixed layouts. We chose the 2 Column Fixed, Left Sidebar, Header and Footer layout.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0218.jpg" alt="" /></p>
<p><strong>3 SPECIFY HOW TO SAVE THE STYLES<br />
</strong>When you save a CSS layout, Dreamweaver generates all of the CSS styles to create the layout as it creates the page. You can choose to save the styles in an internal style sheet or an external one. The Layout CSS drop-down menu includes three options: Add to Head creates an internal style sheet with all of the styles saved in the Head area of the file; Create New File saves all of the styles in a new external style sheet linked to the page; and Link to Existing File lets you add the styles to an existing external style sheet.	</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0317.jpg" alt="" /></p>
<p><strong>4 SAVE THE NEW PAGE AND STYLES<br />
</strong>Click Create to open the page in the main workspace. If you chose to save the styles in an external style sheet, a dialog will first prompt you to save the style sheet separately. If the styles are contained in an internal style sheet, they&#x0092;re saved automatically when you save the page. With the new page open, choose File&gt;Save to save the page and the corresponding styles at the same time. It&#x0092;s also good practice to add a page title as soon as you create a new page so you don&#x0092;t forget to replace the words &#x0093;Untitled Document&#x0094; in the Title field.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0417.jpg" alt="" /></p>
<p><strong>5 EDITING TEXT IN A CSS LAYOUT<br />
</strong>To add text, just click and start typing. You can replace any of the text in the page or simply delete it. Just be careful as you delete and replace text that you don&#x0092;t remove the formatting unintentionally. Keep in mind that there is code behind the Design view and if you delete too much, you may turn a headline into plain text by accident. If this happens, just use Undo (Command-Z [PC: Ctrl-Z]) to restore the formatting, or use any of formatting features to format the text as you prefer. You format text in these layouts as you would format any other text on a page in Dreamweaver.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0515.jpg" alt="" /></p>
<p><strong>6 EDIT STYLES IN CSS STYLES PANEL<br />
</strong>When you work with CSS layouts, the style information is saved in an internal or external style sheet. Either way, you can edit the styles in the CSS Styles panel. Choose Window&gt;CSS Styles to open the panel. Make sure you have the All button selected at the top of the CSS Styles panel to view all of the styles. Click the triangle (PC: plus [+] sign) next to the style sheet name to open the style sheet and view the list of style names.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0614.jpg" alt="" /></p>
<p><strong>7 CHANGING THE WIDTH OF A CSS LAYOUT<br />
</strong><br />
The CSS layouts in Dreamweaver follow a common practice of using div tags as dividers (or boxes) around each element on the page and then using styles to describe how those boxes should be displayed. Each layout includes a div tag with a class style named .container that surrounds everything else in the layout. To change the width of the overall design, click on .container and change the Width in the CSS Styles panel. The fixed width of CSS layouts in version CS5 is 960 pixels wide, which is the recommended width for most pages on the Web today.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0712.jpg" alt="" /></p>
<p><strong>8 CLASS STYLES VS ID STYLES<br />
</strong>In versions CS3 and CS4, layouts in Dreamweaver used a combination of Class and ID styles, but the layouts in CS5 use only Class styles. All of these layouts follow the rules of CSS, but they were created by different designers with different philosophies about CSS. ID styles can only be used once per page and are commonly used for the container, header, and footer styles in CSS layouts. Class styles can be used multiple times per page so they are more versatile. The designers who created the CS5 layouts preferred this option for all of the styles in these layouts. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0811.jpg" alt="" /></p>
<p><strong>9 REVIEW CSS STYLES<br />
</strong>If you&#x0092;re new to CSS, the layouts can be confusing at first because you can&#x0092;t just change the colors or sizes of elements in the design area of Dreamweaver. You need to create new styles or edit the style that&#x0092;s already associated with an element to change the color, width, or other formatting. A good way to start is simply by clicking on each style in the CSS Styles panel to get familiar with the rules defined in the style sheet. You can double-click on a style name in the CSS Styles panel to edit it in the CSS Rule Definition dialog.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0913.jpg" alt="" /></p>
<p><strong>10 EDIT PAGE-WIDE SETTINGS<br />
</strong>To edit page-wide settings, such as the background color of the page or the main font face, size, and color of the text used throughout the page, double-click on the style named body in the CSS Styles panel. In the CSS Rule Definition dialog, select the Type category from the left to change font settings. Select the Background category and use the color well in the Background-Color field to specify a color for the entire background of the page. If you prefer, you can enter any hexadecimal color code in the Background-Color field. Click OK to save the changes.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1027.jpg" alt="" /></p>
<p><strong>11 ADD AN IMAGE TO THE HEADER<br />
</strong>You can insert images into any section of a CSS layout just as you would any other page in Dreamweaver. To add an image into the header area, you should first delete the placeholder image with the text &#x0093;Insert_logo (180 x 90).&#x0094; You can insert an image of any size into the header area of the page. First, click to place your cursor in the header area, then choose Insert&gt;Image and select any image on your hard drive and click OK. If the Image Tag Accessibility Attributes dialog opens, enter a brief text description in the Alternate Text field and click OK again.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1126.jpg" alt="" /></p>
<p><strong>12 EDIT THE SIDEBAR<br />
</strong>You can change the color and width of the sidebar by editing the style named .sidebar1. Double-click on .sidebar1 in the CSS Styles panel to open it in the CSS Rules Definition dialog. Click on the Background category on the left to change the background color. To remove the background color, delete the hexadecimal color code from the Background field and leave it blank. To change the width, choose the Box category on the left, enter the width you want in the Width field, and choose a size option, such as pixels. Click Apply to preview the changes; click OK to save them.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1224.jpg" alt="" /></p>
<p><strong>13 EDIT LINK STYLES<br />
</strong>The color, size, and style of the links in the left sidebar of the CSS layouts in Dreamweaver are controlled by three different style rules. The top border and bottom margin are defined in the style ul.nav; the bottom border is defined in the style ul.nav li. The way the links appear in the page is defined in the style ul.nav a, ul.nav a:visited. To change the rollover effect, edit the style name ul.nav a:hover, ul.nav a:active, ul.nav a:focus. Double-click the name in the CSS Styles panel to open any of these styles in the CSS Rule Definition dialog to edit them.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1323.jpg" alt="" /></p>
<p><strong>14 ALIGN IMAGES AND OTHER ELEMENTS<br />
</strong>All of the CSS layouts that come with Dreamweaver CS5 include styles you can use to align images and other elements to the left or right of the page. To use these styles to align an image, insert the image and then select it. With the image selected, the Properties inspector at the bottom of the workspace changes to the image options. Click to open the Class drop-down menu and select fltrt (to align the selected image to the right using the float right style) or fltlft (to align the selected image to the left using the float left style).</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1420.jpg" alt="" /></p>
<p><em>ALL IMAGES BY JANINE WARNER UNLESS OTHERWISE NOTED</em></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/editing-css-layouts-in-dreamweaver-cs5.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Six New Features in Dreamweaver CS5</title>
		<link>http://layersmagazine.com/six-new-features-in-dreamweaver-cs5-2.html</link>
		<comments>http://layersmagazine.com/six-new-features-in-dreamweaver-cs5-2.html#comments</comments>
		<pubDate>Tue, 21 Sep 2010 17:36:16 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://layersmagazine.com/?p=13757</guid>
		<description><![CDATA[Here’s how to use some of the coolest new features, from troubleshooting CSS with the new inspect option, to adding advanced Ajax and jQuery features using the widget browser, to testing your pages in different Web browsers using the Adobe BrowserLab website.]]></description>
			<content:encoded><![CDATA[<p>Every upgrade brings something new, but Dreamweaver CS5 brings more goodies than most previous upgrades, and you can put these new features to use right away. Here&#x0092;s how to use some of the coolest new features, from troubleshooting CSS with the new inspect option, to adding advanced Ajax and jQuery features using the widget browser, to testing your pages in different Web browsers using the Adobe BrowserLab website.</p>
<p><strong>1 THE NEW, SIMPLER, SITE SETUP<br />
</strong>In version CS5, Adobe streamlined the website setup process. When you first start working on any new or existing site in Dreamweaver, it&#x0092;s important to begin by setting up the site and identifying your main website folder. The new Site Setup dialog (Site&gt;New Site) requires two settings to get started. First, give your site a name (any name will do, it&#x0092;s just for your reference). Next, click the folder icon to the right of the Local Site Folder field and select the folder on your hard drive where you&#x0092;ll store all of the files and subfolders in your site.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/160.jpg" alt="" /></p>
<p><strong>2 SETTING UP WEB SERVERS<br />
</strong>Use the list on the left of the Site Setup dialog to access more advanced features and FTP settings. The new dialog now makes it possible to set up multiple servers for any site, a great way to manage both a testing server and a live server for the same website. Note: You&#x0092;ll need to click the Add New Server icon (+, plus sign) at the bottom of the<br />
Servers tab to open the FTP settings dialog. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/214.jpg" alt="" /></p>
<p><strong>3 OPTIONAL IMAGES FOLDER AND MORE<br />
</strong>You&#x0092;ll find many other options in the Site Setup dialog when you click the Advanced Settings tab, including the setting for an images folder in your local site folder. If you identify an images folder, and then insert an image into a page that is outside your root folder, Dreamweaver will copy the image into the folder you identify in this field. You can also use the Advanced Settings tab to specify a folder for spry assets, setup version control, cloaking, contribute, and other advanced features. When finished defining your settings click Save and you&#x0092;re done.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/313.jpg" alt="" /></p>
<p><strong>4 THE WIDGET BROWSER<br />
</strong>The Adobe Widget Browser makes it easy to add a growing list of widgets to your site. Most are created in jQuery or Ajax and you can use them to add slide shows, drop-down menus, and other interactive features to your webpage. To access the Widget Browser, select it from the Extend Dreamweaver menu (the gear icon) located in the Application Bar (Window&gt;Application Bar) just below the Dreamweaver menu (just to the right of the Help menu on Windows). Note: When you click this option for the first time, read the resulting dialog and follow its prompts to download the Widget Browser from Adobe Labs. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/413.jpg" alt="" /></p>
<p><strong>5 DOWNLOADING WIDGETS<br />
</strong>Click the Adobe Exchange link at the top left of the Widget Browser window to view all of the widgets available on the Adobe Exchange website. To download a widget, click to select it, and then enter a valid Adobe ID and password (if you don&#x0092;t already have an Adobe ID, you can create one for free, simply click the Create Account button at the bottom of the Sign In dialog). </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/514.jpg" alt="" /></p>
<p><strong>6 ADDING WIDGETS TO DREAMWEAVER<br />
</strong>Most widgets are small so they download quickly and once a widget is downloaded to your hard drive, it opens in its own widget browser window automatically. Click the Add to My Widgets button at the bottom right corner of the Adobe Widget Browser window to add the widget to your local widget browser where it becomes available in Dreamweaver. Click the Go To My Widgets button in the Widget Added dialog to open the local widget browser and view the new widget in your local collection; or click on My Widgets, which is located at the top of the Adobe Widget Browser window. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/613.jpg" alt="" /></p>
<p><strong>7 INSERTING WIDGETS INTO PAGES<br />
</strong>You can insert any widget that you&#x0092;ve added to the Adobe Widget Browser into a page in Dreamweaver by clicking the Widget icon in Insert panel (Window&gt;Insert), or by selecting Insert&gt;Widget. Then, in the Widget dialog, select your desired widget from the Widget drop-down menu and click OK. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/713.jpg" alt="" /></p>
<p><strong>8 CUSTOMIZING WIDGETS<br />
</strong>Each widget is different, but most come with default images or other content in place and need to be customized to feature your content. In this example, I replaced the default images that come with the LightBox widget by changing the image references in the HTML code to reference images in my main images folder. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/812.jpg" alt="" /></p>
<p><strong>9 ACTIVATING CSS INSPECT<br />
</strong>Dreamweaver CS5 adds a new tool designed to help you identify how CSS is used in a webpage. The CSS Inspect option makes it easy to quickly view the CSS that defines the styles used in different parts of any webpage. To use CSS Inspect, click the Inspect button at the top of the Workspace and click the text link Switch Now (it appears just below the Inspect button). The Switch Now link automatically changes the Dreamweaver layout to best take advantage of the CSS Inspect feature.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/910.jpg" alt="" /></p>
<p><strong>10 USING CSS INSPECT<br />
</strong>Once it&#x0092;s activated, just roll your cursor around the screen to use CSS Inspect. As you do, Dreamweaver highlights content in the Design View area with color-coded highlighting that identifies each tag and associated style, as well as any margins and padding created by the style rule. Simultaneously, Dreamweaver identifies the corresponding code in Code View, and displays the corresponding style rules in the CSS Styles panel (which automatically pops-up when you use Switch Now). Click the Inspect button again to turn off CSS Inspect. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1019.jpg" alt="" /></p>
<p><strong>11 TESTING IN ADOBE BROWSERLAB<br />
</strong>Adobe BrowserLab is designed to help you preview how your pages will display in a variety of Web browsers, even if you don&#x0092;t have all of those browsers available on your local hard drive. In CS5, you&#x0092;ll find a new Adobe BrowserLab panel you can use to preview any open page in your local site. To preview a page, save your page (File&gt;Save) and click the Preview button in the Adobe BrowserLab panel (Window&gt;Extensions&gt;Adobe BrowserLab), or go to File&gt;Preview in Browser&gt;Adobe BrowserLab. You must have the page open in Dreamweaver and you must be connected to the Internet to use this feature. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1119.jpg" alt="" /></p>
<p><strong>12 USING ADOBE BROWSERLAB ONLINE<br />
</strong>When you open a page in Adobe BrowserLab, you&#x0092;re connected to the Adobe BrowserLab website and a screen shot of the page is automatically created using whatever browser was last selected in Adobe BrowserLab. In the top left corner of the Adobe BrowserLab website, click the View button and choose 2-up View menu to display the same page in two different browsers side by side, or Onion Skin to place two previews on top of the other; which makes it easier to identify subtle differences. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1217.jpg" alt="" /></p>
<p><strong>13 CHOOSING AVAILABLE BROWSERS<br />
</strong>You can preview your pages in a variety of Web browsers in the Adobe BrowserLab website, including the notorious Internet Explorer 6.0. You can also use the Browser Sets option (located near the top of the Adobe BrowserLab webpage) to create a shortcut to any collection of browsers available on the site that you want to use for testing. Note: You can&#x0092;t click on the links or test interactive features on your page with this option active because it only takes a screen shot of the page in each browser. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1316.jpg" alt="" /></p>
<p><strong>14 SPELL CHECK IN 37 LANGUAGES<br />
</strong>As the Internet becomes increasingly multilingual it&#x0092;s great to see Adobe upgrade the spell check features in Dreamweaver to handle 37 languages (previous versions supported less than half that many). To change the dictionary to any of the included languages, go to Dreamweaver (PC: Edit)&gt;Preferences. In the General category, use the Spelling Dictionary menu to select any of the listed languages and click OK. Then choose Commands&gt;Check Spelling to use spell check in the language you selected. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1414.jpg" alt="" /></p>
<p><em>ALL IMAGES BY KEN RIDDICK</em></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/six-new-features-in-dreamweaver-cs5-2.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Six New Features in Dreamweaver CS5</title>
		<link>http://layersmagazine.com/six-new-features-in-dreamweaver-cs5.html</link>
		<comments>http://layersmagazine.com/six-new-features-in-dreamweaver-cs5.html#comments</comments>
		<pubDate>Tue, 24 Aug 2010 18:34:55 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[CS5]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://layersmagazine.com/?p=13647</guid>
		<description><![CDATA[Every upgrade brings something new, but Dreamweaver CS5 brings more goodies than most previous upgrades, and you can put these new features to use right away.]]></description>
			<content:encoded><![CDATA[<p>Every upgrade brings something new, but Dreamweaver CS5 brings more goodies than most previous upgrades, and you can put these new features to use right away. Here&#x0092;s how to use some of the coolest new features, from troubleshooting CSS with the new inspect option, to adding advanced Ajax and jQuery features using the widget browser, to testing your pages in different Web browsers using the Adobe BrowserLab website.</p>
<p><strong>1 THE NEW, SIMPLER, SITE SETUP</strong><br />
In version CS5, Adobe streamlined the website setup process. When you first start working on any new or existing site in Dreamweaver, it&#x0092;s important to begin by setting up the site and identifying your main website folder. The new Site Setup dialog (Site&gt;New Site) requires two settings to get started. First, give your site a name (any name will do, it&#x0092;s just for your reference). Next, click the folder icon to the right of the Local Site Folder field and select the folder on your hard drive where you&#x0092;ll store all of the files and subfolders in your site. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/157.jpg" /></p>
<p><strong>2 SETTING UP WEB SERVERS</strong><br />
Use the list on the left of the Site Setup dialog to access more advanced features and FTP settings. The new dialog now makes it possible to set up multiple servers for any site, a great way to manage both a testing server and a live server for the same website. Note: You&#x0092;ll need to click the Add New Server icon (+, plus sign) at the bottom of the<br />
Servers tab to open the FTP settings dialog. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/211.jpg" /></p>
<p><strong>3 OPTIONAL IMAGES FOLDER AND MORE</strong><br />
You&#x0092;ll find many other options in the Site Setup dialog when you click the Advanced Settings tab, including the setting for an images folder in your local site folder. If you identify an images folder, and then insert an image into a page that is outside your root folder, Dreamweaver will copy the image into the folder you identify in this field. You can also use the Advanced Settings tab to specify a folder for spry assets, setup version control, cloaking, contribute, and other advanced features. When finished defining your settings click Save and you&#x0092;re done. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/310.jpg" /></p>
<p><strong>4 THE WIDGET BROWSER</strong><br />
The Adobe Widget Browser makes it easy to add a growing list of widgets to your site. Most are created in jQuery or Ajax and you can use them to add slide shows, drop-down menus, and other interactive features to your webpage. To access the Widget Browser, select it from the Extend Dreamweaver menu (the gear icon) located in the Application Bar (Window&gt;Application Bar) just below the Dreamweaver menu (just to the right of the Help menu on Windows). Note: When you click this option for the first time, read the resulting dialog and follow its prompts to download the Widget Browser from Adobe Labs. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/410.jpg" /></p>
<p><strong>5 DOWNLOADING WIDGETS</strong><br />
Click the Adobe Exchange link at the top left of the Widget Browser window to view all of the widgets available on the Adobe Exchange website. To download a widget, click to select it, and then enter a valid Adobe ID and password (if you don&#x0092;t already have an Adobe ID, you can create one for free, simply click the Create Account button at the bottom of the Sign In dialog). </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/511.jpg" /></p>
<p><strong>6 ADDING WIDGETS TO DREAMWEAVER</strong><br />
Most widgets are small so they download quickly and once a widget is downloaded to your hard drive, it opens in its own widget browser window automatically. Click the Add to My Widgets button at the bottom right corner of the Adobe Widget Browser window to add the widget to your local widget browser where it becomes available in Dreamweaver. Click the Go To My Widgets button in the Widget Added dialog to open the local widget browser and view the new widget in your local collection; or click on My Widgets, which is located at the top of the Adobe Widget Browser window. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/610.jpg" /></p>
<p><strong>7 INSERTING WIDGETS INTO PAGES</strong><br />
You can insert any widget that you&#x0092;ve added to the Adobe Widget Browser into a page in Dreamweaver by clicking the Widget icon in Insert panel (Window&gt;Insert), or by selecting Insert&gt;Widget. Then, in the Widget dialog, select your desired widget from the Widget drop-down menu and click OK. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/710.jpg" /></p>
<p><strong>8 CUSTOMIZING WIDGETS</strong><br />
Each widget is different, but most come with default images or other content in place and need to be customized to feature your content. In this example, I replaced the default images that come with the LightBox widget by changing the image references in the HTML code to reference images in my main images folder. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/89.jpg" /></p>
<p><strong>9 ACTIVATING CSS INSPECT</strong><br />
Dreamweaver CS5 adds a new tool designed to help you identify how CSS is used in a webpage. The CSS Inspect option makes it easy to quickly view the CSS that defines the styles used in different parts of any webpage. To use CSS Inspect, click the Inspect button at the top of the Workspace and click the text link Switch Now (it appears just below the Inspect button). The Switch Now link automatically changes the Dreamweaver layout to best take advantage of the CSS Inspect feature. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/98.jpg" /></p>
<p><strong>10 USING CSS INSPECT</strong><br />
Once it&#x0092;s activated, just roll your cursor around the screen to use CSS Inspect. As you do, Dreamweaver highlights content in the Design View area with color-coded highlighting that identifies each tag and associated style, as well as any margins and padding created by the style rule. Simultaneously, Dreamweaver identifies the corresponding code in Code View, and displays the corresponding style rules in the CSS Styles panel (which automatically pops-up when you use Switch Now). Click the Inspect button again to turn off CSS Inspect. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1017.jpg" /></p>
<p><strong>11 TESTING IN ADOBE BROWSERLAB</strong><br />
Adobe BrowserLab is designed to help you preview how your pages will display in a variety of Web browsers, even if you don&#x0092;t have all of those browsers available on your local hard drive. In CS5, you&#x0092;ll find a new Adobe BrowserLab panel you can use to preview any open page in your local site. To preview a page, save your page (File&gt;Save) and click the Preview button in the Adobe BrowserLab panel (Window&gt;Extensions&gt;Adobe BrowserLab), or go to File&gt;Preview in Browser&gt;Adobe BrowserLab. You must have the page open in Dreamweaver and you must be connected to the Internet to use this feature. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1117.jpg" /></p>
<p><strong>12 USING ADOBE BROWSERLAB ONLINE</strong><br />
When you open a page in Adobe BrowserLab, you&#x0092;re connected to the Adobe BrowserLab website and a screen shot of the page is automatically created using whatever browser was last selected in Adobe BrowserLab. In the top left corner of the Adobe BrowserLab website, click the View button and choose 2-up View menu to display the same page in two different browsers side by side, or Onion Skin to place two previews on top of the other; which makes it easier to identify subtle differences. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1215.jpg" /></p>
<p><strong>13 CHOOSING AVAILABLE BROWSERS</strong><br />
You can preview your pages in a variety of Web browsers in the Adobe BrowserLab website, including the notorious Internet Explorer 6.0. You can also use the Browser Sets option (located near the top of the Adobe BrowserLab webpage) to create a shortcut to any collection of browsers available on the site that you want to use for testing. Note: You can&#x0092;t click on the links or test interactive features on your page with this option active because it only takes a screen shot of the page in each browser. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1314.jpg" /></p>
<p><strong>14 SPELL CHECK IN 37 LANGUAGES</strong><br />
As the Internet becomes increasingly multilingual it&#x0092;s great to see Adobe upgrade the spell check features in Dreamweaver to handle 37 languages (previous versions supported less than half that many). To change the dictionary to any of the included languages, go to Dreamweaver (PC: Edit)&gt;Preferences. In the General category, use the Spelling Dictionary menu to select any of the listed languages and click OK. Then choose Commands&gt;Check Spelling to use spell check in the language you selected. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1413.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/six-new-features-in-dreamweaver-cs5.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Save Time with Templates in Dreamweaver</title>
		<link>http://layersmagazine.com/save-time-with-templates-in-dreamweaver.html</link>
		<comments>http://layersmagazine.com/save-time-with-templates-in-dreamweaver.html#comments</comments>
		<pubDate>Fri, 02 Jul 2010 15:55:10 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://layersmagazine.com/?p=13196</guid>
		<description><![CDATA[This column is about creating templates with the .dwt extension—a timesaver when creating custom sites in Dreamweaver.]]></description>
			<content:encoded><![CDATA[<p>Templates come in many shapes and styles on the Web. You can find templates for Adobe Flash, Photoshop, Dreamweaver, WordPress blogs, and more, but not all templates work in all programs. This column is about creating templates with the .dwt extension&#x0097;a timesaver when creating custom sites in Dreamweaver.</p>
<p><strong>1 BEST USES OF DREAMWEAVER TEMPLATES</strong><br />
Dreamweaver templates are great for portfolios, photo galleries, and other sites where a series of pages use many of the same elements. In our sample website, CaliforniaWildlifePhotography.com, the template includes common elements, such as the banner graphic and navigation links across the top and bottom of the pages. </p>
<p>To create templates for your webpages, you must already have a site set up using the Manage Site features in Dreamweaver to define a local root folder on your computer. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/1.jpg" alt="" title="1" width="500" height="385" class="alignnone size-full wp-image-13198" /></p>
<p><strong>2 CREATE/OPEN A PAGE IN DREAMWEAVER</strong><br />
To create a new HTML template in Dreamweaver, choose File&gt;New. In the New Document dialog, select Blank Template. For the Template Type, select HTML Template, choose a Layout, and click Create.</p>
<p>To save an existing page in Dreamweaver as a template, choose File&gt;Save As Template. We&#x0092;ll show you how to design HTML templates, but you can also save other kinds of templates (including PHP, JSP, or ASP.NET). Give each template a special name to identify it later and to help organize a site that uses many templates. If you expect to use many different templates in the same site, a description can be useful. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/2.jpg" alt="" title="2" width="500" height="324" class="alignnone size-full wp-image-13199" /></p>
<p><strong>3 VIEW YOUR TEMPLATES FOLDER</strong><br />
Dreamweaver stores all of the templates you create in a folder called Templates, which it creates for you when you save your first template. The Templates folder is saved at the top level of your site folder and you shouldn&#x0092;t move or rename this folder. If you want to view your templates, choose Window&gt;Files and then open the Templates folder in the File panel. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/3.jpg" alt="" title="3" width="242" height="389" class="alignnone size-full wp-image-13200" /></p>
<p><strong>4 SELECT AREA TO MAKE EDITABLE</strong><br />
Before you can use a template, you need to designate editable regions&#x0097;areas that you&#x0092;ll change on individual pages created from the template. Say you want to change the photo and caption on each gallery page, you&#x0092;d make those sections of the template page editable. Start by clicking on the edge of a region to select it&#x0097;choose an HTML tag (div tags work best) that surrounds the contents you want to make editable. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/4.jpg" alt="" title="4" width="356" height="267" class="alignnone size-full wp-image-13201" /></p>
<p><strong>5 INSERT AN EDITABLE REGION</strong><br />
After you select an area of the page you want to make an editable region, such as a Div tag, choose Insert&gt;Template Objects&gt;Editable Region to add the necessary code in Dreamweaver. Remember, you don&#x0092;t want to make everything editable, just the areas you&#x0092;ll change; for example, the list of navigation links at the top of this template should not be editable regions, because then you&#x0092;ll be able to update those areas on all of the pages that use this template at a later time by simply updating the template (see Step 9). </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/5.jpg" alt="" title="5" width="500" height="439" class="alignnone size-full wp-image-13202" /></p>
<p><strong>6 NAME EDITABLE REGION</strong><br />
Each time you insert an editable region into your page, you need to name it. You can name editable regions anything you like, just don&#x0092;t use spaces or special characters. Each editable region in a template must have a unique name. Insert a name for your new region in the New Editable Region dialog and click OK. You can identify editable regions in the template, and the pages created from the template, by the blue outline and tabs. If you don&#x0092;t see these features in the Dreamweaver workspace, choose View&gt;Visual Aids&gt;Invisible Elements. After you save your template, you can always return later to add more editable regions. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/6.jpg" alt="" title="6" width="500" height="405" class="alignnone size-full wp-image-13203" /></p>
<p><strong>7 CREATE A NEW PAGE FROM A TEMPLATE</strong><br />
To create a new page from a template, choose File&gt;New. Choose Page From Template in the New Document dialog, choose the name of the site you&#x0092;re working on from the Site list, and select a template for your site. Use the preview to make sure you select the correct template. This is easy if you&#x0092;re only working on one site with one template, but as your site gets larger and more complex, you need to make sure you&#x0092;re using the correct template when you create new pages. After you&#x0092;ve selected all of the Preferences you want, click Create to generate a new page from the template. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/7.jpg" alt="" title="7" width="500" height="319" class="alignnone size-full wp-image-13204" /></p>
<p><strong>8 EDIT A PAGE CREATED FROM A TEMPLATE</strong><br />
After you&#x0092;ve created a page from a template, you can edit it as you would any other page, inserting images, text, and multimedia into the editable regions. Just remember, you can only change the areas of the page that are editable. If you decide you want to change something that&#x0092;s not in an editable region, you&#x0092;ll need to open the DWT template file and make changes to locked areas in that file. When you save a page that you&#x0092;ve created from a template, give it a new name with an HTML (or other) extension, just as you&#x0092;d save any other page you create in Dreamweaver. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/8.jpg" alt="" title="8" width="500" height="418" class="alignnone size-full wp-image-13205" /></p>
<p><strong>9 EDIT THE TEMPLATE</strong><br />
The greatest advantage of templates is when you want to edit elements you use throughout your site (such as the navigation links at the top of these pages), you can go back and make that change once to the template and it&#x0092;s automatically changed on every page created from the template. For instance, if I added a new gallery link to the template, it automatically updates all of the pages with the new link. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/9.jpg" alt="" title="9" width="500" height="172" class="alignnone size-full wp-image-13206" /></p>
<p><strong>10 SAVE CHANGES TO ALL PAGES</strong><br />
When you save a template with changes (File&gt;Save), Dreamweaver opens an Update Template Files dialog. Dreamweaver gives you the option to update all of the pages created from the template, or not. I usually click Update, because it&#x0092;s a big advantage and timesaver to be able to update all of those pages automatically. After clicking Update, an Update Pages dialog appears. Click Close and all of your pages will be updated. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/109.jpg" alt="" title="10" width="440" height="226" class="alignnone size-full wp-image-13207" /></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/save-time-with-templates-in-dreamweaver.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Designing Email Messages for Dreamweaver</title>
		<link>http://layersmagazine.com/designing-email-messages-for-dreamweaver.html</link>
		<comments>http://layersmagazine.com/designing-email-messages-for-dreamweaver.html#comments</comments>
		<pubDate>Tue, 25 May 2010 20:04:24 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://layersmagazine.com/?p=13040</guid>
		<description><![CDATA[In this tutorial, you’ll learn how some of the oldest features in Dreamweaver are the best options for email design.]]></description>
			<content:encoded><![CDATA[<p>Forget everything you&#x0092;ve learned about CSS and modern Web standards. When it comes to designing email messages, you might as well be creating pages for the Web circa 1999. That&#x0092;s because email programs like Hotmail and Outlook are among the worst when it comes to displaying HTML code. In this tutorial, you&#x0092;ll learn how some of the oldest features in Dreamweaver are the best options for email design.</p>
<p><strong>1 CREATE A DESIGN IN PHOTOSHOP (IF YOU PREFER)</strong><br />
If you prefer to create your designs in Photoshop (or any other graphics program), and then convert the designs to HTML in Dreamweaver later, you can follow that same workflow when designing email. Just keep in mind that simpler is better when it comes to email messages. Set the width of your designs to no more than 600 pixels wide (550 is even safer), and limit the use of images, which won&#x0092;t display at all in some email programs. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0110.jpg" alt="dreamweaver" /></p>
<p><strong>2 OPTIMIZE IMAGES FOR FAST DOWNLOAD</strong><br />
Before you insert images into your email designs, you&#x0092;ll want to optimize them so they download quickly and save them in a Web-safe format, such as JPEG, PNG, or GIF. The Save for Web dialog in Photoshop (File&gt;Save for Web &amp; Devices) is an ideal way to prepare your images for email messages, as well as the Web. When designing email messages, you want to be even more ruthless about limiting file size because many email programs limit the total size of messages and most people have even less patience for downloading email than they do for slow webpages. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0212.jpg" alt="dreamweaver" /></p>
<p><strong>3 CREATE BLANK PAGE IN DREAMWEAVER</strong><br />
Once you&#x0092;re ready to start designing your HTML email, open Dreamweaver and choose File&gt;New. In the New Document dialog, select HTML for Page Type,  for Layout, and click Create to create a new, blank page. Don&#x0092;t use any of the predesigned CSS layouts (those are great for webpages, but not for email). And, you don&#x0092;t need to bother with the site setup process because you won&#x0092;t be using any of the site management or link features in Dreamweaver. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0310.jpg" alt="dreamweaver" /></p>
<p><strong>4 INSERT A GOOD OLD-FASHIONED TABLE</strong><br />
Although HTML tables are no longer recommended for creating page layouts on the Web (except when you&#x0092;re formatting tabular data), tables are the best option when you&#x0092;re designing email messages. In Dreamweaver, choose Insert&gt;Table and then enter the number of Rows and Columns you&#x0092;ll need to create your layout. Set the Border Thickness to 0 to make the borders invisible, increase the Cell Padding and Cell Spacing a little to create margins, and click OK. (Don&#x0092;t worry about getting it perfect; you can always adjust these settings later using the Property inspector.)</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/0411.jpg" alt="dreamweaver" /></p>
<p><strong>5 MERGE OR SPLIT CELLS TO ADJUST LAYOUT</strong><br />
The design for this example has a two-column layout, but we&#x0092;re going to use an image that spans the width of both columns at the top of the design. To accommodate the image, we need to merge the two cells in the top row. To merge cells, click the inside of one cell and drag over to the next to select them, then click the tiny Merge button at the bottom left of the Property inspector. To split a cell in two, click to select the cell and click the Split button, located just to the right of the Merge button. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/059.jpg" alt="dreamweaver" /></p>
<p><strong>6 IMAGES MUST BE ONLINE TO APPEAR IN EMAIL</strong><br />
For images to display in an email message on someone else&#x0092;s computer, they have to be online and you must use the full URL to the image in your HTML code. To manage this, you can use the image features in any bulk email service (such as those listed at the end of this column) or you can upload your images to any site on the Web (even Flickr). To find the full URL of an image on any webpage, Right-click and choose Copy Image Address (PC: Properties), then copy the URL into the image source code, or replace the image source (the Src field) in the Property inspector. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/069.jpg" alt="dreamweaver" /></p>
<p><strong>7 USE ALT TEXT AND REMOVE HEIGHT AND WIDTH</strong><br />
When you insert an image using the image features in Dreamweaver, the program automatically identifies and enters the height and width, but many email programs don&#x0092;t display images, so including the height and width will force a blank space in the page. Removing the height and width helps make the page look better if images are not visible. Similarly, including Alternative Text (use the Alt field in the Property inspector) will make sure that your message is visible as text even if your images aren&#x0092;t displayed.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/077.jpg" alt="dreamweaver" /></p>
<p><strong>8 ADD TEXT AS YOU WOULD TO ANY WEBPAGE</strong><br />
To add text to your design, you can simply type the text into the page or use copy-and-paste as you would with any other webpage. If you use copy-and-paste from Microsoft Word, make sure you use the Paste Special option in Dreamweaver to automatically remove any extraneous code from Word. To do so, choose Edit&gt;Paste Special and choose the Text with Structure option to preserve basic formatting without all the extra Word-specific code. </p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/086.jpg" alt="dreamweaver" /></p>
<p><strong>9 ADJUST TABLE SETTINGS</strong><br />
To adjust the width or height of cells in Dreamweaver, you can simply click-and-drag the table border between columns or rows (as shown). Once you select an entire table (click on the outside edge of the table), the table properties appear in the Property inspector at the bottom of Dreamweaver where you can adjust other options, such as border size and cell padding. If the contents of two columns in a table aren&#x0092;t exactly the same, they can appear out of alignment. To fix this, select both cells, go to the Property inspector, and set the Vertical Alignment drop-down menu to Top.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/098.jpg" alt="dreamweaver" /></p>
<p><strong>10 DON&#x0092;T USE JAVASCRIPT, VIDEO, OR MULTIMEDIA</strong><br />
Complete your design by adding text and inserting additional images, but stay away from interactive features, such as drop-down menus or scrolling windows, which require JavaScript or AJAX. These features are popular on webpages, but they won&#x0092;t work in email programs, and worse, most spam filters are set up to scan emails for scripts because they may contain viruses. Thus, if you use any JavaScript in an email, you&#x0092;re almost guaranteed the message will get caught in a spam filter.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/107.jpg" alt="dreamweaver" /></p>
<p><strong>11 USE INLINE STYLES</strong><br />
Although some email programs provide basic support for CSS, most don&#x0092;t support styles, even internal styles sheets (those saved in the head area of the document). If you want to add formatting to your text or images, use inline styles, which are included with the HTML code within a page. Here&#x0092;s an example of an inline style that will change the color and remove the underline from a link: <a href="http://www.digitalfamily.com">Digital Family.com</a>. Note inline styles must be repeated each time you use a tag, part of why they&#x0092;re not recommended for webpage designs.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/118.jpg" alt="dreamweaver" /></p>
<p><strong>12 INCLUDE CONTACT INFO AND UNSUBSCRIBE LINK</strong><br />
Because spam is such a problem on the Internet, there are strict rules about sending bulk email messages. Two of the most important are: you must make it easy to unsubscribe and you must include your street address (or at least a P.O. Box). Most designers include an unsubscribe link and contact information at the bottom of the email. In the table above, two cells were merged again to create a space that spans both columns for contact info, and style information was added to the table data tag to center the text and make it smaller.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/126.jpg" alt="dreamweaver" /></p>
<p><strong>13 USE A BULK EMAIL SERVICE</strong><br />
Unfortunately, you can&#x0092;t just copy-and-paste the HTML from Dreamweaver into Outlook, Gmail, or any of the other most popular email programs. Thus, to use your wonderfully designed email message, you&#x0092;ll either have to have administrative access to an email server, or use a bulk email service. The most popular email services are: Constant Contact (www.constantcontact.com), iContact (www.icontact.com), Benchmark (www.benchmarkemail.com), and StreamSend (www.streamsend.com). Charges start at $10 to $15 per month and all four of these services offer email templates, as well as the ability to use your own designs for your messages.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/135.jpg" alt="dreamweaver" /></p>
<p><strong>14 TEST IN MULTIPLE EMAIL PROGRAMS</strong><br />
No matter how you send your email, it&#x0092;s always a good idea to test your designs in multiple email programs. It&#x0092;s easy (and free) to set up accounts with Gmail, Hotmail, Yahoo!, and AOL. If possible, I recommend you also test with the popular Outlook or Outlook Express (which comes free with all Windows computers), as well as Thunderbird. If you want to test your designs in all of the most popular email programs at once, consider using the service PreviewMyEmail.com (prices start at $9 for three email tests).</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/files/144.jpg" alt="dreamweaver" /></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/designing-email-messages-for-dreamweaver.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Adding Ecommerce to Your Dreamweaver Site</title>
		<link>http://layersmagazine.com/adding-ecommerce-to-your-dreamweaver-site.html</link>
		<comments>http://layersmagazine.com/adding-ecommerce-to-your-dreamweaver-site.html#comments</comments>
		<pubDate>Mon, 22 Mar 2010 16:05:06 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.layersmagazine.com/?p=11179</guid>
		<description><![CDATA[Google Checkout and PayPal have added shopping-cart features to their most basic ecommerce offerings, making it easy for anyone to sell multiple products on a website.]]></description>
			<content:encoded><![CDATA[<p>In the last year, both Google Checkout and PayPal have added shopping-cart features to their most basic ecommerce offerings, making it easy for anyone to sell multiple products on a website. For no upfront costs and a competitive transaction fee, you can set up an entire shopping cart in an hour or two.</p>
<p><strong>1 CREATE/OPEN A NEW PAGE IN DREAMWEAVER</strong><br />
I built this website to showcase my friend Jasper Johal&#x0092;s photography. In addition to displaying galleries of his photos, his bio, and contact information, he also wanted to sell a few prints and calendars. Thanks to Google Checkout, all I needed was to set up a Google Account for him, then copy-and-paste a little code into a page In Dreamweaver. In this tutorial, you&#x0092;ll see how I used Google to help him sell his beautiful photographs.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/01.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>2 SET UP AN ACCOUNT</strong><br />
First, you&#x0092;ll need to sign up for an account. I chose Google Checkout (http://checkout.google.com) because I like the interface, but PayPal offers a similar service, and supports transactions in more countries than Google. Both offer services that are ideally suited for websites where you want to sell only a handful of products and you don&#x0092;t want to handle credit card processing yourself. With PayPal and Google you get the shopping-cart features and transaction processing in one easy package. (And did I mention no up-front cost?)</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/02.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>3 LOG INTO GOOGLE CHECKOUT</strong><br />
Log into your Google Checkout account with the email address and password you used to set up the account. Once you&#x0092;re logged in, click on the Tools tab at the top of the screen to access the Buy Now Buttons (great if you only sell one item) and Checkout Cart (best for multiple products). You also find links here to Google&#x0092;s invoicing services and details about how to integrate Google Checkout with third-party shopping carts, such as Zen Cart, if you want more advanced features or need to integrate sales with some kind of inventory or special tracking service.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/03.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>4 SET UP A CHECKOUT CART</strong><br />
If you want to sell more than one item, or offer different sizes or other options, your best choice is the Checkout Cart. When you click on the Checkout Cart link on the left, you open Google&#x0092;s Checkout Wizard, which makes it easy for you to create the code you need to add a product listing to your shopping cart. You can create a Simple product listing with one name and price, or you can create new product listings With Multiple Options and Prices based on size, color, quantity, etc.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/04.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>5 ENTER PRODUCT DESCRIPTION</strong><br />
Enter a description of your product by filling in the form fields. As you see in our example, we&#x0092;re setting up a shopping-cart item for a set of prints with two options: Option 1 to buy one set; and Option 2 to buy three sets at a special price. To create a new product listing, just fill out the form with the text and pricing you want, and Google automatically creates the code that lets you add these products to your site.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/05.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>6 CREATE BUTTON CODE</strong><br />
When you get the description the way you want it, click the checkbox next to Yes, I Have Configured My Account to Accept Unsigned Shopping Carts (see next step for details). If you haven&#x0092;t configured your account yet, you can come back and do it later&#x0097;just make sure to check the box. To generate the code you need to add to your webpage, click the Create Button Code button and skip ahead to Step 8 to continue. If you prefer to take care of configuration first, just follow along.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/06.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>7 SETTING UP TO ACCEPT UNSIGNED CARTS</strong><br />
Because Google Checkout Shopping Cart works entirely in the Web browser, it&#x0092;s possible for a site visitor to alter the pricing in Google checkout when they place an order. Unfortunately, there&#x0092;s no way for Google to protect the secret key needed to sign a shopping cart. To get around this limitation, you can allow the shopping cart to work without being signed; but you&#x0092;ll have to change that setting first. To accept unsigned carts, click the Settings tab and then click Integration. Remove the check in the box beside My Company Will Only Post Digitally Signed Carts, and then click Save.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/07.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>8 COPY CODE</strong><br />
If you create a Buy Now button, you can use one simple snippet of code to place the button anywhere in a webpage. When you use the Checkout Cart option, Google generates two pieces of code, one that should be copied into the page where you want the button to appear and the other&#x0097;the code that creates the cart itself&#x0097;should be pasted into the bottom of the page, as you&#x0092;ll see in Step 11.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/08.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>9 PASTE CODE INTO DREAMWEAVER</strong><br />
Because you&#x0092;re copying code from Google&#x0092;s site, you need to paste it into the code in Dreamweaver. A great way to do that is to use Split view by clicking on the Split button at the top of the workspace. Split view is great because you can see how the page will look in Design view as you&#x0092;re working in the code, which makes it easier to find your place if you&#x0092;re not familiar with XHTML or other Web technologies.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/09.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>10 COPY SECOND PART OF CODE</strong><br />
Once you have the button code where you want it, return to the browser window and copy the second string of code. Tip: You can use Right-click to copy code from the Google Checkout page.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/10.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>11 PASTE CART CODE AT BOTTOM OF PAGE</strong><br />
The second piece of code goes at the very bottom of the page, and you only need to add it to the page once, even if you have multiple products on the same page. Again, just use copy-and-paste to select the code and insert it into Dreamweaver. As Google instructs, the best place for the shopping-cart code is just above the close body tag ().</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/11.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>12 PREVIEW TO SEE THE CART IN ACTION</strong><br />
To test your product listings and Add to Cart buttons, preview your page in a Web browser by choosing File&gt;Preview in Browser and then selecting any browser you have associated with Dreamweaver. (In Step 9, notice that the Add to Cart button doesn&#x0092;t show up in Design view, but it does appear when you preview the page in a Web browser.) When previewing this example, I decided that I should include longer descriptions in the drop-down lists because the product title only appears in the shopping cart, not the product listing.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/12.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>13 EDIT PRODUCT LISTING</strong><br />
Although you can edit a product as you&#x0092;re creating it in Google, if you want to go back later to change a product listing, you have to recreate it. The inability to save listings is one of the biggest limitations of Google Checkout, IMHO. Although it would be more efficient if you could save your product information, you don&#x0092;t have to start completely from scratch. You can copy your price and other information from the code in Dreamweaver and paste it back into Google to save some typing. If all you want to do is edit the name of product, you can change the text in Code view in Dreamweaver.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/13.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>14 TWEAKING FORMAT</strong><br />
Experiment with formatting around the code to align the Add to Cart button to the right of the drop-down menu as shown here. (Tip: You can do this with an HTML Table or by creating styles for divs around the code.) Be careful, however, when you edit around Google&#x0092;s code: You can split the button from the drop-down but you need to keep all of the code intact. And remember, if you make a mistake and the page doesn&#x0092;t display properly, you can always go back and copy-and-paste the code in again.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/14.jpg" alt="Dreamweaver Tutorial" /></p>
<p><em>ALL PHOTOS BY JASPER JOHAL UNLESS OTHERWISE NOTED </em></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/adding-ecommerce-to-your-dreamweaver-site.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
<enclosure url="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_02/thumbnail.jpg" length="" type="" />
		</item>
		<item>
		<title>Dreamweaver: Make Your Site Search-Engine Friendly</title>
		<link>http://layersmagazine.com/dreamweaver-make-your-site-search-engine-friendly-2.html</link>
		<comments>http://layersmagazine.com/dreamweaver-make-your-site-search-engine-friendly-2.html#comments</comments>
		<pubDate>Mon, 11 Jan 2010 04:35:01 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[Layers Blog]]></category>

		<guid isPermaLink="false">http://www.layersmagazine.com/?p=10846</guid>
		<description><![CDATA[The best way to make your site search-engine friendly is to design your site so that it&#x0092;s easy for search engines to &#x0094;read&#x0094; your pages&#x0097;doing things like adding alternative text behind your images and using the meta description tag. In this tutorial, you&#x0092;ll find a few search engine optimization (SEO) tips and discover the features [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/1.jpg" alt="Dreamweaver Tutorial" /></p>
<p>The best way to make your site search-engine friendly is to design your site so that it&#x0092;s easy for search engines to &#x0094;read&#x0094; your pages&#x0097;doing things like adding alternative text behind your images and using the meta description tag. In this tutorial, you&#x0092;ll find a few search engine optimization (SEO) tips and discover the features in Dreamweaver that will best serve your SEO efforts.</p>
<p><strong>1 NEVER LEAVE A PAGE UNTITLED</strong><br />
When you create a new page, Dreamweaver automatically adds the word &#x0093;Untitled&#x0094; at the top of every page, but don&#x0092;t ever leave it that way. Although the title text doesn&#x0092;t appear in the body of your webpage, it&#x0092;s highly valued by search engines (so be sure to include your best keywords). Title text also appears at the very top of the browser window and that&#x0092;s the text that&#x0092;s saved when someone bookmarks your site. It&#x0092;s easy to change a title in Dreamweaver; just click in the Title field at the top of the workspace and type your own text.</p>
<p><a href="http://www.layersmagazine.com/dreamweaver-make-your-site-search-engine-friendly.html">Click here to see the rest of the tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/dreamweaver-make-your-site-search-engine-friendly-2.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dreamweaver: Make Your Site Search-Engine Friendly</title>
		<link>http://layersmagazine.com/dreamweaver-make-your-site-search-engine-friendly.html</link>
		<comments>http://layersmagazine.com/dreamweaver-make-your-site-search-engine-friendly.html#comments</comments>
		<pubDate>Wed, 06 Jan 2010 21:23:53 +0000</pubDate>
		<dc:creator>Janine Warner</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.layersmagazine.com/?p=10802</guid>
		<description><![CDATA[In this tutorial, you’ll find a few search engine optimization (SEO) tips and discover the features in Dreamweaver that will best serve your SEO efforts.]]></description>
			<content:encoded><![CDATA[<p>The best way to make your site search-engine friendly is to design your site so that it&#x0092;s easy for search engines to &#x0094;read&#x0094; your pages&#x0097;doing things like adding alternative text behind your images and using the meta description tag. In this tutorial, you&#x0092;ll find a few search engine optimization (SEO) tips and discover the features in Dreamweaver that will best serve your SEO efforts.</p>
<p><strong>1 NEVER LEAVE A PAGE UNTITLED</strong><br />
When you create a new page, Dreamweaver automatically adds the word &#x0093;Untitled&#x0094; at the top of every page, but don&#x0092;t ever leave it that way. Although the title text doesn&#x0092;t appear in the body of your webpage, it&#x0092;s highly valued by search engines (so be sure to include your best keywords). Title text also appears at the very top of the browser window and that&#x0092;s the text that&#x0092;s saved when someone bookmarks your site. It&#x0092;s easy to change a title in Dreamweaver; just click in the Title field at the top of the workspace and type your own text.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/1.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>2 USE ALTERNATIVE TEXT BEHIND IMAGES</strong><br />
The HTML image attribute for alternative text (alt text) lets you include a text description with your images. The spiders and bots that search engines use to crawl your site&#x0092;s content can&#x0092;t see words saved in an image, but they can read alt text in the code. When you insert an image, Dreamweaver prompts you to add Alternate Text in the Image Tag Accessibility Attributes dialog (unless you&#x0092;ve turned it off in Preferences). You can also add alt text by clicking to select any image and then entering text in the Alt field in the Property inspector.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/2.jpg" alt="Dreamweaver Tutorial" /><br />
<em>Â©ISTOCKPHOTO/EKATERINA MONAKHOVA </em></p>
<p><strong>3 ADD A META DESCRIPTION</strong><br />
The meta description tag appears in the head area at the very top of your HTML code. Humans never see this text because it&#x0092;s not displayed in a webpage, but meta descriptions are often used in search engine results and they can make a big difference in whether someone clicks on your site or not. To add this text in Dreamweaver, choose Insert&gt;HTML&gt;Head Tags&gt;Description and then type a description. You can add different descriptions to any or all of the pages in your site. Although search engines vary, most will only display the first 250 characters.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/3.jpg" alt="Dreamweaver Tutorial" /><br />
<em>Â©ISTOCKPHOTO/JOSE ELIAS</em></p>
<p><strong>4 INCLUDE META KEYWORDS</strong><br />
Many search engines ignore the contents of the meta keyword tag because it&#x0092;s been so badly abused by Web designers&#x0092; trying to trick search engines with unrelated or misleading terms, but adding keywords can&#x0092;t hurt your pages (as long as they match the content), and it&#x0092;s good practice to include your most important keywords on every page. While you&#x0092;re adding the meta description tag, it&#x0092;s easy to throw in a few keywords with the meta keyword tag. The two dialogs are accessible from the same menu in Dreamweaver, just choose Insert&gt;HTML&gt;Head Tags&gt;Keywords.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/4.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>5 USE HEADING TAGS TO SHOW HIERARCHY</strong><br />
Heading tags&#x0097;HTML tags h1 through h6&#x0097;are designed to format headlines with graduated levels of big, bold text. Although there are many ways to style text so that it stands out in a webpage, heading tags are considered especially valuable because they help identify the importance of information on a page using a clearly defined hierarchy. Format your most important headline with the h1 tag, less important text with the h2 tag, and so on. Although there&#x0092;s no guarantee this will improve your rankings, it&#x0092;s widely believed that text formatted in heading tags gets special attention from search engines.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/5.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>6 STYLE HEADING TAGS</strong><br />
If you&#x0092;re not happy with the bold, Times Roman style of the heading tags, you can use CSS to change their appearance. By creating CSS Rules using the Tag selector, you can change the font, color, size, and other formatting options of any or all of the h1&#x0096;h6 heading tags. To do so, create a new style (Format&gt;CSS Styles&gt;New), choose Tag as the Selector Type, and then select any heading tag from the Selector Name drop-down list. Define the style you want and save it into your stylesheet. Once you do, any text formatted with that heading tag will display with the formatting rules defined in that style.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/6.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>7 USE COMPOUND STYLES FOR HEADING TAGS</strong><br />
You can create different styles for the same heading tags using compound styles. For instance, you can create a style for the h1 tag where the formatting changes when it appears in a sidebar so that it&#x0092;s different from text formatted with the h1 tag when it appears in the main content area. For example, to create a style for the h1 tag to be used on an area of the page already styled by the ID #sidebar, you&#x0092;d create a compound style that looks like this: #sidebar h1.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/7.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>8 ATTRACT THE RIGHT LINKS</strong><br />
Search engines view links to your site as a vote of confidence. But it&#x0092;s not just the link that counts; it&#x0092;s also the text in the link tag. If the link to your site includes keywords, it can improve your ranking even more. Say I were to link to the fictional pet site featured in this tutorial, I&#x0092;d serve them better by including keywords, such as pet grooming and boarding, in the link text with their domain name. Ask your friends to do the same when they link to you.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/8.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>9 HARNESS THE POWER OF INTERNAL LINKS</strong><br />
Most search engines also put higher value on keywords that appear in internal links on your own website. When you link from one page in your site to another, use words that have relevance to your content and avoid wasted phrases like &#x0093;click here.&#x0094; If the pet site puts the words, &#x0093;Pet Grooming Services&#x0094; in a link, most search engines will recognize that those words have special value. Although this alone may not make a big difference, the combined effect of many small changes like this can add up to valuable improvements in your search status.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/9.jpg" alt="Dreamweaver Tutorial" /><br />
<em>Â©ISTOCKPHOTO/DIANE DIEDERICH </em></p>
<p><strong>10 CREATE A NAVIGATION BAR OF KEYWORD LINKS</strong><br />
The more times the same keywords are linked to the same page, the more attractive it becomes to most search engines. As a result, one key to search engine success is to pay special attention to the way you create navigation links&#x0097;the links to the most important pages of your site. Make sure to include good keywords in the links and use text, not images, for the links. If you must use graphic buttons to achieve the design you want, repeat navigation links by adding a row of text links to the bottom or side of every page.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/10.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>11 CREATE DESTINATION PAGES FOR POPULAR TOPICS</strong><br />
Many visitors who discover your site through search engines will enter through an internal page in your site because it matches a specific search string better than the front page of your site. With this in mind, many Web designers create &#x0093;destination&#x0094; or &#x0093;landing&#x0094; pages optimized for popular keywords and designed to attract people searching for those terms. Once they find the content on those pages, you can then lead them into the rest of the website.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/11.jpg" alt="Dreamweaver Tutorial" /><br />
<em>JANINE WARNER</em></p>
<p><strong>12 USE TEMPLATES TO REPEAT KEY ELEMENTS</strong><br />
When creating a website in Dreamweaver&#x0097;even if the site only has a few pages&#x0097;using the Web templates in Dreamweaver can make it easier to repeat (and update) key elements, such as navigation bars, and the alt text behind commonly used images, such as banners. You can create templates in Dreamweaver by saving any page as a DWT file and then create and update the rest of the pages in your site using that template. (You can find instructions for creating templates in Dreamweaver at www.layersmagazine.com/category/dreamweaver.)</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/12.jpg" alt="Dreamweaver Tutorial" /></p>
<p><strong>13 MAKE EXISTING SITES SEO FRIENDLY</strong><br />
Considering the best options for SEO from the start is best, but if you&#x0092;ve already built your site in Dreamweaver, you can always go back and make adjustments. Most search engines, such as Google, visit websites regularly (it can vary from a daily occurrence to more than a month between visits depending on your site&#x0092;s popularity and how often you refresh the content). If you&#x0092;re not familiar with Google Webmaster Tools, the many reports, charts, and graphs on this page make it a great place to learn more about how your site ranks and how to make it better.</p>
<p><img src="http://media.kelbymediagroup.com/layersmagazine/images/tutorials/design/dreamweaver/2010_01/13.jpg" alt="Dreamweaver Tutorial" /></p>
]]></content:encoded>
			<wfw:commentRss>http://layersmagazine.com/dreamweaver-make-your-site-search-engine-friendly.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

