<?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>Expression Web Tips</title>
	<atom:link href="http://www.expression-web-tips.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.expression-web-tips.com</link>
	<description>Expression Web Tips &#38; Help</description>
	<lastBuildDate>Thu, 29 Jul 2010 17:33:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Structural Naming Convention in CSS</title>
		<link>http://www.expression-web-tips.com/structural-naming-convention-in-css/</link>
		<comments>http://www.expression-web-tips.com/structural-naming-convention-in-css/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 17:33:11 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=714</guid>
		<description><![CDATA[<p>Found this interesting and informative post on the Six Revisions blog which is part of his CSS Tips series.</p>
<p>Structural naming convention means that you name elements by describing what they are, rather than where they are or how the look. You do this by assigning a class (dot) or id (# hash mark) to the [...]]]></description>
			<content:encoded><![CDATA[<p>Found this interesting and informative post on the Six Revisions blog which is part of his <strong>CSS Tips series</strong>.</p>
<p><strong>Structural naming convention</strong> means that you name elements by describing what they are, rather than where they are or how the look. You do this by assigning a class (dot) or id (# hash mark) to the element.  <strong>Presentational naming</strong> describes the location and/or appearance of web page elements.</p>
<p>The post discusses the concept of structural naming conventions, the benefits of using this convention, and shares some guidelines on practical applications of structural naming conventions.</p>
<p>First he gives an example (1) of a presentational naming layout and then discusses what is wrong with this approach. The presentational naming layout inlcudes:</p>
<ul>
<li>#top-div</li>
<li>#left-col</li>
<li>#right-col</li>
<li>#bottom-div</li>
</ul>
<p>The next example (2) uses a structural naming convention and includes the following:</p>
<ul>
<li>#header</li>
<li>#main-content</li>
<li>#secondary-content</li>
<li>#footer</li>
</ul>
<p>Example 3 really uses structural naming conventions which includes:</p>
<ul>
<li>#branding</li>
<li>#main-content</li>
<li>#secondary-content</li>
<li>#site-info</li>
</ul>
<p>The last example,using  fully-structural in naming conventions,  describes what the div’s and other elements are for, instead of where they are or how they look.</p>
<p>The second part of the post offers a few guidelines which include:</p>
<ol>
<li>When assigning a class or id, ask yourself “What is this element for?”</li>
<li>Avoid using names that rely on locational or visual aspects of the particular element.</li>
<li>Use names that are intuitive to you.</li>
</ol>
<p>He also includes some Further reading resources on this same topic:</p>
<ul>
<li>
<a href="http://meyerweb.com/eric/thoughts/2004/06/26/structural-naming/">Structural  Naming</a></li>
<li><a href="http://articles.techrepublic.com.com/5100-10878_11-5286783.html">Standardizing  CSS class and id names</a></li>
<li><a href="http://www.digital-web.com/articles/build_for_the_future_bend_dont_break/">Build  for the Future: Bend, Don’t Break</a></li>
</ul>
<p>You can read  <a title="CSS Tip #2: Structural Naming Convention in CSS" href="http://sixrevisions.com/css/css-tips/css-tip-2-structural-naming-convention-in-css/">CSS Tip #2: Structural Naming Convention in CSS</a> in its entirety.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/structural-naming-convention-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five Things Not to Forget on a New Site!</title>
		<link>http://www.expression-web-tips.com/five-things-not-to-forget-on-a-new-site/</link>
		<comments>http://www.expression-web-tips.com/five-things-not-to-forget-on-a-new-site/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 15:12:00 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[Web Design Tips]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=704</guid>
		<description><![CDATA[<p>I discovered a new blog today &#8211; Dazzlin Donna. One of her posts, Don&#8217;t Forget These Five Things on a New SIte, reminded me of a couple of things I sometimes forget. What about you, does your site contain the following?</p>
Robots.txt file
<p>A robots.txt file will tell the search engines to index every page or your [...]]]></description>
			<content:encoded><![CDATA[<p>I discovered a new blog today &#8211; <strong>Dazzlin Donna</strong>. One of her posts, <strong>Don&#8217;t Forget These Five Things on a New SIte</strong>, reminded me of a couple of things I sometimes forget. What about you, does your site contain the following?</p>
<h2>Robots.txt file</h2>
<p>A robots.txt file will tell the search engines to index every page or your site or not allow certain pages. If you want all pages of your site indexed, the robots.txt file should look like this:</p>
<p>User-Agent: *<br />
Disallow:</p>
<p>If you do NOT have a robots.txt file, the default behavior is to index everything. If you want to disallow certain directories, then you need to specify them in your robots.txt file.  In that case, your file might look something like this:</p>
<p>User-agent: *<br />
Disallow: /cgi-bin/<br />
Disallow: /folder-name/<br />
Disallow: /folder-name/</p>
<p>You can write your own robots.txt file or use  can generate a custom robots.txt file with a tool like <a href="http://tools.seobook.com/robots-txt/generator/">http://tools.seobook.com/robots-txt/generator/</a></p>
<p>You can read more  about what a robots.txt file is all about, by visiting <a href="http://www.robotstxt.org/robotstxt.html">http://www.robotstxt.org/robotstxt.html</a>.</p>
<h2>XML sitemap</h2>
<p>An XML sitemap is not required on your site but is a good way to let the search engines know about pages on your sites that are available for crawling.</p>
<blockquote><p><a title="Google" href="http://en.wikipedia.org/wiki/Google">Google</a> introduced <a title="Google Sitemaps" href="http://en.wikipedia.org/wiki/Google_Sitemaps">Google Sitemaps</a> so web developers can publish lists of links from across their sites.  The basic premise is that some sites have a large number of dynamic  pages that are only available through the use of forms and user entries.  The Sitemap files can then be used to indicate to a <a title="Web crawler" href="http://en.wikipedia.org/wiki/Web_crawler">web crawler</a> how such pages can be found. <a title="Google" href="http://en.wikipedia.org/wiki/Google">Google</a>, <a title="Bing.com" href="http://en.wikipedia.org/wiki/Bing.com">Bing</a>, <a title="Yahoo" href="http://en.wikipedia.org/wiki/Yahoo">Yahoo</a> and <a title="Ask.com" href="http://en.wikipedia.org/wiki/Ask.com">Ask</a> now jointly support the Sitemaps protocol. ~ Wikipedia ~</p></blockquote>
<p>To read more about sitemaps, visit <a href="http://www.sitemaps.org/">http://www.sitemaps.org/</a>. If you have a WordPress blog, then <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">download this plugin</a>, and that job will be a little easier.</p>
<h2>Custom 404 page</h2>
<p>What does a visitor to your site see if they try and visit a page that no longer exists?  A generic 404 – Not Found page? Or have you provided them with a custom 404 page that allows them to continue to navigate your site? You can find a tutorial on <a href="http://www.expression-web-tutorials.com/bh-custom-error-pages.html">Custom Error Pages &#8211; Customizing BlueHost Error Pages </a>on our sister site, Expression Web Tutorials &amp; Templates and one on <a href="http://www.genealogy-web-creations.com/create-custom-error-page.html">How to create custom Error Pages</a> on Genealogy Web Creations.</p>
<p>Do your visitors a favor and create your own Custom 404 page.</p>
<h2>Favicon</h2>
<p>What is a Favicon? It&#8217;s that tiny little graphic that shows when you bookmark a site like the EW on this blog. A favicon (short for favorites icon) is a 16×16 or 32×32 pixel square icon associated with a particular website or webpage.  Use any square image file and run it through a <a href="http://tools.dynamicdrive.com/favicon/">favicon generator</a> like the one provided by Dynamic Drive. Upload the file to the root directory of your site and insert the code given below in the head section of your page.</p>
<p>The code to inset the favicon looks like this &lt;link rel=&#8221;shortcut icon&#8221; type=&#8221;image/x-icon&#8221; href=&#8221;/favicon.ico&gt;</p>
<h2>Analytics code</h2>
<p>And last but not lease, don&#8217;t forget to add your analytics or stats code to your new site. Whether you use Google Analytics or a different one, find the instructions and the code to use and add it to your pages.</p>
<p>You can read Dazzlin Donna&#8217;s full post <a title="Five Things Not to Forget on a New Site." href="Five Things Not to Forget on a New Site!">Five Things Not to Forget on a New Site!</a> Thanks Donna for a great reminder.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/five-things-not-to-forget-on-a-new-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expression Web Community Toolbar updated</title>
		<link>http://www.expression-web-tips.com/expression-web-community-toolbar-updated/</link>
		<comments>http://www.expression-web-tips.com/expression-web-community-toolbar-updated/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 15:46:17 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[Expression Web Tips]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=700</guid>
		<description><![CDATA[<p>Do you hate to spend your time searching the web for sites with information, tutorials, and such on Expression Web? Do you find the sites, then forget to bookmark them? Woulddn&#8217;t you rather spend your time working on your site than hunting for the tutorials and resources you need to get the job done?</p>
<p>Then our [...]]]></description>
			<content:encoded><![CDATA[<p>Do you hate to spend your time searching the web for sites with information, tutorials, and such on Expression Web? Do you find the sites, then forget to bookmark them? Woulddn&#8217;t you rather spend your time working on your site than hunting for the tutorials and resources you need to get the job done?</p>
<p>Then our<a title="Free Expression Web Community Toolbar" href="http://expressionweb.ourtoolbar.com/" target="_blank"> Free Expression Web Community Toolbar </a>is just the tool you need! It&#8217;s updated frequently and the new links are added at the top of the various categories. Look for &#8220;NEW LINKS &#8211; LOOK HERE FIRST&#8221; with a date for the newest offerings. The <strong>Expression Web Community Toolbar</strong> is brought to you by Pat Geary and Tina Clarke of <a title="Migrating from FrontPage to Expression Web." href="http://www.frontpage-to-expression.com/">Migrating from FrontPage to Expression Web</a>. Both Pat and Tina are Microsfot MVP&#8217;s for Expression Web.</p>
<p>The toolbar includes all of the  Expression Web versions 1, 2, 3 and 4 as well as the Expression applications.</p>
<ul>
<li>Expression Design</li>
<li>Expression Blend</li>
<li>Expression Encoder</li>
</ul>
<p>It also includes links for  Contests, Giveaways, and special offers for Expression Web 3.0 and 4.0. Want to know what Expression Web Communities, Webcasts and Live Events might be available? Those are included too.</p>
<p>The toolbar would not be complete without resources for Web Design in general and you can find that information too.</p>
<p>Let Tina and Pat let their &#8220;fingers do the walking for you&#8221; while you spend your time working on your site, and of course, reading all the good information posted on the toolbar. The toolbar is free so download and install you <a title="Free Expression Web Community Toolbar" href="http://expressionweb.ourtoolbar.com/" target="_blank">Free Expression Web Community Toolbar</a> today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/expression-web-community-toolbar-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FP Cleaner for Expression Web 4</title>
		<link>http://www.expression-web-tips.com/fp-cleaner-for-expression-web-4/</link>
		<comments>http://www.expression-web-tips.com/fp-cleaner-for-expression-web-4/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 01:28:46 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[Expression Web Addons]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=694</guid>
		<description><![CDATA[<p>Steve Easton has just posted his FP Cleaner Tool which has been updated to work with Expression Web 4.0. This tool has been a staple in my arsenal for a number of years now and is one I always recommend to others for helping to clear up problems that may occur while using the program.</p>
<p [...]]]></description>
			<content:encoded><![CDATA[<p>Steve Easton has just posted his FP Cleaner Tool which has been updated to work with Expression Web 4.0. This tool has been a staple in my arsenal for a number of years now and is one I always recommend to others for helping to clear up problems that may occur while using the program.</p>
<div id="attachment_695" class="wp-caption alignnone" style="width: 310px"><a href="http://www.expression-web-tips.com/images/fp-cleaner-for-ew4.jpg"><img class="size-medium wp-image-695 " title="fp-cleaner-for-ew4" src="http://www.expression-web-tips.com/images/fp-cleaner-for-ew4-300x170.jpg" alt="FP Cleaner for Expression Web 4" width="300" height="170" /></a><p class="wp-caption-text">FP Cleaner for Expression Web 4</p></div>
<p>FP Cleaner for Expression Web 4.<br />
Expression Web 4 Cleanup Utility</p>
<p>FP Cleaner does not require installation and will run from the desktop. According to Steve, the program will run on any of the current Windows system. I am running it on a Windows Vista laptop and a Windows 7 desktop with no problems.</p>
<p>You can download FPCleaner from <a title="FP Cleaner for Expression Web 4." href="http://www.95isalive.com/fixes/ew4.htm">http://www.95isalive.com/fixes/ew4.htm</a></p>
<h2>What Do the Buttons Do?</h2>
<ul>
<li>The top button ‘<strong>Restore Default Menus and Toolbars</strong>‘  is not available as the ability to customize the toolbars is not  available in EW 4.</li>
<li>Change the ‘<strong>Last Web Open Setting</strong>‘  allows you to  change that setting to ensure the program is not trying to open a web  when it  starts. This can be useful if you have EW is set to open the  last web edited and that web has a problem.</li>
<li>‘<strong>Clear the Hidden Temporary Files</strong>‘  checks for the  location of the hidden Temporary directory for the logged on User, if  the directory exists, pressing this button clears it and moves the files  to the Recycle Bin. Files left behind in these directories by an  improper computer or program shut  down will cause problems when trying  to open,  save, and/or  edit pages on your web  site.</li>
<li><strong>‘Clear the Hidden Web Cache files (*.web)’ </strong>- There  is a .web file for each of your webs and if these files become  corrupted, you may encounter problems opening or closing your web.  Clicking this button deletes these files and forces creation of new  clean files when each web is opened or published.</li>
<li>‘<strong>Clear the Find/Replace MRU List</strong>‘  clears the Most  Recently Used ( MRU ) list of Find/Replace entries</li>
<li>Clicking ‘<strong>Start</strong>‘ will Launch Expression Web 4.</li>
<li>Clicking ‘<strong>Close</strong>‘  closes FP Cleaner for Expression  Web 4 without starting the program.</li>
<li>Clicking &#8216;<strong>Properties</strong>&#8216; opens the Windows file properties dialog for EWFPCleaner.exe.</li>
<li>Clicking &#8216;<strong>Info</strong>&#8216; displays the basic information text.</li>
</ul>
<p>The Fp Cleaner for Expression Web 4 is, as it always has been FREE, and can be downloaded from <a title="FP Cleaner for Expression Web 4." href="http://www.95isalive.com/fixes/ew4.htm">http://www.95isalive.com/fixes/ew4.htm.</a></p>
<p>Thank you Steve.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/fp-cleaner-for-expression-web-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML / CSS Template Creation Tips and Tricks</title>
		<link>http://www.expression-web-tips.com/html-css-template-creation-tips-and-tricks/</link>
		<comments>http://www.expression-web-tips.com/html-css-template-creation-tips-and-tricks/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 18:35:40 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML - XHTML]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=687</guid>
		<description><![CDATA[<p>NEW: From the Factory Tutorial — Today we are going to look at some tips and tricks you can implement when creating an (x)html &#38; css template.  Hopefully these tips will increase the overall quality of your templates.</p>

Write clean code with consistent indentation &#8211; When writing your XHTML code, be consistent in the amount [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>NEW: From the Factory Tutorial — Today we are going to look at some tips and tricks you can implement when creating an (x)html &amp; css template.  Hopefully these tips will increase the overall quality of your templates.</p></blockquote>
<ol>
<li><strong>Write clean code with consistent indentation</strong> &#8211; When writing your XHTML code, be consistent in the amount of spaces you use to indent the various lines. With Expression Web, you can set this under Tools &gt; Page Editor Options &gt; Code Formatting tab. Sent the number of spaces to be used for Indent. You should also limit the number of bank lines you use in between the lines of code.</li>
<li><strong>Comments are your friend</strong>. Using comments is a good way to keep your code organized. From within Expression Web, you can use Code Snippets to insert comments into both your XHTML code and your CSS Code. Ian Hayes has also developed on add-in for Expression Web 4 <a title="Code Comment Add-in." href="http://gallery.expression.microsoft.com/en-us/CodeCommentAddIn">Code Comment Add-In</a>.</li>
<li><strong>Use folders to organize your files</strong> &#8211; Rather than sticking all your files in the root directory of your website, create folders for your images, styles, and javascript files. I add the following folders to my websites for organizational purposes:
<ol>
<li>images</li>
<li>css</li>
<li>js</li>
<li>dwt</li>
</ol>
</li>
<li><strong>Write standards compliant code</strong>. Make sure to check and see if your XHTML code validates as well as your CSS. This will help ensure that your pages display as you expect in all browsers. Expression Web can help you do this by using the <a title="Compatibility Checker on Status Bar." href="http://www.expression-web-tutorials.com/ew4/compatibility-checker.html">Compatibility Checker on Status Bar</a>.</li>
<li><strong>Use semantic code</strong> &#8211; HTML is used for writing the code, describing the content NOT for styling the content. The basic idea of semantic code is to write markup that describes your sites content. So instead of using &lt;div class=&#8221;title&#8221;&gt;&lt;strong&gt;Title&lt;/strong&gt;&lt;/div&gt; for the title of your page, use &lt;h1&gt;Title&lt;/h1&gt; which is semantic markup.</li>
<li><strong>Link to your CSS stylesheets in the head of the document</strong>. Create an external style sheet and link to it rather than embedding the styles in the head section of your page.</li>
<li><strong>Put your JavaScript at the bottom</strong>. Placing your scripts right before your closing body tag will allow your sites content to load first, before your JavaScript is loaded.</li>
<li><strong>Let Google host your JavaScript framework</strong>.</li>
<li><strong>Don’t forget about Internet Explorer (Conditional Comments)</strong>.</li>
</ol>
<p>Read <a title="HTML / CSS Template Creation Tips and Tricks." href="http://www.mojo-themes.com/2010/07/html-css-template-creation-tips-and-tricks/">HTML / CSS Template Creation Tips and Tricks</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/html-css-template-creation-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expression Web 4 Tutorials EBook</title>
		<link>http://www.expression-web-tips.com/expression-web-4-tutorials-ebook/</link>
		<comments>http://www.expression-web-tips.com/expression-web-4-tutorials-ebook/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 19:27:03 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[Expression Web EBooks]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=685</guid>
		<description><![CDATA[<p>Free  Expression Web 4 Tutorials EBook by Pat Geary Microsoft MVP  Expression Web has just been published. The EBook is in pdf format for easy  printing and is zipped for quicker download.  The title says it all Expression Web 4 Tutorials from Install to  Publish and More. I&#8217;ll take you through installing [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Free Expression Web 4 Tutorials EBook." href="http://www.expression-web-tutorials.com/ew4-tutorials-ebook.html"></a><a href="http://www.expression-web-tutorials.com/ew4-tutorials-ebook.html"><img class="alignleft" title="Expression Web 4 Tutorials EBook" src="http://www.expression-web-tutorials.com/ew4/ew4-ebook-cover-sm.jpg" alt="Expression Web 4 Tutorials EBook" width="168" height="223" /></a>Free  Expression Web 4 Tutorials EBook by Pat Geary Microsoft MVP  Expression Web has just been published. The EBook is in pdf format for easy  printing and is zipped for quicker download.  The title says it all <strong>Expression Web 4 Tutorials from Install to  Publish and More. </strong>I&#8217;ll take you through installing Expression  Studio Web Professional (the official name) and setting up the program,  to creating your first site and page right through to publishing. At the  end I&#8217;ll throw in some extras.</p>
<p>You can view the complete Table of Contents and download <a title="Free Expression Web 4 Tutorials EBook." href="http://www.expression-web-tutorials.com/ew4-tutorials-ebook.html">Free   Expression Web 4 Tutorials EBook</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/expression-web-4-tutorials-ebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are You Following the Principles of Top Notch CSS Design?</title>
		<link>http://www.expression-web-tips.com/are-you-following-the-principles-of-top-notch-css-design/</link>
		<comments>http://www.expression-web-tips.com/are-you-following-the-principles-of-top-notch-css-design/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 17:22:03 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=676</guid>
		<description><![CDATA[<p>Cascading Style Sheets &#8211; or CSS for short &#8211; allows web designers to separate the presentation of their sites from the content. CSS can be used to style any element of your page or place the elements on the page.</p>
<p>CSS can be an extremely powerful markup language for designers.</p>
<p>However, the CSS that is produced is [...]]]></description>
			<content:encoded><![CDATA[<p>Cascading Style Sheets &#8211; or CSS for short &#8211; allows web designers to separate the presentation of their sites from the content. CSS can be used to style any element of your page or place the elements on the page.</p>
<blockquote><p>CSS can be an extremely powerful markup language for designers.</p>
<p>However, the CSS that is produced is only as good as the principles that are being followed by the designer creating the code.</p>
<p>While you may think that anyone can crank out CSS, there is a big difference between writing CSS and producing top notch CSS.</p>
<p>To ensure that you are on the right track, here are eight CSS principles that every web designer should be following.</p></blockquote>
<p>Are you following these principles for CSS?</p>
<ol>
<li>Take the Time to Validate &#8211; Many of us take the time to validate  our HTML/XHTML code BUT do we do also <a rel="nofollow" href="http://jigsaw.w3.org/css-validator">validate</a> our cascading style sheets? Is the doctype you use up-to-date and correct?</li>
<li>Document (but not in your code) &#8211; Adding comments to your style sheets will help you understand why you did what you did a week or a month from now. It will also help if someone else needs to take over the project at a later date. Adding comments directly to your CSS code will increase the size of the file and, as a result, increase load time. To avoid this, comment your css in a separate file.</li>
<li>Say No to Hacks</li>
<li>Don’t Abuse Divs &#8211; Use the appropriate HTML tag instead of automatically creating a new div.</li>
<li>Put Thought Into Your Class Names -</li>
<li>Embrace Shorthand</li>
<li>Don’t Forget About Printers &#8211; It’s important to use CSS to make your content printer friendly.</li>
<li>Never Stop Learning &#8211; continue to work on learning more about css.</li>
</ol>
<p>Read <a title="Permanent Link to Are You Following the  Principles of Top Notch CSS Design?" href="http://www.webdesignerdepot.com/2008/11/are-you-following-the-principles-of-top-notch-css-design/">Are You Following the Principles of  Top Notch CSS Design?</a> in its entirety.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/are-you-following-the-principles-of-top-notch-css-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Majestic Mountains Site Template Package</title>
		<link>http://www.expression-web-tips.com/majestic-mountains-site-template-package/</link>
		<comments>http://www.expression-web-tips.com/majestic-mountains-site-template-package/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 21:00:48 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[Expression Web Templates]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=667</guid>
		<description><![CDATA[<p>Check out the latest offering from Expression Web Tutorials &#38; Templates, the Majestic Mountains Site Template Package which is based on one of the basic layouts offered by our sister site Migrating from FrontPage to Expression Web.</p>
<p class="wp-caption-text">Majestic Mountains Site Template Package</p>
<p>The template is a 1024px fixed width layout with two equal height columns. The [...]]]></description>
			<content:encoded><![CDATA[<p>Check out the latest offering from Expression Web Tutorials &amp; Templates, the <a title="Majestic Mountains Site Template Package." href="http://www.expression-web-tutorials.com/majestic-mountains/">Majestic Mountains Site Template Package</a> which is based on one of the basic layouts offered by our sister site <a title="Migrating from FrontPage to Expression Web." href="http://www.frontpage-to-expression.com/site-templates/">Migrating from FrontPage to Expression Web.</a></p>
<div class="wp-caption alignnone" style="width: 160px"><a href="http://www.expression-web-tutorials.com/majestic-mountains/"><img title="Majestic Mountains Site Template Package" src="http://www.expression-web-tutorials.com/images/majestic-mountains.jpg" alt="Majestic Mountains Site Template Package" width="150" height="264" /></a><p class="wp-caption-text">Majestic Mountains Site Template Package</p></div>
<p>The template is a 1024px fixed width layout with two equal height columns. The package includes a DWT, external style sheet and all graphic images. Did I mention the template is FREE? The package is a complete website ready for you to add content and additional pages if needed. Current pages can be easily renamed. This is just one of the templates offered and all are Free for you to use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/majestic-mountains-site-template-package/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is browser chrome?</title>
		<link>http://www.expression-web-tips.com/what-is-browser-chrome/</link>
		<comments>http://www.expression-web-tips.com/what-is-browser-chrome/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 19:58:17 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=657</guid>
		<description><![CDATA[<p>Browser chrome does NOT refer to Google&#8217;s addition to the browser market &#8211; Google Chrome.</p>
<p>Browser chrome refers to the borders of a Web browser window, which include the window frames, menus, toolbars and scroll bars. When designing a Web page, the browser chrome must be added to determine the width of the page.</p>
<p>If you look [...]]]></description>
			<content:encoded><![CDATA[<p>Browser chrome does NOT refer to Google&#8217;s addition to the browser market &#8211; Google Chrome.</p>
<p>Browser chrome refers to the borders of a Web browser window, which include the window frames, menus, toolbars and scroll bars. When designing a Web page, the browser chrome must be added to determine the width of the page.</p>
<p>If you look at <a href="http://www.expression-web-tutorials.com/browser-chrome/">http://www.expression-web-tutorials.com/browser-chrome/</a> in both Internet Explorer 8 and Firefox, and Opera, you will see that each of them display a slight margin at the top of the page. This is because of the default setting for each of the browsers.</p>
<p>If I add to the body styles on the external style sheet</p>
<p>body {margin: 0px; padding: 0px; }</p>
<p>and view the same page again in all three browsers, you can see the difference.</p>
<p><a href="http://www.expression-web-tutorials.com/browser-chrome/index-two.html">http://www.expression-web-tutorials.com/browser-chrome/index-two.html</a></p>
<p>In all three browsers, the top of the masthead is now flush against the top of the browser.</p>
<h2>CSS Reset</h2>
<p>Adding {margin: 0px; padding: 0px; } to the body tag is referred to as CSS Reset or Reset CSS. Resetting your style or styles  is the process of resetting or setting the styles of an elements to a baseline value,  This allows you to  avoid cross-browser differences due to their built-in default style settings. By resetting your styles, you avoid defaulting to the browser’s built-in styles, which differs from browser to browser.</p>
<p>CSS Reset is important because it removes inconsistent margins, paddings, line-heights, and other attributes that can cause your web pages to display differently across the various browsers. The reset can be as simple as setting the margins and padding for the body tag or more complex as the settings recommended by Eric Meyers in <a title="Reset Tools - Css Reset." href="http://meyerweb.com/eric/tools/css/reset/">CSS Tools: Reset CSS</a></p>
<p>Each of the Site Templates offered by <a title="Migrating from FrontPage to Expression Web." href="http://www.frontpage-to-expression.com/site-templates/">Migrating from FrontPage to Expression Web</a>, makes use of the following CSS Reset</p>
<p>html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {<br />
margin: 0px;<br />
padding: 0px;<br />
border: 0px;<br />
outline: 0px;<br />
font-size: 100%;<br />
}</p>
<p>You can read more about CSS Resets at:</p>
<ul>
<li><a href="http://sixrevisions.com/css/css-tips/css-tip-1-resetting-your-styles-with-css-reset/">http://sixrevisions.com/css/css-tips/css-tip-1-resetting-your-styles-with-css-reset/</a></li>
<li><a href="http://www.css-reset.com/">http://www.css-reset.com/</a></li>
<li><a href="http://www.vcarrer.com/2010/05/css-mini-reset.html">http://www.vcarrer.com/2010/05/css-mini-reset.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/what-is-browser-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expression Web 4 Add-ins from Ajatix</title>
		<link>http://www.expression-web-tips.com/expression-web-4-add-ins-from-ajatix/</link>
		<comments>http://www.expression-web-tips.com/expression-web-4-add-ins-from-ajatix/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 12:38:43 +0000</pubDate>
		<dc:creator>Patricia Geary</dc:creator>
				<category><![CDATA[Expression Web Addons]]></category>

		<guid isPermaLink="false">http://www.expression-web-tips.com/?p=655</guid>
		<description><![CDATA[<p>Ajatix has updated three of their add-ins so they now work with Expression Web 4.0. The include:</p>

 Advanced CSS Drop Down Menu Expression Web
Pure CSS Menu Expression Web
Lightbox Expression Web

<p>These are commercial add-ins. I have personally used the first two and you can read more about them from Expression Web Add-ins.</p>
<p>You can see a sample [...]]]></description>
			<content:encoded><![CDATA[<p>Ajatix has updated three of their add-ins so they now work with Expression Web 4.0. The include:</p>
<ul>
<li> <a title="Advanced CSS Drop Down Menu." href="http://www.ajatix.com/css-drop-down-menu/expression-web-add-in.html">Advanced CSS Drop Down Menu Expression Web</a></li>
<li><a title="Pure CSS Menu." href="http://www.ajatix.com/pure-css-menu/expression-web-add-in.html">Pure CSS Menu Expression Web</a></li>
<li><a title="Lightbox for Expression Web." href="http://www.ajatix.com/lightbox/expression-web-add-in.html">Lightbox Expression Web</a></li>
</ul>
<p>These are commercial add-ins. I have personally used the first two and you can read more about them from <a title="Expression Web Add-ins." href="http://www.expression-web-tutorials.com/ew-addins.html">Expression Web Add-ins</a>.</p>
<p>You can see a sample of the CSS Menu on my free <a title="Ocean Template." href="http://www.expression-web-tutorials.com/ocean/">Ocean Template</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.expression-web-tips.com/expression-web-4-add-ins-from-ajatix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
