<feed 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="http://www.w3.org/2005/Atom" xml:lang="en-US">
    <title>Leslee Sheu</title>
    <link rel="self" type="application/xml" href="http://geekswithblogs.net/LSheu/Atom.aspx" />
    <subtitle type="html"> Senior Production Artist at e.maginationASP.NET and MOSS Master Pages, HTML, CSS</subtitle>
    <id>http://geekswithblogs.net/LSheu/Default.aspx</id>
    <author>
        <name>Leslee Sheu</name>
        <uri>http://geekswithblogs.net/LSheu/Default.aspx</uri>
    </author>
    <generator uri="http://subtextproject.com" version="Subtext Version 0.0.0.0">Subtext</generator>
    <updated>2009-03-17T09:40:14Z</updated>
    <entry>
        <title>CSS Table Scrolling with Fixed Header for IE 7</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2009/01/30/css-table-scrolling-with-fixed-header-for-ie-7.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2009/01/30/css-table-scrolling-with-fixed-header-for-ie-7.aspx</id>
        <published>2009-01-30T13:30:01-12:00:00</published>
        <updated>2009-03-17T09:40:14Z</updated>
        <content type="html">&lt;p&gt;This week I was tasked with styling a data table so that all the rows would scroll vertically, but the header row would stay in place.   For the project in question, the scrolling must work in both Firefox and IE 7.&lt;/p&gt;
&lt;p&gt;Firefox supports CSS for scrolling the &amp;lt;tbody&amp;gt; part of the table.  However, IE does not support scrolling for the &amp;lt;tbody&amp;gt;.  I searched some other blogs for solutions and found that a popular solution for IE involves using expressions in CSS.  A scrolling &amp;lt;div&amp;gt; is placed around the &amp;lt;table&amp;gt;.  The expression is applied to the &amp;lt;thead&amp;gt; row like this:&lt;/p&gt;
&lt;code&gt;&lt;font color="#0000ff"&gt;     thead tr {&lt;br /&gt;
         position: relative;&lt;br /&gt;
         top: expression(this.offsetParent.scrollTop);&lt;br /&gt;
        }&lt;/font&gt;&lt;/code&gt;
