<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Browsers</title>
        <link>http://heathersolomon.com/blog/category/7.aspx</link>
        <description>IE, Firefox and Netwhat?  Going on's and tidbits...</description>
        <language>en-US</language>
        <copyright>Heather Solomon</copyright>
        <managingEditor>me@heathersolomon.com</managingEditor>
        <generator>Subtext Version 1.9.3.51</generator>
        <item>
            <title>Styling SharePoint with Attribute Selectors and IE6</title>
            <link>http://heathersolomon.com/blog/archive/2009/03/09/Styling-SharePoint-with-Attribute-Selectors-and-IE6.aspx</link>
            <description>&lt;p&gt;I recently posted some &lt;a href="http://www.heathersolomon.com/blog/articles/Controlling-Single-Web-Parts-with-CSS.aspx"&gt;methods for styling SharePoint web parts using attribute selectors&lt;/a&gt;. I heard back from several people about how they can't use this option due to IE6's lack of support for attribute selectors. I was aware of this at the time of the post but neglected to point it out in the post text.&lt;/p&gt;
&lt;p&gt;IE6 usage is steadily dwindling (Jan '09 - 18.5% browser market share; &lt;a href="http://www.w3schools.com/browsers/browsers_stats.asp"&gt;source: W3&lt;/a&gt;). I know there is also internal use of IE6 throughout organizations, but this is also slowly receding. &lt;/p&gt;
&lt;p&gt;CSS is usually about form, not necessarily about function.  I encourage people to focus on the most common denominator and not the least common denominator when testing and styling web pages for browser support. If attribute selectors or any other type of method works for the mass majority of your users, then use it.   Don't make development harder and more time intensive for the sake of a smaller percentage of users. Having your web pages downgrade gracefully does not mean the web page has to look exactly the same in every browser.  You do have to decide what must match visually across all browsers, but ultimately the focus is displaying the content and not what color the text is, etc. &lt;/p&gt;
&lt;p&gt;You can also use conditional comments in IE to provide JavaScript or CSS files that are targeted for IE, or even a specific IE version.  &lt;a href="http://msdn.microsoft.com/en-us/library/ms537512.aspx"&gt;Learn more about conditional comments here&lt;/a&gt;. This method can be used in workarounds and styling differences or even providing a simpler interface for IE6 users. &lt;/p&gt;
&lt;p&gt;There are a few posted workarounds for attribute selectors and IE6:&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&amp;amp;id=176"&gt;Simulating Attributes Selectors in IE6&lt;/a&gt;&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://code.nontalk.com/2006/11/css-workaround-for-styling-form-inputs.html"&gt;CSS + Javascript Workaround for Styling Form Inputs in Internet Explorer (IE)&lt;/a&gt; &lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;One last comment before the angry mob hits, I understand that there are situations out there where you have to support IE6. They are the mass majority of users for your site, etc.  Attribute selectors aren't the only solution, just an option.  Meanwhile, keep encouraging those sites/projects/people to leave analog and join the digital age before we toss their computer monitors out.  ;-)&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://heathersolomon.com/blog/aggbug/6299.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2009/03/09/Styling-SharePoint-with-Attribute-Selectors-and-IE6.aspx</guid>
            <pubDate>Mon, 09 Mar 2009 14:40:41 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/6299.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2009/03/09/Styling-SharePoint-with-Attribute-Selectors-and-IE6.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/6299.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/6299.aspx</trackback:ping>
        </item>
        <item>
            <title>DOCTYPES and SharePoint</title>
            <link>http://heathersolomon.com/blog/archive/2008/01/25/DOCTYPES-and-SharePoint.aspx</link>
            <description>&lt;p&gt;I got asked by two separate friends of mine just within a few days of each other if I had any recommendations for what DOCTYPE tag should be used in SharePoint.  Honestly up until that point, I had not put a lot of thought into outside of the attitude of look up whatever &lt;a href="http://www.alistapart.com"&gt;A List Apart&lt;/a&gt; recommends and use that.   So I delved into it a bit more and now I do have an opinion on the matter. &lt;/p&gt;
&lt;p&gt;A little info first, &lt;a href="http://en.wikipedia.org/wiki/Doctype"&gt;DOCTYPE&lt;/a&gt; is short for Document Type Declaration. A DOCTYPE associates a web page with a Document Type Definition (DTD).  The DTD is the definition of the particular version of HTML or XHTML you are using in your site and is what will be used for rendering of the web page.  For DTDs, there are generally 3 types, strict, transitional and frames. &lt;/p&gt;
&lt;p&gt;Strict means there isn't presentational elements in your code, such as formatting and alignment.  Instead everything has be to controlled separately in the CSS.   Transitional allows both CSS and presentational elements in the code.  Frames, well is for frames and if you are still using those we need to chat.   :-)&lt;/p&gt;
&lt;p&gt;Based on your DTD and what browser you are viewing your site in, your page will render in Standards mode or &lt;a href="http://en.wikipedia.org/wiki/Quirks_mode"&gt;Quirks mode&lt;/a&gt;.  Standards mode renders the page based on the DTD you defined. Quirks mode will render the page the best it can while emulating older browsers.  If you don't define a DTD to use, the browser will default to Quirks mode. &lt;/p&gt;
&lt;p&gt;So what about SharePoint?  First off, note that default.master does not specify a DTD! The publishing master pages (blueband, blackband, etc) use the HTML 4.0 Transitional DTD that renders in Standards mode.&lt;/p&gt;
&lt;p&gt;For my base master pages, I put in a DOCTYPE that uses the HTML 4.0 transitional DTD that will render the site in quirks mode.   Why?  It is the lowest common denominator and appropriate for the general use of the master page.  This is not to say this is the DTD you should be using for your site.  Ultimately, you need look at the site's target audience and purpose and select a DTD based on your individual site needs. &lt;/p&gt;
&lt;p&gt;However, I do think Transitional DTDs should be used since there is a lot of rendered code with out of the box SharePoint that you don't have control over, therefore your page will have presentation elements in the code and not solely use CSS for formatting.  That and Transitional is best when you use tables for page layout.   Tables vs. CSS positioning wars aside, out of the box SharePoint makes heavy use of tables for layout so stick with the transitional DTDs. &lt;/p&gt;
&lt;p&gt;I personally don't use the XHTML DTDs because I have yet to see justification for using them, and I get a bit worried about the fact that XHTML 1.0 won't be supported in XHTML 2.0 and vice versa.  It seems to me if you go with a XHTML DTD, you are limiting yourself.  But again, this goes back to what does your site need, not what makes me nervous.&lt;/p&gt;
&lt;p&gt;Another important thing about DTDs, is you need to select one BEFORE you delve too deep in developing your user interface.  The DTD you specify in the DOCTYPE tag will affect how your page is rendered, so don't write a bunch of HTML and CSS and then apply or change the DTD, many of your page elements could go out of whack and you will have to rewrite some of your code. &lt;/p&gt;
&lt;p&gt;Here are the two DTDs I think are best for SharePoint:&lt;/p&gt;
&lt;p&gt;HTML 4.0 Transitional in Standards Mode (use this one if you can):&lt;br /&gt;
&lt;font face="Arial"&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD html 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&amp;gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;HTML 4.0 Transitional in Quirks Mode:&lt;br /&gt;
&lt;font face="Arial"&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD html 4.01 Transitional//EN"&amp;gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;Here are some additional resources:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;font face="Arial"&gt;&lt;a href="http://www.w3schools.com/tags/tag_doctype.asp"&gt;W3Schools DOCTYPE Definition and Usage&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial"&gt;&lt;a href="http://www.webmasterworld.com/html/3061635.htm"&gt;FAQ: Choosing the best doctype for your site&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial"&gt;&lt;a href="http://gutfeldt.ch/matthias/articles/doctypeswitch/table.html"&gt;Doctypes and their respective layout mode&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial"&gt;&lt;a href="http://www.alistapart.com/articles/doctype/"&gt;Fix Your Site With the Right DOCTYPE!&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial"&gt;&lt;a href="http://www.htmlgoodies.com/primers/html/article.php/3701321"&gt;Using the DOCTYPE Tag&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial"&gt;&lt;a href="http://www.elementary-group-standards.com/html/why-xhtml.html"&gt;Why XHTML? Or, Why not HTML?&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial"&gt;&lt;a href="http://www.alistapart.com/articles/beyonddoctype"&gt;Beyond DOCTYPE: Web Standards, Forward Compatibility, and IE8&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;UPDATE 1/25/08&lt;/strong&gt;: Well DOCTYPES must be in the air, &lt;font face="Arial"&gt;&lt;a href="http://blog.mastykarz.nl/"&gt;Waldek Mastykarz&lt;/a&gt; &lt;/font&gt;just posted about DOCTYPEs as well, and recommended the use of XHTML 1.0 Strict or Transitional DTD.  He talks about his reasonings and the benefits, drawbacks and challenges with this approach.  For a different viewpoint, &lt;a href="http://blog.mastykarz.nl/2008/01/22/which-doctype-to-use-with-sharepoint-2007/"&gt;read his article here&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UPDATE 3/10/08&lt;/strong&gt;: &lt;a href="http://www.sharepointblogs.com/mossman/default.aspx"&gt;Randy Drisgill&lt;/a&gt; has tested SharePoint in the next version of Internet Explorer, IE8, and has a &lt;a href="http://www.sharepointblogs.com/mossman/archive/2008/03/06/ie8-beta-1-moss-revisit.aspx"&gt;recommendation&lt;/a&gt; to include the meta tag that forces IE8 to render the web page based on IE7 parameters. &lt;br /&gt;
&amp;lt;meta http-equiv="X-UA-Compatible" content="IE=7" /&amp;gt;&lt;/p&gt;&lt;img src="http://heathersolomon.com/blog/aggbug/6269.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2008/01/25/DOCTYPES-and-SharePoint.aspx</guid>
            <pubDate>Fri, 25 Jan 2008 17:28:39 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/6269.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2008/01/25/DOCTYPES-and-SharePoint.aspx#feedback</comments>
            <slash:comments>7</slash:comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/6269.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/6269.aspx</trackback:ping>
        </item>
        <item>
            <title>SharePoint 2007 Design Tip: Welcome Menu Arrow Display</title>
            <link>http://heathersolomon.com/blog/archive/2007/09/17/SharePoint-2007-Design-Tip-Welcome-Menu-Arrow-Display.aspx</link>
            <description>&lt;p&gt;While working with the Welcome menu in your SharePoint site (the drop down menu with the options to sign in as a different user, log out, etc) if you strip the menu out of the table that the SharePoint default.master page uses, the arrow that appears to the right of the Welcome menu may drop down to be level with the baseline of the welcome text. &lt;/p&gt;
&lt;p&gt;SharePoint default.master code:&lt;/p&gt;
&lt;p&gt;&amp;lt;td valign="middle" class="ms-globallinks"&amp;gt;&lt;br /&gt;
   &amp;lt;wssuc:Welcome id="IdWelcome" runat="server" EnableViewState="false"&amp;gt;&lt;br /&gt;
   &amp;lt;/wssuc:Welcome&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;/p&gt;
&lt;p&gt;You can correct this by adding a font-size attribute to the wrapping container you use to place the menu in your custom master page:&lt;/p&gt;
&lt;p&gt;(CSS Code)&lt;br /&gt;
.Custom-WelcomeMenu {&lt;br /&gt;
   font-size: 8pt&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;(Master page code)&lt;br /&gt;
&amp;lt;div class="Custom-WelcomeMenu"&amp;gt;&lt;br /&gt;
   &amp;lt;!-- Welcome Menu --&amp;gt;&lt;br /&gt;
   &amp;lt;wssuc:Welcome id="IdWelcome" runat="server" EnableViewState="false"&amp;gt;&lt;br /&gt;
   &amp;lt;/wssuc:Welcome&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.heathersolomon.com/images/postimages/welcomemenuarrowplacement.jpg"&gt;Look at a sample screenshot&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://heathersolomon.com/blog/aggbug/6252.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2007/09/17/SharePoint-2007-Design-Tip-Welcome-Menu-Arrow-Display.aspx</guid>
            <pubDate>Mon, 17 Sep 2007 21:25:16 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/6252.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2007/09/17/SharePoint-2007-Design-Tip-Welcome-Menu-Arrow-Display.aspx#feedback</comments>
            <slash:comments>13</slash:comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/6252.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/6252.aspx</trackback:ping>
        </item>
        <item>
            <title>MSFT Admits IE Mistakes</title>
            <link>http://heathersolomon.com/blog/archive/2006/03/21/4189.aspx</link>
            <description>&lt;P&gt;(sent to me from my bud Chris)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://news.yahoo.com/s/pcworld/20060320/tc_pcworld/125142;_ylt=AkE.ED37XQfF3hMyc1XecTOs0NUE;_ylu=X3oDMTA3cjE0b2MwBHNlYwM3Mzg"&gt;Microsoft Admits Internet Explorer Mistakes &lt;/A&gt;&lt;/P&gt;&lt;img src="http://heathersolomon.com/blog/aggbug/4189.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2006/03/21/4189.aspx</guid>
            <pubDate>Tue, 21 Mar 2006 16:33:00 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/4189.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2006/03/21/4189.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/4189.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/4189.aspx</trackback:ping>
        </item>
        <item>
            <title>Good post on how not to be a Firefox fanatic</title>
            <link>http://heathersolomon.com/blog/archive/2006/02/14/3694.aspx</link>
            <description>&lt;P&gt;Bit of an old post, but I like the message....&amp;nbsp; Via &lt;A href="http://www.spreadfirefox.com/"&gt;SpreadFirefox blog&lt;/A&gt;...&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;
&lt;HR id=null&gt;
&lt;/P&gt;
&lt;P&gt;In my opinion it's ridiculous to have "loyalty" to a company. I base my evaluation of products only on their own self-worth and merit as a product, and not on any pre-conceived opinions about the company that develops it or distributes it. Generalizing about the software of one company as a whole is, frankly, narrow-minded and readily worthy of ridicule. A comment such as 'Note also that Firefox users are in denial about the greatness of Microsoft's products.', would display a bias for Microsoft products and discredit whoever said it. Both sides are doing this, and often our side is a bit ruder about it. Of course you can often expect that if one application from a company is good that they have applied the same level of standard to their other applications, but you still have to try them out to see what you think of them.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.spreadfirefox.com/node/19663"&gt;Keep reading....&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;
&lt;HR id=null&gt;
&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;img src="http://heathersolomon.com/blog/aggbug/3694.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2006/02/14/3694.aspx</guid>
            <pubDate>Tue, 14 Feb 2006 12:31:00 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/3694.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2006/02/14/3694.aspx#feedback</comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/3694.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/3694.aspx</trackback:ping>
        </item>
        <item>
            <title>A Final End to IE/MAC</title>
            <link>http://heathersolomon.com/blog/archive/2005/12/20/3230.aspx</link>
            <description>&lt;P&gt;Via &lt;A href="http://webstandards.org/buzz/archive/2005_12.html#a000597"&gt;Web Standards Project&lt;/A&gt;:&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;
&lt;HR id=null&gt;
Microsoft has &lt;A href="http://www.microsoft.com/mac/products/internetexplorer/internetexplorer.aspx?pid=internetexplorer"&gt;announced &lt;/A&gt;that they will cease all support for IE/Mac as of December 31, 2005 and will cease all distribution of the software on January 31, 2006.&lt;/P&gt;
&lt;P&gt;While IE/Mac has become something of a &lt;A href="http://photomatt.net/2004/07/16/mac-ie/"&gt;red-headed stepchild &lt;/A&gt;in the past couple years, it has a proud history of &lt;A href="http://www.tantek.com/log/2005/03.html#d12t1039"&gt;standards-related achievements&lt;/A&gt;, most of which were the result of now-WaSP, then Microsoftie Tantek &lt;A href="http://webstandards.org/about/bios/tantek.html"&gt;&amp;#199;elik&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;This milestone doesn't actually mean much for working web developers &amp;#8212; how much effort to put into supporting a given browser is best determined by audience share, not whether the browser is currently 'supported' or not. Nevertheless, it's a bittersweet reminder of the creeping obsolescence of what was arguably the single piece of software most responsible for kicking off the CSS layout revolution.
&lt;HR id=null&gt;
&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;img src="http://heathersolomon.com/blog/aggbug/3230.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2005/12/20/3230.aspx</guid>
            <pubDate>Tue, 20 Dec 2005 14:09:00 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/3230.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2005/12/20/3230.aspx#feedback</comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/3230.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/3230.aspx</trackback:ping>
        </item>
        <item>
            <title>Another angle on the Resolution Debate</title>
            <link>http://heathersolomon.com/blog/archive/2005/12/01/3142.aspx</link>
            <description>&lt;P&gt;Oh one of my favorite topics is the resolution debates about tossing 800x600 to the wayside and formerly adopting 1024.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.hicksdesign.co.uk/journal/is-1024-ok"&gt;Jon Hicks posted his two cents &lt;/A&gt;and another slant on the debate, which was what about all the users out there that don't run their browsers full screen, people running at 1024+ but leave their browsers at a smaller size in order to view more on their monitors and use other tools?&lt;/P&gt;
&lt;P&gt;I hadn't thought about that angle, but he has a good point.&amp;nbsp; I think it is a definite consideration. &lt;/P&gt;
&lt;P&gt;I stand by fluid design that looks good at 1024 and scales down very nicely to 800x600.&amp;nbsp; No site should sit boxed up in the corner of the browser showing gobs of white space.&amp;nbsp; Fluid sites are the ticket IMHO. &lt;/P&gt;&lt;img src="http://heathersolomon.com/blog/aggbug/3142.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2005/12/01/3142.aspx</guid>
            <pubDate>Thu, 01 Dec 2005 18:32:00 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/3142.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2005/12/01/3142.aspx#feedback</comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/3142.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/3142.aspx</trackback:ping>
        </item>
        <item>
            <title>New version of Firefox released</title>
            <link>http://heathersolomon.com/blog/archive/2005/11/30/3134.aspx</link>
            <description>&lt;P&gt;Firefox 1.5 has been released.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.mozilla.com/"&gt;Download Firefox&lt;/A&gt;&lt;/P&gt;&lt;img src="http://heathersolomon.com/blog/aggbug/3134.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2005/11/30/3134.aspx</guid>
            <pubDate>Wed, 30 Nov 2005 14:20:00 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/3134.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2005/11/30/3134.aspx#feedback</comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/3134.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/3134.aspx</trackback:ping>
        </item>
        <item>
            <title>Developer/Designer Tools</title>
            <link>http://heathersolomon.com/blog/archive/2005/09/18/2073.aspx</link>
            <description>&lt;P&gt;I found out about some cool tools this week:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://developer.mabwebdesign.com/cssoptimizer.html"&gt;&lt;STRONG&gt;CSS Optimizer&lt;/STRONG&gt;&lt;/A&gt;&amp;nbsp;via &lt;A href="http://css.weblogsinc.com/entry/1234000153059098/"&gt;David Chartier&lt;/A&gt;&lt;BR&gt;CSS Optimizer is a simple command line application that optimizes files used for web-development, such as external CSS files. It reduces the filesize significantly, 20-60% depending on your coding style, by stripping unneeded characters such as whitespace, tabs, newline characters, and semi-colons; but, it only elimates ones that are not vital to proper display of the CSS file. CSS Optimizer also converts long-hand CSS declerations to short hand equivilents to eliminate even more unneeded characters. CSS Optimizer has been tested to work under many browsers such as Firefox, Mozilla, Safari, and IE; currently I have not found a browser that it does not work successfully on.&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&amp;amp;displaylang=en"&gt;&lt;STRONG&gt;Internet Explorer Developer Toolbar Beta&lt;/STRONG&gt; &lt;/A&gt;via &lt;A href="http://markharrison.co.uk/blog/2005/09/ie-developer-toolbar.htm"&gt;Mark Harrison&lt;/A&gt;&lt;BR&gt;The IE Developer Toolbar provides several features for deeply exploring and understanding Web pages.&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;-- Explore and modify the document object model (DOM) of a web page.&lt;BR&gt;-- Locate and select specific elements on a web page through a variety of techniques.&lt;BR&gt;-- Selectively disable Internet Explorer settings.&lt;BR&gt;-- View HTML object class names, ID's, and details such as link paths, tab index values, and access keys.&lt;BR&gt;-- Outline tables, table cells, images, or selected tags.&lt;BR&gt;-- Validate HTML, CSS, WAI, and RSS web feed links.&lt;BR&gt;-- Display image dimensions, file sizes, path information, and alternate (ALT) text.&lt;BR&gt;-- Immediately resize the browser window to 800x600 or a custom size.&lt;BR&gt;-- Selectively clear the browser cache and saved cookies. Choose from all objects or those associated with a given domain.&lt;BR&gt;-- Choose direct links to W3C specification references, the Internet Explorer team weblog (blog), and other resources.&lt;BR&gt;-- Display a fully featured design ruler to help accurately align objects on your pages. &lt;BR&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://www.gimpshop.net/"&gt;GIMPShop&lt;/A&gt;&lt;/STRONG&gt; via &lt;A href="http://photoshop.weblogsinc.com/entry/1234000210059185/"&gt;Darren Chan&lt;/A&gt;&lt;BR&gt;GIMPShop is a free Open Source image editor that is similar to the popular Adobe Photoshop. Specifically GIMPShop is a version of the GIMP that has been edited to be more user-friendly for Photoshop users.&lt;/P&gt;&lt;img src="http://heathersolomon.com/blog/aggbug/2073.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2005/09/18/2073.aspx</guid>
            <pubDate>Sun, 18 Sep 2005 17:21:00 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/2073.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2005/09/18/2073.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/2073.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/2073.aspx</trackback:ping>
        </item>
        <item>
            <title>IE7 will have new icon and logo...</title>
            <link>http://heathersolomon.com/blog/archive/2005/08/14/1505.aspx</link>
            <description>&lt;P&gt;... and I actually like it much better than the last version.&amp;nbsp; They stuck with the &amp;#8220;e&amp;#8221; and the swoosh but glammed it up a bit and make it much more modern and gel-ish. I have to say I am surprised they haven't ditched the version number and gone to some cool hip name or something. I am not complaining though, I like verison numbers, makes dev and support easier. &lt;/P&gt;
&lt;P&gt;&amp;#187; &lt;A href="http://blogs.msdn.com/ie/archive/2005/08/12/451099.aspx" target=_blank&gt;Info on logo on IE Blog&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;IMG alt="Windows Internet Explorer 7" src="http://ieblog.members.winisp.net/images/ie7_xp_h2_rgb.jpg"&gt; &lt;img src="http://heathersolomon.com/blog/aggbug/1505.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Heather Solomon</dc:creator>
            <guid>http://heathersolomon.com/blog/archive/2005/08/14/1505.aspx</guid>
            <pubDate>Sun, 14 Aug 2005 12:54:00 GMT</pubDate>
            <wfw:comment>http://heathersolomon.com/blog/comments/1505.aspx</wfw:comment>
            <comments>http://heathersolomon.com/blog/archive/2005/08/14/1505.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://heathersolomon.com/blog/comments/commentRss/1505.aspx</wfw:commentRss>
            <trackback:ping>http://heathersolomon.com/blog/services/trackbacks/1505.aspx</trackback:ping>
        </item>
    </channel>
</rss>