Hi all,
.. and thank you for you assistance ahead of time.
Currently I have the following page structure in my DNN 5.6.1 website
Equipment
>Standard Screen
>>Standard Screen Details
.. and the following in the Head tag for each page's ASCX file:
<head>
<link href="../../_assets/css/grid.css" rel="Stylesheet" type="text/css" />
<title></title>
</head>
The CSS grid styling works for my public and my LOCALHOST copy of my 5.6.1 website. However, when I upgraded my localhost copy to 6.2 following Chris Hammond's instructions, I have to edit the "href = " line for the upper and second levels as follows, respectively, in order for the CSS style sheets to be found:
<link href="_assets/css/grid.css" rel="Stylesheet" type="text/css" />
<link href="../_assets/css/grid.css" rel="Stylesheet" type="text/css" />
Why does the original path structure, " ../../_assets/css/grid.css work on DNN 5.6.1 but not on DNN 6.2?
Is that correct? Note that my MS Vis Web Dev 2010 Express IDE gives me a message that the "..css was not found", however it does work in the website.
Will this same edit be required on the public website? My local IIS is setup as <Machine Name>\Default Web Site\upowercom .
I would like to understand this properly before I upgrade my public website.
Thank you.
Elgin