Well, don't give up so easily. Something tells me you haven't tried this on a fresh page yet, I could be wrong about that. Anyways, I just looked at the script some more and at your blog page. The script has no onload event that I can see so conflicts are less likely. You have put the call for the script inside the style section for the page and made it encompass the style for the menu. It will never work that way. You have something like so:
Code:
<style type="text/css">
/*
-----------------------------------------------
Blogger Template Style
Name: Mr. Moto Rising (Ellington style)
Designer: Jeffrey Zeldman
URL: www.zeldman.com
Date: 23 Feb 2004
----------------------------------------------- */
some page styles skipped for brevity
#sidebar {
width: 226px;
float: right;
}
<!-- I ADDED THE 'SCRIPT TYPE' LINE BELOW BUT IT DIDN'T FIX THE PROBLEM WITH THE DROPDOWN BAR. -->
<script type="text/javascript" src="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
***********************************************/
<!-- THIS IS WHERE THE CHROME CSS DROP DOWN MENU STYLE BEGINS -->
#chromemenu{
width: 99%;
some styles for the menu skipped
.dropmenudiv a:hover{ /*Theme Change here*/
background-color: #F0F0F0;
}
<!-- THIS IS WHERE THE CHROME CSS DROP DOWN MENU STYLE ENDS -->
</script>
<!-- I ADDED THE '/SCRIPT' LINE ABOVE ALSO; STILL DIDN'T FIX THE PROBLEM WITH THE DROPDOWN BAR. -->
/* Bottom layout */
#footer {
clear: left;
some bottom layout styles skipped
</style>
Now, the comments in green cannot be in a style section, and neither can a script call (blue). My comments in red don't belong either, they just describe what I am leaving out for brevity. So get rid of all those and move the call below the style section, like so:
Code:
<style type="text/css">
/*
-----------------------------------------------
Blogger Template Style
Name: Mr. Moto Rising (Ellington style)
Designer: Jeffrey Zeldman
URL: www.zeldman.com
Date: 23 Feb 2004
----------------------------------------------- */
some page styles skipped for brevity
#sidebar {
width: 226px;
float: right;
}
#chromemenu{
width: 99%;
some styles for the menu skipped
.dropmenudiv a:hover{ /*Theme Change here*/
background-color: #F0F0F0;
}
/* Bottom layout */
#footer {
clear: left;
some bottom layout styles skipped
</style>
<script type="text/javascript" src="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>
There could still be other problems but, this will be a huge step in the right direction.
Bookmarks