G
Giganews
I've got a master page, with stylesheets on it defined as such:
<link href="/css/reset-min.css" rel="stylesheet" media="all" />
problem is, I have pages in different folders that link to that master page,
so any page that's not in the same folder as the master page, don't display
the css. I've tried the following:
<link href="~/css/reset-min.css" rel="stylesheet" media="all" />
which didn't work.
This did work
<link href="<%= ResolveUrl("~/css/reset-min.css") %>" rel="stylesheet"
media="all" />
But the styles don't show up in design.
Hints/tips greatly appreciated.
Thanks
Bryce
<link href="/css/reset-min.css" rel="stylesheet" media="all" />
problem is, I have pages in different folders that link to that master page,
so any page that's not in the same folder as the master page, don't display
the css. I've tried the following:
<link href="~/css/reset-min.css" rel="stylesheet" media="all" />
which didn't work.
This did work
<link href="<%= ResolveUrl("~/css/reset-min.css") %>" rel="stylesheet"
media="all" />
But the styles don't show up in design.
Hints/tips greatly appreciated.
Thanks
Bryce