La cosa es asi.. tengo dentro de mi index un <object> que es una index entera de wordpress. lo que me ocurre es que me aparecen 2 barras de scroll verticales. (la del elemento object) y la del index, y mi idea es que se muestre sola una para no generar molestias (ademas de que las dos trabajan distinto). No se si es que tengo mal los códigos o no... he probado diversas formas, desde overflow:hidden y scrollin:no.
El código HTML es el siguiente:
Cita:
El codigo del CSS es:<body>
<div id="reproductor">
<iframe src="http://bazingaradio.com/reproductorpersonalizado/player.html" width="100%" frameborder="0" marginheight="0" marginwidth="0" style="height: 60px; border: none; overflow: hidden; background-color: #111; overflow:hidden; position:absolute;" ></iframe>
</div>
<div id="contenedor">
<object type="text/html" style="margin-top:60px; overflow:hidden; "
data="http://bazingaradio.com/blog/"
width="100%" height="100%" margin: "0";
padding: "0"; " scrolling="no" >
</object>
</div>
</body>
<div id="reproductor">
<iframe src="http://bazingaradio.com/reproductorpersonalizado/player.html" width="100%" frameborder="0" marginheight="0" marginwidth="0" style="height: 60px; border: none; overflow: hidden; background-color: #111; overflow:hidden; position:absolute;" ></iframe>
</div>
<div id="contenedor">
<object type="text/html" style="margin-top:60px; overflow:hidden; "
data="http://bazingaradio.com/blog/"
width="100%" height="100%" margin: "0";
padding: "0"; " scrolling="no" >
</object>
</div>
</body>
Cita:
Espero que me tiren ideas a ver si lo soluciono.. por cierto.. el link es www.bazingaradio.com/index2.htmlbody {
width:100%;
height:1500%
background-image:url(img/pattern1-bg.png);
background-repeat:repeat;
margin:0;
overflow: inherit;
}
#reproductor{
width:100%;
height:60px;
background-color:#333;
position:fixed;
margin-top:0px;
}
#contenedor {
width:100%;
height:150%;
overflow-y:hidden;
}
width:100%;
height:1500%
background-image:url(img/pattern1-bg.png);
background-repeat:repeat;
margin:0;
overflow: inherit;
}
#reproductor{
width:100%;
height:60px;
background-color:#333;
position:fixed;
margin-top:0px;
}
#contenedor {
width:100%;
height:150%;
overflow-y:hidden;
}
Desde ya muchisimas gracias!!!