Thanks. I don't have the URL set up in my CSS, I have it set in HTML here:[HTML]customlogo: { image: '...logo.jpg', link: '' },<div id="logo" class="logo" style="display:none;"> </div> <div style="position:absolute; width:20%; left:60px; top:30px; z-Index:999;"> <div id="tp"> </div> </div>[/HTML]JS://add a custom logo to the map if provided
if (configOptions.customlogo.image) {
esri.show(dojo.byId('logo'));
//if a link isn't provided don't make the logo clickable
if (configOptions.customlogo.link) {
var link = dojo.create('a', {
href: configOptions.customlogo.link,
target: '_blank'
}, dojo.byId('logo'));
dojo.create('img', {
src: configOptions.customlogo.image
}, link);
} else {
dojo.create('img', {
id: 'logoImage',
src: configOptions.customlogo.image
}, dojo.byId('logo'));
//set the cursor to the default instead of the pointer since the logo is not clickable
dojo.style(dojo.byId('logo'), 'cursor', 'default');
}
}
CSS:.logo{
bottom:20px;
cursor:pointer;
position:absolute;
right:10px;
z-index:30;
}
.logo img{
width: 100px;
border:none;
Any further suggestions would be appreciated.