First of all, it looks you have some things messed up in FF. In FF, your whole page is left justified, whereas it is centered in IE. Also in FF, your navigation menu sits on top of your logo (and the logo is a bit low on the page). To fix these problems, you need to make the following changes to your customstyle.css file (changes highlighted in red):
Code:
#container {
width:780px;
vertical-align:middle;
background-color:#FFFFFF;
margin: 0 auto; /* centers the body */
}
and
Code:
#navigation {
/* background-color:#FFFFFF; */ /* not needed */
width:760px;
position:relative;
clear: both; /* get the nav bar to go below the logo */
}
These changes will make your page look the same in both FF and IE.
As for your UDM problems, it is because your path to images is specified incorrectly for the directory structure you're using for your site. In udm-custom.js, find the following bit of code:
Code:
//path to images folder
um.baseSRC = "/udm-resources/";
Remove the slash at the beginning of your value:
Code:
//path to images folder
um.baseSRC = "udm-resources/";
Problem solved!