I am working on a website from a template I downloaded. I created a new folder in the root directory where I want to put some webpages. There are also folders in the root directory for the js and css.
Example Root
-css
---style.css
-js
---skel.min.js
-folder
---page1.html
---page2.html
Everything works right on page1.html when I preview it in Dreamweaver (the links stylesheet links have been updated to the correct folder). However, when I preview it in Chrome the style sheet is not being accessed correctly. It wants to pull from folder/css/style.css
, which doesn't exist.
Using the Inspect Console on Chrome. It's telling me that something in the js (skel.min.js) is trying to pull from the nonexistent css folder.
Can anyone offer me any help or suggestions?
Here is the snippet of code that appears to be working incorrectly.
registerLocation: function(e, t) {
var n = "_skel_attach",
r = "appendChild";
e == "head" ? t[n] = function(e) {
this === _.me.parentNode ? this.insertBefore(e, _.me) : this[r](e)
} : t[n] = function(e) {
this[r](e)
}, _.locations[e] = t
},
And here also is the link to the webpage in case you need more information: http://exq-leadership.com/podcasts/episode01.html