<?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>JSEDLAK &#187; CSS</title>
	<atom:link href="http://jsedlak.org/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://jsedlak.org</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 00:44:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Linking To CSS Files In MasterPages</title>
		<link>http://jsedlak.org/2010/01/22/linking-to-css-files-in-masterpages/</link>
		<comments>http://jsedlak.org/2010/01/22/linking-to-css-files-in-masterpages/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 18:45:44 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://jsedlak.org/?p=562</guid>
		<description><![CDATA[A common problem for beginning ASP.NET developers is relative linking to CSS files in a MasterPage file. As it turns out, this is incredibly easy as shown below. Even better is that it works in ASP.NET MVC! ?View Code HTML1 &#60;link rel=&#34;Stylesheet&#34; href=&#34;&#60;%= ResolveUrl(&#34;css/Master.css&#34;) %&#62;&#34; type=&#34;text/css&#34; media=&#34;screen&#34; /&#62;]]></description>
			<content:encoded><![CDATA[<p>A common problem for beginning ASP.NET developers is relative linking to CSS files in a MasterPage file. As it turns out, this is incredibly easy as shown below. Even better is that it works in ASP.NET MVC!</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p562code2'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5622"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p562code2"><pre class="html" style="font-family:monospace;">&lt;link rel=&quot;Stylesheet&quot; href=&quot;&lt;%= ResolveUrl(&quot;css/Master.css&quot;) %&gt;&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2010/01/22/linking-to-css-files-in-masterpages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why CSS Sucks (Why XAML Rocks)</title>
		<link>http://jsedlak.org/2009/06/10/why-css-sucks-why-xaml-rocks/</link>
		<comments>http://jsedlak.org/2009/06/10/why-css-sucks-why-xaml-rocks/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 09:05:39 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=184</guid>
		<description><![CDATA[Actually, that is quite unfair to say because CSS itself (language/syntax) is okay on its own. It is the standards body and the set of standards they decided upon that cause nightmares for millions of developers and designers each day. This should be no secret for anyone who has attempted to get a site to [...]]]></description>
			<content:encoded><![CDATA[<p>Actually, that is quite unfair to say because CSS itself (language/syntax) is okay on its own. It is the standards body and the set of standards they decided upon that cause nightmares for millions of developers and designers each day. This should be no secret for anyone who has attempted to get a site to work 100% in each browser, that is without a single pixel off. While it certainly is possible, the hacks often required to do so have been passed down through the generations of the language.</p>
<p><b>height: 100% &#8211; in your dreams</b><br />
You would think that making a div have a height of 100% would mean that it would fill whatever space it was within. Not true! It works so long as the parent div has an explicit height. Note that it doesn&#8217;t work on <a href="http://jsedlak.com/html/BottomDiv.html">this page</a>. Note that while the right div has a height of 100%, it doesn&#8217;t adjust to fill the space created by the left div. Note that if you do not have the Clear div in there, you won&#8217;t even see the wrapper&#8217;s background. In otherwords, it doesn&#8217;t grow with its own content. Good job on those standards!</p>
<p>To fix this we have to define some explicit heights. By giving the Wrapper div a height of 800px you will notice that not only does the height setting work all of a sudden, so does the background! View the new code <a href="http://jsedlak.com/html/BottomDivExplicitHeight.html">here</a>. </p>
<p>While this is nice and all, it sucks for anything that has fluid height. The real fix for this is to move the right column&#8217;s bottom div outside of the right column and create two more columns afterwards. But <a href="http://jsedlak.com/html/BottomDivFixed.html">now</a> that div is outside the height of the left column which could make for an awkward gap, especially if you have a background image that provides a border. Enter the hacks: by adding a negative margin we can move the div back up into the column above it. See the <a href="http://jsedlak.com/html/BottomDivFixedHack.html">final page</a>. Congratulations, we have now entered the realm of CSS hacks and from here on out there is no turning back.</p>
<p><b>Margins and Padding In Nested Elements</b><br />
Why is it that margins and padding in nested elements always seem to affect their parent elements? Furthermore, why can&#8217;t I define an explicit width and then give it padding? Why must the padding always be changed with the width? This makes for unreadable CSS that forces you to do addition and subtraction on the fly to get the true width of the element.</p>
<p>This one is simple: attaching the site&#8217;s content to the top of the page. This is easy enough as demonstrated <a href="http://jsedlak.com/html/MarginsProblem.html">here</a>. No real trickery is required; just set the body and html tags to have a padding and margin of zero on all sides. If you are working in ASP.NET you may need to set them for the form as well. Never-the-less the two CSS properties do as we expect them to, at least until we add some real content. Just by adding a simple h1 and p tag we have already corrupted the parent element&#8217;s placement on <a href="http://jsedlak.com/html/MarginsProblemExample.html">the page</a>.</p>
<p>Why does adding elements with a top margin to a nested element change the positioning of the parent element itself? In some cases (and probably here too, I don&#8217;t have WebDev bar installed here) the entire body is moved down because of this top margin issue. Regardless of that, a child&#8217;s positioning should <b>never</b> affect the position of the parent except for in specific/explicit cases. An element&#8217;s margins and padding should always be relative to the container it sits in and sibling elements. But instead we have to deal with setting top margins to zero now because of the CSS standards.</p>
<p><b>XAML Rocks</b><br />
Which brings me to my point &#8211; the CSS language isn&#8217;t broken, the standards we follow are. If you look at Microsoft&#8217;s implementation of similar features in XAML, you will see that the standards they use actually make sense for all of those involved. Let&#8217;s look at the first problem I mentioned: advanced column layouts with a bottom positioned element in the right column. In XAML we can use a Grid to create the two columns, but many will cry out that is too easy and &quot;tables&quot; shouldn&#8217;t be used for layout purposes. Instead we can use the Grid as we would use a Div in HTML. We use the HorizontalAlignment attribute to tell each Grid to &quot;float&quot; which creates the columns. Much to the web developer&#8217;s surprise, XAML does exactly what you tell it to do!</p>
<div style="text-align:center;"><img src="http://jsedlak.com/html/bottom_aligned_grid.jpg"/></div>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p184code4'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1844"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code" id="p184code4"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Window</span> <span style="color: #000066;">x:Class</span>=<span style="color: #ff0000;">&quot;BottomPositionedElement.Window1&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">xmlns:x</span>=<span style="color: #ff0000;">&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">Title</span>=<span style="color: #ff0000;">&quot;Window1&quot;</span> <span style="color: #000066;">Height</span>=<span style="color: #ff0000;">&quot;300&quot;</span> <span style="color: #000066;">Width</span>=<span style="color: #ff0000;">&quot;600&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Grid</span> <span style="color: #000066;">Background</span>=<span style="color: #ff0000;">&quot;#2D2D2D&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Grid</span> <span style="color: #000066;">Background</span>=<span style="color: #ff0000;">&quot;#DFDFDF&quot;</span> <span style="color: #000066;">Width</span>=<span style="color: #ff0000;">&quot;340&quot;</span> <span style="color: #000066;">Margin</span>=<span style="color: #ff0000;">&quot;10&quot;</span> <span style="color: #000066;">HorizontalAlignment</span>=<span style="color: #ff0000;">&quot;Left&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;TextBlock<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                Some content would go here and stuff.
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/TextBlock<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Grid<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Grid</span> <span style="color: #000066;">Background</span>=<span style="color: #ff0000;">&quot;#8F8F8F&quot;</span> <span style="color: #000066;">Width</span>=<span style="color: #ff0000;">&quot;200&quot;</span> <span style="color: #000066;">Margin</span>=<span style="color: #ff0000;">&quot;10&quot;</span> <span style="color: #000066;">HorizontalAlignment</span>=<span style="color: #ff0000;">&quot;Right&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Grid</span> <span style="color: #000066;">Background</span>=<span style="color: #ff0000;">&quot;YellowGreen&quot;</span> <span style="color: #000066;">VerticalAlignment</span>=<span style="color: #ff0000;">&quot;Bottom&quot;</span> <span style="color: #000066;">Margin</span>=<span style="color: #ff0000;">&quot;10&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;TextBlock<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Hello, world! I am a bottom positioned &quot;div&quot;<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/TextBlock<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Grid<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Grid<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Grid<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Window<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>My point is to raise the obvious question: If Microsoft can implement its own set of XML tags and write a standard for them that makes sense and works, why can&#8217;t the HTML/CSS standards bodies? To blame this on the browser manufacturers at this point is just silliness since IE8, Chrome, and FireFox all have similar isses. That is to say that they follow the standards but what you expect is not what you get.</p>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2009/06/10/why-css-sucks-why-xaml-rocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross Browser Development</title>
		<link>http://jsedlak.org/2009/03/21/cross-browser-development/</link>
		<comments>http://jsedlak.org/2009/03/21/cross-browser-development/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 11:33:58 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=169</guid>
		<description><![CDATA[Designing and developing a site for every single browser available is a monumental task. Hell even getting a site to work between the top four or five browsers can be a living nightmare. I am working on some new design ideas for a site and decided to put it through its paces by testing in [...]]]></description>
			<content:encoded><![CDATA[<p>Designing and developing a site for every single browser available is a monumental task. Hell even getting a site to work between the top four or five browsers can be a living nightmare. I am working on some new design ideas for a site and decided to put it through its paces by testing in IE7, IE8, IE8 Compat View, FireFox 3.x, Chrome and the latest version of Safari. While working on the site&#8217;s template I noticed that each browser had its own set of quirks. In fact I found that IE8 seemed to be one of the more standard browsers in that if a problem showed up elsewhere, it usually showed up in IE8.</p>
<p>There are a few things I learned during this process:</p>
<ol>
<li>Before you get to the fancy stuff, layout your divs with some nasty backgrounds (that are distinct!) so you know exactly where and how each one is being rendered. You can also use web developer extensions for the browsers, but I find these do not persist across page posts. For example the web developer plugin for FireFox will reset your outlining settings when you refresh the page. Having to reset this every time you change something becomes a pain. By coloring every div, every element, you get a clear picture of what is going on.</li>
<li>li:hover, as seen in the navigation <a href="http://jsedlak.homedns.org:6767">here</a>, is fixed in IE8 RTW (Release To Web)! But not in compatibility view. This is strange however since IE7 does li:hover elements just dandy.</li>
<li>Margins can suck it. Apparently when you have a div (div A) within a div (div B) and set a top margin on div A, it affects the top margin of div B. This seems retarded to me, but if you set a top and bottom padding of 1 pixel on div B, all is swell again (except in IE7). If you remove the margin and use a padding in div A, you get the desire results.</li>
<li>Extra Spaces suck too. The hardest part of developing for multiple browsers is hunting down the odd spaces that show up where you don&#8217;t think they will pop up. It could be due to how you have your paddings and margins setup on touching divs, but trust me when I say that these spaces will be the end of every web designer.</li>
<li>Standards mean nothing unless every browser follows them strictly! Why does IE8 have a compatibility view? Screw it, and screw every other browser&#8217;s quirks too. If a standards body is created and designs a set of rules for the browsers&#8217; rendering system to follow, they should make sure they follow them exactly. That is why they are called standards right? They aren&#8217;t &#8220;guidelines you should follow to make developers&#8217; lives easier but don&#8217;t really have to follow them because the developer doesn&#8217;t really care that much!&#8221;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2009/03/21/cross-browser-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Theming SharePoint (3 of Infinite)</title>
		<link>http://jsedlak.org/2008/07/09/theming-sharepoint-3-of-infinite/</link>
		<comments>http://jsedlak.org/2008/07/09/theming-sharepoint-3-of-infinite/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 01:22:30 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[FireFox]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=55</guid>
		<description><![CDATA[A short one here. When you are going to start theming SharePoint and need to figure out exactly what styles need to be changed, the best tool you can ever get is one like the Web Developer extension for FireFox. Now I hate FireFox, especially 3.x, but I run 2.x at work for the sole [...]]]></description>
			<content:encoded><![CDATA[<p>A short one here. When you are going to start theming SharePoint and need to figure out exactly what styles need to be changed, the best tool you can ever get is one like the Web Developer extension for FireFox. Now I hate FireFox, especially 3.x, but I run 2.x at work for the sole purpose of the WebDev extension. Right click on the page, select &#8220;Select CSS&#8221; under the CSS menu and click away. It will automatically pull CSS styles from the included sheets that pertain to the selected element. This will save hours of time digging through core.css and the page&#8217;s source HTML. Trust me.</p>
<p>You may be asking &#8220;What else will he post about?&#8221; Well, I plan to go through the actual creation of a master page file for the theme from <a href="http://focusedgames.com">Focused Games</a> but first I have to figure out a few things like how to redo how SharePoint outputs stuff (tables &#8211; blegh!). Yeah, I am going that far because I am sick of seeing SharePoint sites that look like SharePoint. In between here and there I will keep touching on the general tidbits of information that may help.</p>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2008/07/09/theming-sharepoint-3-of-infinite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theming SharePoint (2 of Infinite)</title>
		<link>http://jsedlak.org/2008/07/09/theming-sharepoint-2-of-infinite/</link>
		<comments>http://jsedlak.org/2008/07/09/theming-sharepoint-2-of-infinite/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 14:47:30 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=54</guid>
		<description><![CDATA[Here is a good blog post about theming the SharePoint top navigation. Today&#8217;s post is all about CSS, so pull out your favorite design books&#8230; and then light them on fire because they will be of no use here. You&#8217;ll want to start off by pulling and probably printing the core.css file that is provided [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.vertigo.com/personal/rbiggs/Blog/Lists/Posts/Post.aspx?List=02949b85%2Da29d%2D4682%2Dabdb%2Da065bff28a03&#038;ID=6"><b>Here</b></a> is a good blog post about theming the SharePoint top navigation. Today&#8217;s post is all about CSS, so pull out your favorite design books&#8230; and then light them on fire because they will be of no use here. You&#8217;ll want to start off by pulling and probably printing the core.css file that is provided with SharePoint. It may also be a good idea to print the source code of your new non-designed master page. Why? This will give you an idea of what HTML code SharePoint produces and what CSS classes it uses.</p>
<p>Once that is done, go ahead and create a new CSS file in the &#8220;Style Library&#8221; of your site. Go into site settings for the main site and override the style sheet with that file. This can be found at the bottom. Now you are good to go! Almost&#8230; more to come soon.</p>
<p>Here is a little of the CSS you may be employing. This applies to the &#8220;Upload Document&#8221; style pages and gets rid of the background images and borders:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p54code6'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p546"><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code" id="p54code6"><pre class="html" style="font-family:monospace;">div.ms-areaseparatorright,div.ms-areaseparatorleft,.ms-nav,td.ms-bodyareapagemargin,td.ms-pagebottommarginleft,
td.ms-pagebottommargin,td.ms-titlearealeft,div.ms-titleareaframe,td.ms-areaseparatorleft,td.ms-titleareaframe,
.ms-titlearearight .ms-areaseparatorright,td.ms-pagebottommarginright,td.ms-sitetitle,td.ms-globalTitleArea
{
	border-color: #000;
	background: transparent;
}</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2008/07/09/theming-sharepoint-2-of-infinite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theming SharePoint (1 of Infinite)</title>
		<link>http://jsedlak.org/2008/07/08/theming-sharepoint-1-of-infinite/</link>
		<comments>http://jsedlak.org/2008/07/08/theming-sharepoint-1-of-infinite/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 14:32:29 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Master Pages]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=53</guid>
		<description><![CDATA[I am beginning to do themes (master pages) for some SharePoint sites, so here is part 1 of an infinite number of parts (because of how difficult theming SP is) of &#8220;Theming SharePoint.&#8221; Assumptions: Theming will be done in several ways. Any advanced theming will include modifying core template pages. The amount of modification is [...]]]></description>
			<content:encoded><![CDATA[<p>I am beginning to do themes (master pages) for some SharePoint sites, so here is part 1 of an infinite number of parts (because of how difficult theming SP is) of &#8220;Theming SharePoint.&#8221;</p>
<p><b>Assumptions:</b></p>
<ul>
<li>Theming will be done in several ways.</li>
<li>Any advanced theming will include modifying core template pages.</li>
<li>The amount of modification is directly related to the number of work arounds needed.</li>
<li>This is going to suck.</li>
</ul>
<p><b>Initial Steps</b></p>
<ol>
<li>Copy default.master from main site catalog directory. Rename and open.</li>
<li>Erase everything.</li>
<li>Open default.master in new window.</li>
<li>Add each individual part, one by one to the page without any layouts.
<ol>
<li>I started with the header, copy pretty much everything over.</li>
<li>Remove all table tags and __designer: attributes.</li>
<li>Remove all div, p, b, and style tags.</li>
</ol>
</li>
</ol>
<p>After doing this, you should have a horrible looking page with all the content on it. The important piece here is to get the content working so it is possible to figure out what place holders do what. Next post will be about layouts, the CSS hacks and more.</p>
<p><b>Update (18:25):</b> Added more detail to the last step. Basically strip everything but the place holders and the controls inside of them.</p>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2008/07/08/theming-sharepoint-1-of-infinite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
