Hallo,
Ein Kumpel bietet auf seiner Homepage Streamboxen für Webradios an.
In diesem Quellcode sind Iframes vorhanden, darum bat er mich mal diese Iframes mit Div Includes auszutauschen. Was auch klappt. Das Problem dabei ist: Die Einbindung der Streambox in auf die Radio Homepage.
Mal die Beispiele:
Mit Include:
"index.html"
Dies wird dann mit Iframe auf die Homepage eingebunden
Das klappt auch wunderbar und ohne Probleme.
Dies habe ich nun umgeschrieben mit DIV Include.
"index.php"
Wie gesagt, so läuft die Streambox ohne Problem.
Bloß wenn ich dann die Streambox auf die Homepage einbinden möchte mit folgendem Code:
Wird die Streambox komplett verzerrt dagestellt, die Elemente sind falsch angeordnet und der Titeldurchlauf macht wilde Sachen.
Ich vermute das der Fehler in der index.php bzw html liegt (siehe Code oben). Hat jemand da eine Idee was es da für ein Problem gibt?
Danke schon mal im vorraus.
Gruß
Ein Kumpel bietet auf seiner Homepage Streamboxen für Webradios an.
In diesem Quellcode sind Iframes vorhanden, darum bat er mich mal diese Iframes mit Div Includes auszutauschen. Was auch klappt. Das Problem dabei ist: Die Einbindung der Streambox in auf die Radio Homepage.
Mal die Beispiele:
Mit Include:
"index.html"
Code:
<style type="text/css"> div.bg { background-image: url(images/bg.png); background-position: center; background-attachment: fixed; background-repeat: no-repeat; border: 0px solid #ff0000; height: 300px; } </style> </head> <body> <div class="bg"> <center> <div style="padding-top: 10pt;"><iframe allowtransparency='true' src='cover.php' align="center" scrolling='no' marginheight='0' marginwidth='0' height='95' width='100' frameborder='0' ></iframe></div> <div style="padding-top: 3pt;"><iframe allowtransparency='true' src='titellauf.php' align="center" scrolling='no' marginheight='0' marginwidth='0' height='30' width='178' frameborder='0' ></iframe></div> <div align="center" style="padding-top: 18pt"><iframe src="players.html" width="180" height="35" align="center" scrolling="no" marginheight="0" marginwidth="0" frameborder="0"></iframe></div> <div style="padding-top: 18pt;"><a href="#" onclick="Fenster1=window.open('lautletztetitel.php','','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=600,height=600'); return false;" title="Song History" style="width:168px;"><font color="#DAD6CB">Song History</font></a></div> <!-------darf nicht entfernt werden, farblich muss sichtbarer unterschied sein zum hintergrund. copyright muss lesbar sein------> <div style="padding-top: 15pt; opacity: .3; filter:Alpha(Opacity=70);"><a href="http://gvs-radiotools.de" target="_blank"><font color="#cacaca" size="0.5px">© 2013 GvS Radiotools</font></a></div>
Code:
<iframe allowtransparency='true' name='Streambox' src='index.php' height='308' width='214' scrolling='no' frameborder='0'></iframe></center> </div>
Dies habe ich nun umgeschrieben mit DIV Include.
"index.php"
PHP-Code:
<style type="text/css">
div.bg {
background-image: url(http://www.gvs-querfunk.de/chat/box/images/bg.png);
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
border: 0px solid #ff0000;
height: 300px;
}
#titel {
height: 30;
width: 178;
}
#player {
height: 30;
width: 180;
}
</style>
</head>
<body>
<center>
<div class="bg">
<div style="padding-top: 10pt;"><div id="cover"> <?php include('http://www.gvs-querfunk.de/chat/box/cover.php'); ?></div></div>
<div style="padding-top: 10pt;"><div id="titel"> <?php include "http://www.gvs-querfunk.de/chat/box/titellauf.php"; ?></marquee></div></div>
<div style="padding-top: 18pt;"><div id="player"><?php include('http://www.gvs-querfunk.de/chat/box/players.php'); ?></div></div>
<div style="padding-top: 18pt;"><a href="#" onclick="Fenster1=window.open('http://www.gvs-querfunk.de/chat/box/lautletztetitel.php','','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=600,height=600'); return false;" title="Song History"><font color="#DAD6CB">Song History</font></a></div>
<!-------darf nicht entfernt werden, farblich muss sichtbarer unterschied sein zum hintergrund. copyright muss lesbar sein------>
<div style="padding-top: 15pt; opacity: .8; filter:Alpha(Opacity=20);"><a href="http://gvs-radiotools.de" target="_blank"><font color="#cacaca" size="0.5px">© 2014 GvS Radiotools</font></a></div>
</center>
</div>
Bloß wenn ich dann die Streambox auf die Homepage einbinden möchte mit folgendem Code:
PHP-Code:
<div id="streambox"><?php include('http://www.gvs-querfunk.de/chat/box/index.php'); ?></div>
Ich vermute das der Fehler in der index.php bzw html liegt (siehe Code oben). Hat jemand da eine Idee was es da für ein Problem gibt?
Danke schon mal im vorraus.
Gruß
Kommentar