Sir
i have removed the styleSheetTheme from web.config, then the total color is removed from the pages, and with monochrome theme , when i set both the them and styleSheetTheme all the pages work well. in case of DarkGrey only the header image does not display other colors are set.
here is the code of web.config and my default page.
web.config
Code:
<?xml version="1.0"?>
<configuration>
<system.web>
<pages theme="DarkGrey">
</pages>
<compilation debug="true" targetFramework="4.0"/>
</system.web>
</configuration>
default page
Code:
<%@ Page Title="Default Page" Language="C#" MasterPageFile="~/site/MasterPages/Frontend.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="site_Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="cpMainContent" Runat="Server">
<div id="MainContent0">
<h1 class="Introduction">
Hi there visitor and welcome to Planet Wrox</h1>
<p class="Introduction">
We're glad you're paying a visit to <a href="http://www.PlanetWrox.com">
www.PlanetWrox.com</a>, the coolest music community site on the Internet.
</p>
<p>
Feel free to have a <a href="Default.aspx">look around;</a> there are lots of
interesting <strong>reviews and concert pictures</strong> to be found here.
</p>
<p>
You can <a href="../Login.aspx">log in</a> here.</p>
</div>
</asp:Content>