It works here, you haven't followed my instructions. You have:
Code:
<div class="marquee" id="mycrawler">
<div style="width:580px; margin-top:-1.3em;">
New Years Eve - are you playing? - let us know</div>
</div>
<script type="text/javascript" language="javascript">
marqueeInit({
uniqueid: 'mycrawler',
style: {
'width': '580px',
'height': '19px',
'background-color': '#8FB452',
'color': '2B3718',
'top': '-109px',
'right': '2px',
'font-family': 'Boulevard SF',
'font-size': '12pt',
'font-weight': 'normal'
},
inc: 1, //speed - pixel increment for each iteration of this marquee's movement
});
</script>
I have:
Code:
<div class="marquee" id="mycrawler">
<div style="width:580px;margin-top:-1.3em;">New Years Eve - are you playing? - let us know</div>
</div>
<script type="text/javascript">
marqueeInit({
uniqueid: 'mycrawler',
style: {
'width': '578px',
'height': '19px',
'background-color': '#8FB452',
'color': '#2B3718',
'font-family': 'Boulevard SF',
'font-size': '12pt',
'font-weight': 'normal'
},
inc: 1 //speed - pixel increment for each iteration of this marquee's movement
});
</script>
I see no evidence of an embedded font (didn't really look very far), how are you doing that? Some font embedding is browser specific.
Bookmarks