There are now 102 errors in your coding (homepage alone) ... I think it's important that you sort them out ... click
here to see them ...
For that flash part ... here is a script to disable the "click to activate and use this control" ...
One little trick to work around the "Click to Activate and Use This Control" problem
(due to a plugin issue with microsoft)
Your embed code is:
Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/s wflash.cab#version=8,0,0,0"
id="mars" align="middle" height="130" width="130">
<param name="allowScriptAccess" value="sameDomain">
<param name="movie" value="mars.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#ffffff">
<embed src="mars.swf" quality="high" bgcolor="#ffffff"
name="mars" allowscriptaccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
align="center" height="130" width="130">
</object>
- <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
- codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/s wflash.cab#version=8,0,0,0"
- id="mars" align="middle" height="130" width="130">
- <param name="allowScriptAccess" value="sameDomain">
- <param name="movie" value="mars.swf">
- <param name="quality" value="high">
- <param name="bgcolor" value="#ffffff">
- <embed src="mars.swf" quality="high" bgcolor="#ffffff"
- name="mars" allowscriptaccess="sameDomain"
- type="application/x-shockwave-flash"
- pluginspage="http://www.macromedia.com/go/getflashplayer"
- align="center" height="130" width="130">
- </object>
If you ceate a myprintln.js file that simply says:
// myprintln.js
function myprintln(s) { document.writeln(s); }
- // myprintln.js
- function myprintln(s) { document.writeln(s); }
and put this in the head of your file:
...yada yada yada...
<script src="myprintln.js"></script>
</head>
- ...yada yada yada...
- <script src="myprintln.js"></script>
- </head>
...and wrap your script like this:
<script>
myprintln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
myprintln('codebase="http://fpdownload.macromedia.com/pub/shockwave/c abs/flash/swflash.cab#version=8,0,0,0"');
myprintln('id="mars" align="middle" height="130" width="130">');
myprintln('<param name="allowScriptAccess" value="sameDomain">');
myprintln('<param name="movie" value="mars.swf">');
myprintln('<param name="quality" value="high">');
myprintln('<param name="bgcolor" value="#ffffff">');
myprintln('<embed src="mars.swf" quality="high" bgcolor="#ffffff"');
myprintln('name="mars" allowscriptaccess="sameDomain"');
myprintln('type="application/x-shockwave-flash"');
myprintln('pluginspage="http://www.macromedia.com/go/getflashplayer"' );
myprintln('align="center" height="130" width="130">');
myprintln('</object>');
</script>
- <script>
- myprintln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
- myprintln('codebase="http://fpdownload.macromedia.com/pub/shockwave/c abs/flash/swflash.cab#version=8,0,0,0"');
- myprintln('id="mars" align="middle" height="130" width="130">');
- myprintln('<param name="allowScriptAccess" value="sameDomain">');
- myprintln('<param name="movie" value="mars.swf">');
- myprintln('<param name="quality" value="high">');
- myprintln('<param name="bgcolor" value="#ffffff">');
- myprintln('<embed src="mars.swf" quality="high" bgcolor="#ffffff"');
- myprintln('name="mars" allowscriptaccess="sameDomain"');
- myprintln('type="application/x-shockwave-flash"');
- myprintln('pluginspage="http://www.macromedia.com/go/getflashplayer"' );
- myprintln('align="center" height="130" width="130">');
- myprintln('</object>');
- </script>
...it will work around that problem
I clicked on the "Beauty and Accessories" link and when I'm on that page, the menu's text is suddenly twice the size ... doesn't look good ...
I think you could make that pink text for the number of coupons available as big as the text next to it ... that should look a little better aswell ...
Then you could also disable the link of the page that a user is on and amke it another colour, for example, if a user is on the "Beauty And Accessories" page, you could disabkle the "Beauty And Accessories" link and make it another colour (or rollover state), this way users won't redirect to the page that they are on, and they'll always know which page they are on ...
Talking about rollovers ... pleae add some to your links ... it just make life easier for end users ...
At first I couldn't find your "home" link ... it's very well hidden ...
To be honest ... that is some seriously sloppy coding you've got going there ... You used an HTML editor right? IMO it's never good to mix tables and divs like that ... That page could basically be split up into 6 divs, instead of the 75 divs and the 16 tables you have now ... (Actual figures) ... Also I think it would be better to use a stylesheet instead of inline styles ... that way the code will be much lighter and won't eat up so much f your bandwidth ...
Also you can change small things like using text instead of images for the headings ... that way you'll have better SEO and save a lot of bandwidth a month ...
That's just half of what I have to say, but I think that's enough to keep you busy if you're going to implement it ...
Let's leave all our *plum* where it is and go live in the jungle ...