Although:
/www.bellsouthpwp2.net/b/e/benslayton124/menu/chromejs/chrome.js
resolves correctly when pasted into the browser's address bar, it and the style link are not resolving properly as written in the page:
HTML Code:
<link rel="stylesheet" type="text/css" href="/www.bellsouthpwp2.net/b/e/benslayton124/menu/chrometheme/chromestyle.css" />
<script type="text/javascript" src="/www.bellsouthpwp2.net/b/e/benslayton124/menu/chromejs/chrome.js">
/***********************************************
* Chrome CSS Drop Down Menu- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
Use the relative, the absolute or the network path. Here they are using the absolute path:
HTML Code:
<link rel="stylesheet" type="text/css" href="http://www.bellsouthpwp2.net/b/e/benslayton124/menu/chrometheme/chromestyle.css" />
<script type="text/javascript" src="http://www.bellsouthpwp2.net/b/e/benslayton124/menu/chromejs/chrome.js">
/***********************************************
* Chrome CSS Drop Down Menu- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
Bookmarks