How can I do this?
<head runat="server">
<title></title>
<link rel="stylesheet" href="default.css" type="text/css">
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
My CSS file is called default.css and it's located in the App_Themes folder > Default > default.css
Any help? :(
I've figure it out.
I dragged the .css file into the code section of the .master page and this popped up:
<link href="App_Themes/default/default.css" rel="stylesheet" type="text/css" />
compared to this that didn't work:
<link rel="stylesheet" href="default.css" type="text/css">
Now you know. :3 Thanks for the help guys :)