&lt;p&gt;But I found that the relative positioning caused the &amp;lt;thead&amp;gt; to shift down a few pixels when the scroll is activated.  (Adding -2 to the expression did not solve the shifting problem for me.)  &lt;strong&gt;So I decided to use &lt;font face="Courier New" color="#0000ff"&gt;position: absolute&lt;/font&gt; instead.&lt;/strong&gt;  This positions the row in &amp;lt;thead&amp;gt; correctly, however it will cover up the rest of the table rows.  So I applied extra padding to the first table row in &amp;lt;tbody&amp;gt;, so that the date will show below the fixed header.  Here is the result:&lt;/p&gt;
&lt;iframe src="http://developers.emagination.com/blogs/Documents/LesleeSheu/ScrollingTableDemo.html" frameborder="0" width="440" height="260"&gt;&lt;/iframe&gt;
&lt;p&gt;Here is my code, which I have only tested in Firefox 3 and IE 7.  The first CSS style block is for Firefox.  The second style block is within conditional comments for IE, so that these styles will overwrite the Firefox styling.  (Normally I would be linking to external stylesheets -- a general one for non-IE browsers and a separate one for IE).  For simplicity's sake in this example, I did not use class names -- you could apply your own class names as needed.&lt;/p&gt;
&lt;p&gt;CSS:&lt;/p&gt;
&lt;code&gt;&lt;font color="#0000ff"&gt;&amp;lt;style type="text/css"&amp;gt;&lt;br /&gt;
    table {&lt;br /&gt;
        border: solid #66CC99;&lt;br /&gt;
        border-width: 0px 1px 1px 0px;&lt;br /&gt;
        width: 400px;&lt;br /&gt;
    }&lt;br /&gt;
    th, td {&lt;br /&gt;
        border: solid #66CC99;&lt;br /&gt;
        border-width: 1px 0px 0px 1px;&lt;br /&gt;
        padding: 4px;&lt;br /&gt;
    }&lt;br /&gt;
    th {&lt;br /&gt;
        background-color: #339999;&lt;br /&gt;
        color: #FFFFFF;&lt;br /&gt;
    }&lt;br /&gt;
    tr.alt td {&lt;br /&gt;
        background-color: #EEEEEE;&lt;br /&gt;
    }&lt;br /&gt;
    tbody {&lt;br /&gt;
        height: 200px;&lt;br /&gt;
        overflow-y: auto;&lt;br /&gt;
        overflow-x: hidden;&lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/style&amp;gt;&lt;br /&gt;
&amp;lt;!--[if IE]&amp;gt;&lt;br /&gt;
    &amp;lt;style type="text/css"&amp;gt;&lt;br /&gt;
        div {&lt;br /&gt;
            position: relative;&lt;br /&gt;
            height: 200px;&lt;br /&gt;
            width: 416px;&lt;br /&gt;
            overflow-y: scroll;&lt;br /&gt;
            overflow-x: hidden;&lt;br /&gt;
            border: solid #66CC99;&lt;br /&gt;
            border-width: 0px 0px 1px 0px;&lt;br /&gt;
        }&lt;br /&gt;
        table {&lt;br /&gt;
            border-width: 1px 1px 0px 0px;&lt;br /&gt;
        }&lt;br /&gt;
        thead tr {&lt;br /&gt;
            position: absolute;&lt;br /&gt;
            top: expression(this.offsetParent.scrollTop);&lt;br /&gt;
        }&lt;br /&gt;
        tbody {&lt;br /&gt;
            height: auto;&lt;br /&gt;
        }&lt;br /&gt;
        table tbody tr:first-child td {&lt;br /&gt;
            padding: 29px 4px 4px 4px;&lt;br /&gt;
        }&lt;br /&gt;
    &amp;lt;/style&amp;gt;&lt;br /&gt;
&amp;lt;![endif]--&amp;gt; &lt;/font&gt;&lt;/code&gt;
&lt;p&gt;&lt;br /&gt;
HTML:&lt;/p&gt;
&lt;code&gt;&lt;font color="#0000ff"&gt;&amp;lt;div&amp;gt;&lt;br /&gt;
    &amp;lt;table border="0" cellspacing="0" cellpadding="0"&amp;gt;&lt;br /&gt;
        &amp;lt;thead&amp;gt;&lt;br /&gt;
              &amp;lt;tr&amp;gt;&lt;br /&gt;
                    &amp;lt;th&amp;gt;HEADER 1&amp;lt;/th&amp;gt;&lt;br /&gt;
                    &amp;lt;th&amp;gt;HEADER 2&amp;lt;/th&amp;gt;&lt;br /&gt;
                    &amp;lt;th&amp;gt;HEADER 3&amp;lt;/th&amp;gt;&lt;br /&gt;
                    &amp;lt;th&amp;gt;HEADER 4&amp;lt;/th&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;/thead&amp;gt;&lt;br /&gt;
        &amp;lt;tbody&amp;gt;&lt;br /&gt;
              &amp;lt;tr&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 1&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr class="alt"&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 2&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 3&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr class="alt"&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 4&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 5&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr class="alt"&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 6&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 7&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr class="alt"&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 8&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 9&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr class="alt"&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 10&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 11&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr class="alt"&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 12&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 13&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
              &amp;lt;tr class="alt"&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content 14&amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
                    &amp;lt;td&amp;gt;content &amp;lt;/td&amp;gt;&lt;br /&gt;
              &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;/tbody&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/font&gt; &lt;/code&gt;&lt;img src="http://geekswithblogs.net/LSheu/aggbug/129099.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/129099.aspx</wfw:comment>
        <slash:comments>54</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/129099.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/129099.aspx</trackback:ping>
    </entry>
    <entry>
        <title>MOSS UI Tutorial on YouTube</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2008/11/03/moss-ui-tutorial-on-youtube.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2008/11/03/moss-ui-tutorial-on-youtube.aspx</id>
        <published>2008-11-03T10:26:44-12:00:00</published>
        <updated>2011-03-25T04:05:21Z</updated>
        <content type="html">&lt;p&gt;As some folks have pointed out (thanks!), the MOSS UI Tutorial videos are no longer available on ScreenCast.com.  I was using a free account at ScreenCast and my bandwidth limit was reached, so they have disabled my content.  I'm looking around for alternatives, but in the meantime you can see the screencasts on YouTube.&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;Part 1:&lt;/strong&gt; Master Page Overview and Custom Design Examples&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=7nd7D4JwYbM"&gt;http://www.youtube.com/watch?v=7nd7D4JwYbM&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;Part &lt;/font&gt;2:&lt;/strong&gt; Prepping HTML/CSS Templates for MOSS&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=Nu2MIGg1sfc"&gt;http://www.youtube.com/watch?v=Nu2MIGg1sfc&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;Part &lt;/font&gt;3:&lt;/strong&gt; Prepping the Files in SharePoint Designer&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=7ScHtsoLXtY"&gt;http://www.youtube.com/watch?v=7ScHtsoLXtY&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;Part &lt;/font&gt;4:&lt;/strong&gt; Base Master Page Code Overview&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=07zT-ab671s"&gt;http://www.youtube.com/watch?v=07zT-ab671s&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;Part &lt;/font&gt;5:&lt;/strong&gt; Using the Base Master Page to Create a Custom Master Page&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=GrtQduUwAC8"&gt;http://www.youtube.com/watch?v=GrtQduUwAC8&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;Part &lt;/font&gt;6:&lt;/strong&gt; Creating a Custom Page Layout&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=CXoxqGgpB8g"&gt;http://www.youtube.com/watch?v=CXoxqGgpB8g&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;Part &lt;/font&gt;7:&lt;/strong&gt; Assigning the Master Page and CSS File&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=gN70CjPy80Q"&gt;http://www.youtube.com/watch?v=gN70CjPy80Q&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;Part &lt;/font&gt;8:&lt;/strong&gt; Creating a New Web Page&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=Ga-ScG4626s"&gt;http://www.youtube.com/watch?v=Ga-ScG4626s&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;Part &lt;/font&gt;9:&lt;/strong&gt; Tips for Styling the Navigation Control&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=J_rWfdI8C-o"&gt;http://www.youtube.com/watch?v=J_rWfdI8C-o&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;Part &lt;/font&gt;10:&lt;/strong&gt; CSS Variations in a MOSS Website&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.youtube.com/watch?v=iYqYD0f9b0Y"&gt;http://www.youtube.com/watch?v=iYqYD0f9b0Y&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://geekswithblogs.net/LSheu/aggbug/126571.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/126571.aspx</wfw:comment>
        <slash:comments>3</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/126571.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/126571.aspx</trackback:ping>
    </entry>
    <entry>
        <title>MOSS UI Tutorial Downloads</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2008/10/22/moss-ui-tutorial-downloads.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2008/10/22/moss-ui-tutorial-downloads.aspx</id>
        <published>2008-10-22T16:16:26-12:00:00</published>
        <updated>2011-06-23T17:34:38Z</updated>
        <content type="html">&lt;p&gt;Here are some supplimentary files for the MOSS UI Tutorial series that I recently posted.  (&lt;a href="http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-1.aspx"&gt;The tutorial screencast posts begin here.&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;Here are the &lt;a href="http://developers.emagination.com/screencasts/Documents/MOSS%20UI%20Training/Base%20Files%20For%20MOSS.zip"&gt;Base Master Page and Base CSS File&lt;/a&gt; developed by e.magination for use in MOSS websites.&lt;/p&gt;
&lt;p&gt;Here are the &lt;a href="http://developers.emagination.com/screencasts/Documents/MOSS%20UI%20Training/Demo%20HTML%20Template.zip"&gt;HTML Template files&lt;/a&gt; (an HTML file, CSS file, and images) used for the Demo site in the screencast series.&lt;/p&gt;
&lt;p&gt;I have updated the individual screencast posts with links to the PDF files that go with each post.  Each PDF file contains the slides used for that chapter in the screencast series.&lt;/p&gt;
&lt;p&gt;Please contact me if there is any problem downloading the files.  Thanks!&lt;/p&gt;&lt;img src="http://geekswithblogs.net/LSheu/aggbug/126024.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/126024.aspx</wfw:comment>
        <slash:comments>7</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/126024.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/126024.aspx</trackback:ping>
    </entry>
    <entry>
        <title>MOSS UI Tutorial: Part 10</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-10.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-10.aspx</id>
        <published>2008-10-15T12:55:03-12:00:00</published>
        <updated>2010-11-26T04:22:14Z</updated>
        <content type="html">&lt;h4&gt;CSS Variations in a MOSS Website&lt;/h4&gt;
&lt;p&gt;Part 10 discusses some bonus tips for applying CSS variations in MOSS, by using the Page Layout method or the Subsite method. &lt;a target="_blank" href="http://developers.emagination.com/screencasts/Documents/MOSS%20UI%20Training/MOSS_UI_Training_10.pdf"&gt;Here is a PDF file of the slides featured in this screencast.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/iYqYD0f9b0Y&amp;amp;hl=en&amp;amp;fs=1" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/iYqYD0f9b0Y&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;img src="http://geekswithblogs.net/LSheu/aggbug/125866.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/125866.aspx</wfw:comment>
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/125866.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/125866.aspx</trackback:ping>
    </entry>
    <entry>
        <title>MOSS UI Tutorial: Part 9</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-9.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-9.aspx</id>
        <published>2008-10-15T12:48:50-12:00:00</published>
        <updated>2008-11-03T11:04:31Z</updated>
        <content type="html">&lt;h4&gt;Tips for Styling the Navigation Control&lt;/h4&gt;
&lt;p&gt;Part 9 demonstrates some tips for how to style the menu control in MOSS.  &lt;a target="_blank" href="http://developers.emagination.com/screencasts/Documents/MOSS%20UI%20Training/MOSS_UI_Training_09.pdf"&gt;Here is a PDF file of the slides featured in this screencast.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/J_rWfdI8C-o&amp;amp;hl=en&amp;amp;fs=1" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/J_rWfdI8C-o&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;img src="http://geekswithblogs.net/LSheu/aggbug/125865.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/125865.aspx</wfw:comment>
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/125865.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/125865.aspx</trackback:ping>
    </entry>
    <entry>
        <title>MOSS UI Tutorial: Part 8</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-8.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-8.aspx</id>
        <published>2008-10-15T12:46:27-12:00:00</published>
        <updated>2008-11-03T11:03:37Z</updated>
        <content type="html">&lt;h4&gt;Creating a New Web Page&lt;/h4&gt;
&lt;p&gt;Part 8 demonstrates how to create a new page from the custom Page Layout in MOSS. &lt;a target="_blank" href="http://developers.emagination.com/screencasts/Documents/MOSS%20UI%20Training/MOSS_UI_Training_08.pdf"&gt;Here is a PDF file of the slides featured in this screencast.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Ga-ScG4626s&amp;amp;hl=en&amp;amp;fs=1" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/Ga-ScG4626s&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;img src="http://geekswithblogs.net/LSheu/aggbug/125864.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/125864.aspx</wfw:comment>
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/125864.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/125864.aspx</trackback:ping>
    </entry>
    <entry>
        <title>MOSS UI Tutorial: Part 7</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-7.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-7.aspx</id>
        <published>2008-10-15T12:44:56-12:00:00</published>
        <updated>2008-11-03T11:02:50Z</updated>
        <content type="html">&lt;h4&gt;Assigning the Master Page and CSS File&lt;/h4&gt;
&lt;p&gt;Part 7 demonstrates how to assign the custom Master Page and custom CSS file in MOSS. &lt;a target="_blank" href="http://developers.emagination.com/screencasts/Documents/MOSS%20UI%20Training/MOSS_UI_Training_07.pdf"&gt;Here is a PDF file of the slides featured in this screencast.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/gN70CjPy80Q&amp;amp;hl=en&amp;amp;fs=1" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/gN70CjPy80Q&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;img src="http://geekswithblogs.net/LSheu/aggbug/125863.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/125863.aspx</wfw:comment>
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/125863.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/125863.aspx</trackback:ping>
    </entry>
    <entry>
        <title>MOSS UI Tutorial: Part 6</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-6.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-6.aspx</id>
        <published>2008-10-15T12:43:40-12:00:00</published>
        <updated>2008-11-03T11:01:59Z</updated>
        <content type="html">&lt;h4&gt;Creating a Custom Page Layout&lt;/h4&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Part 6 demonstrates how to create a custom page layout, and how to add field controls and web part zones to the page layout in SharePoint Designer. &lt;a target="_blank" href="http://developers.emagination.com/screencasts/Documents/MOSS%20UI%20Training/MOSS_UI_Training_06.pdf"&gt;Here is a PDF file of the slides featured in this screencast.&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/CXoxqGgpB8g&amp;amp;hl=en&amp;amp;fs=1" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/CXoxqGgpB8g&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;img src="http://geekswithblogs.net/LSheu/aggbug/125862.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/125862.aspx</wfw:comment>
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/125862.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/125862.aspx</trackback:ping>
    </entry>
    <entry>
        <title>MOSS UI Tutorial: Part 5</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-5.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-5.aspx</id>
        <published>2008-10-15T12:41:42-12:00:00</published>
        <updated>2008-11-03T11:00:56Z</updated>
        <content type="html">&lt;h4&gt;Using the Base Master Page to Create a Custom Master Page&lt;/h4&gt;
&lt;p&gt;Part 5 demonstrates how to create a custom Master Page in MOSS, using the base Master Page created by e.magination. &lt;a target="_blank" href="http://developers.emagination.com/screencasts/Documents/MOSS%20UI%20Training/MOSS_UI_Training_05.pdf"&gt;Here is a PDF file of the slides featured in this screencast.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/GrtQduUwAC8&amp;amp;hl=en&amp;amp;fs=1" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/GrtQduUwAC8&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;img src="http://geekswithblogs.net/LSheu/aggbug/125861.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/125861.aspx</wfw:comment>
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/125861.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/125861.aspx</trackback:ping>
    </entry>
    <entry>
        <title>MOSS UI Tutorial: Part 4</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-4.aspx" />
        <id>http://geekswithblogs.net/LSheu/archive/2008/10/15/moss-ui-tutorial-part-4.aspx</id>
        <published>2008-10-15T12:33:50-12:00:00</published>
        <updated>2008-11-03T10:59:46Z</updated>
        <content type="html">&lt;h4&gt;Base Master Page Code Overview&lt;/h4&gt;
&lt;p&gt;Part 4 gives an overview of the base Master Page that was created by e.magination for use in MOSS websites. &lt;a target="_blank" href="http://developers.emagination.com/screencasts/Documents/MOSS%20UI%20Training/MOSS_UI_Training_04.pdf"&gt;Here is a PDF file of the slides featured in this screencast.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/07zT-ab671s&amp;amp;hl=en&amp;amp;fs=1" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/07zT-ab671s&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;img src="http://geekswithblogs.net/LSheu/aggbug/125860.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/LSheu/comments/125860.aspx</wfw:comment>
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/LSheu/comments/commentRss/125860.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/LSheu/services/trackbacks/125860.aspx</trackback:ping>
    </entry>
</feed>