I'm trying to use two different css styles in my master page. both files are exactly the same except one expands the form wider.
In my master page I have the following;
<head runat="server">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" href="SiteStyles/MasterPage.css" type="text/css" />
<link rel="stylesheet" href="SiteStyles/MasterPageExtended.css" type="text/css" />
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>
In my form if I specify which css to point to it doesn't work. it just uses the last entry in my master page which is <link rel="stylesheet" href="SiteStyles/MasterPageExtended.css" type="text/css" />
in my form I'm specifying the css location as follows;
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
<link rel="stylesheet" href="SiteStyles/MasterPage.css" type="text/css" />
</asp:Content>
What am I doing wrong ?
any help would be appreciated
Thanks
In my master page I have the following;
<head runat="server">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" href="SiteStyles/MasterPage.css" type="text/css" />
<link rel="stylesheet" href="SiteStyles/MasterPageExtended.css" type="text/css" />
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>
In my form if I specify which css to point to it doesn't work. it just uses the last entry in my master page which is <link rel="stylesheet" href="SiteStyles/MasterPageExtended.css" type="text/css" />
in my form I'm specifying the css location as follows;
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
<link rel="stylesheet" href="SiteStyles/MasterPage.css" type="text/css" />
</asp:Content>
What am I doing wrong ?
any help would be appreciated
Thanks