Alright, so I've done the update as per juggledad's instructions, but now I have a small issue; I have a CSS insert which puts a music player in the top right hand side of the header, and I have a javascript to make it a clickable pop out window.
This is my java for doing so:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,men ubar=0,resizable=1,width=262,height=83');");
}
// End -->
</script>
And this is my code that calls to it:
<div class="musicplayer">
<A HREF="javascript
opUp('http://cache.reverbnation.com/widgets/swf/13/widgetPlayerMini.swf?emailPlaylist=artist_177966') ">
<img src="http://www.vertigovenus.com/images/webplayerimage.png">
</a>
</div>
And this is my CSS insert for it:
.musicplayer {
position: absolute;
left: 675px;
top: 20px;
width: 170px;
height: 100px;
}
.donation {
position: absolute;
left: 500px;
top: 50px;
width: 40px;
height: 40px;
}
So the issue that I have, now, is that the java is making a single > appear at the top of my page - I know it's the java code, because if I remove it from the java inserts section under add html/css inserts, the > goes away, but there's no extra > in there at all....
so, I have no idea what this is... thoughts? Thanks.
PS, the site in question is at
http://www.vertigovenus.com
Thank you!