I added the Css selector at the end of the Monochrome.css file. It looks the same as the file I downloaded from the Wrox web site. If you want I can include the code?
Here's the HTML code. I don't see the reference to "class ="MyButton"".
Again, I apreciate the help.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head><title>
Skins Demo
</title>
<link href="../App_Themes/DarkGrey/DarkGrey.css" type="text/css" rel="stylesheet" /></head>
<body>
<form name="aspnetForm" method="post" action="SkinsDemo.aspx" id="aspnetForm">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTAxODQ0NzY0Nw9kFgJmD2QWAgIDD2QWAgIFDxBkZBY BAgFkZMheO+YOJHV9CqDhcqc+iw03GEFF" />
</div>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
<div>
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWBgLa8rSAAwLV7KO2CwKmqP31CQLlh5KuCQL77aOhAwLhg4f +CoAQeOwdT4Efnzwdq998NGrY4afY" />
</div>
<div id="PageWrapper">
<div id="Header"><a href="../" class="HeaderLink">Header Goes Here</a></div>
<div id="MenuWrapper">Menu Goes Here</div>
<div id="MainContent">
<input type="submit" name="ctl00$cpMainContent$Button1" value="Button" id="ctl00_cpMainContent_Button1" />
<input type="submit" name="ctl00$cpMainContent$Button2" value="Button" id="ctl00_cpMainContent_Button2" />
</div>
<div id="Sidebar">Select a Theme<select name="ctl00$lstPreferredTheme" onchange="javascript
:setTimeout('__doPostBack(\'ct l00$lstPreferredTheme\',\'\')', 0)" id="ctl00_lstPreferredTheme">
<option value="Monochrome">Monochrome</option>
<option selected="selected" value="DarkGrey">DarkGrey</option>
</select>
</div>
<div id="Footer">Footer Goes Here</div>
</div>
</form>
</body>
</html>