EasyMod and CSS Div IDs
Status: Beta
Brought to you by:
wgeric
I am currently making my MOD EasyMOD 'compliant'. However, I have run into a few problems. I'll post the others later.
This one involves CSS div ID. I have a style declaration at the top of 2 or 3 of the templates that needs to be added. It consists of this:
<style>
#phoogleMap
{
position: relative;
height: {MAP_HEIGHT}{HEIGHT_MEASURE};
width: {MAP_WIDTH}{WIDTH_MEASURE};
vertical-align: middle;
}
</style>
But what EasyMOD wrote was this:
<style>
I assume it's because the # char is used as the comment character in the install file and therefore conflicts with the div ID name.
BassFace