In a vb.net 2010 web form application, I am adding an additonal web page. The application uses master pages, css pages with out jquery, and css pages with jquery. In the static web page that I am creating, I want to add my own css styles into the page that
uses no jquery.
My application is not using the cascading style sheet. I have tried both names like:
.header headerSupport { text-align: center; border-style:none; }
and # header headerSupport { text-align: center; border-style:none; }
I am also using
<asp:Content ID="Content2" ContentPlaceHolderID="MPContent" Runat="Server"> <asp:Panel runat="server" ID="pnlSupport"> </asp:Panel> </asp:Content>
Thus can you tell me what I can do to determine how the css style sheets are being used and/or how to fix my issue?
Go to the complete details ...