You might have seen my thread
http://www.codingforums.com/showthread.php?t=72744
on how to get a cool clock doodad for which there was only ASP and PSP code onto my Blogger blog
http://omniverse.blogspot.com/
which doesn't allow either of those things. The code that ended up making it work was this
Code:
<iframe src="http://www.onyoursite.com/data/wwc.htp?rqst=omniverse.blogspot.com/" width="215" height="235" scrolling="no" frameborder="0"></iframe>
Now, I want to add a neat flag game to my sidebar, that you can see on its site of origin here
http://www.neoworx.net/neoboard/
at the bottom left. The code to install the game is
Code:
<iframe src="http://www.neoworx.net/neocounter/flag_quiz.php?user_id=25678" allowtransparency="yes" scrolling="no" frameborder="0" width="200" height="200"></iframe>
and when I put it in, no matter where I put it, what I get is another copy of the clock. Is there something I can do to get the 2 iframes to play nice, or do I have to pick one or the other? Thanks!!