http://www.dynamicdrive.com/dynamici...iongallery.htm
Hi, if I'd like to have more than 1 CMotion, what should I do?
Thanks,
http://www.dynamicdrive.com/dynamici...iongallery.htm
Hi, if I'd like to have more than 1 CMotion, what should I do?
Thanks,
Put one on a separate page and have it show through onto your main page for this using a borderless iframe.
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Hello,
Is there a link that explains this process?
I'm not familiar with Iframe...
Thanx
There is not much to it. A good iframe tag for something like this would be:
It goes right into the ordinary flow of your page like an image tag might. The real trick is in formatting the 'pagename.htm' so that the content on it lines up well into the iframe. Using:HTML Code:<iframe src="pagename.htm" height="200" width="350" frameborder="0"></iframe>
for a body tag on that page is generally a good idea.HTML Code:<body style="margin:0;padding:0">
A good working knowledge of HTML and CSS helps, there are many tutorials on these topics on the web and you can search for iframe, in particular, to get more information on that.
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Thanks jscheuer1,
I used <BODY topmargin=0 leftmargin=0> for the body tag. I could not get this part: 'allowautotransparency=true', so I just set 'pagename.htm' to have the same background as the main page.
It works well
thanks again.
I am unfamiliar with:
'allowautotransparency=true'
or where it might be used but, using 'allowtransparency' in the iframe tag:
should work, you may have to set the body tag for the page loaded into the iframe:HTML Code:<iframe src="pagename.htm" allowtransparency="true" height="200" width="350" frameborder="0"></iframe>
<body bgcolor="transparent">
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Bookmarks