jend_sudirman
Junior Member
- Sep 18, 2008
- 184
- 91
Hi. I made a website for a client at
using Joomla. The client want the website to have continuous music playing through out all pages, he want the music not stopping or restarting when a visitor change pages.
I have tried to use an iframe to solve this problem, the only problem that still exist is that the height of the iframe is not fluid thus it left a lots of blank space when the content is shorter than the iframe.
here's my iframe code
I need someone who can edit/enhance my iframe-html code so that it will have fluid height.
I will pay $5 for this job, or you can ask for a price and then we can discuss it.
Thank you.
Code:
http://www.artsofrc.com
I have tried to use an iframe to solve this problem, the only problem that still exist is that the height of the iframe is not fluid thus it left a lots of blank space when the content is shorter than the iframe.
here's my iframe code
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<SCRIPT LANGUAGE="Javascript">
function resizeIframeToFitContent (iframe) {
iframe.height = document.frames (iframe.id)
.document.body.scrollingHeight;
}
</SCRIPT>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>RC STUDIO - if you are looking for unusual art objects</title>
<style type="text/css">
<!--
body {
background-color: #047E02;
}
-->
</style>
<script language="JavaScript" src="http://localhost/rcstudio2/images/stories/audio/audio-player.js"></script>
<object type="application/x-shockwave-flash" data="http://localhost/rcstudio2/images/stories/audio/player.swf" id="audioplayer1" height="24" width="290">
<param name="movie" value="http://localhost/rcstudio2/images/stories/audio/player.swf">
<param name="FlashVars" value="playerID=audioplayer1&autostart=yes&leftbg=0x01ab02&rightbg=0x01ab02&track=0xe9bf16&righticon=0x333333&border=0x008001&loop=yes&rightbghover=0x008001&righticonhover=0x333333&bg=0x008001&soundFile=http://localhost/rcstudio2/images/stories/audio/Degung_-_Dikantun_Tugas.mp3">
<param name="quality" value="high">
<param name="menu" value="true">
<param name="wmode" value="transparent">
</object>
</head>
<body>
<iframe src="http://localhost/rcstudio2" scrolling="no" marginwidth="0" marginheight="0" width="100%" height="1550px" frameborder="0"></iframe>
</body>
</html>
I need someone who can edit/enhance my iframe-html code so that it will have fluid height.
I will pay $5 for this job, or you can ask for a price and then we can discuss it.
Thank you.