Buenas noches gente, hoy vengo con el siguiente problema:
Como les comente estoy terminando de editar una web que trabaja con xml,flash y php.
Pueden ver la web en www.logisticaelite.com
El problema que tengo, es que en monitores chicos el menu queda debajo del logo; cuando en realidad la web se tendria que acomodar dimenciones segun resolucion.
Les pego el codigo del archivo index.html, aver si ustedes que tienen mucha mas expriencia, detectan el error.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Cold-Drinks</title>
<script type="text/javascript" language="javascript" src="scripts/swfobject.js"></script>
<style type="text/css">
html{
height:100%;
}
body{
width:100%;
height:100%;
overflow:hidden;
margin:0;
padding:0;
background-color:#000000;
font-family:Arial, Helvetica, sans-serif;
color:#fff;
}
#flash{
margin:0 auto;
padding:0;
width:100%;
height:100%;
}
</style>
</head>
<body>
<div id="flash"><p align="center"><br />
This content requires Adobe Flash Player 8</p>
<p align="center"><a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&pr omoid=BIOW" target="_blank">Download Adobe Flash</a></p>
</div>
<script type="text/javascript" language="javascript">
var so = new SWFObject("main.swf", "mymovie", "100%", "100%", "8", "#000000");
so.addParam("menu", "false");
so.addParam("scale", "noscale");
so.addParam("allowFullScreen", "true");
so.write("flash");
</script>
</body>
</html>
Tambien les dejo el .xml del menu:
<main>
<config>
<mods
navPadding="15"
myLogo = "images/logo.png"
backgroundMusic = "yes"
myMusic = "audio/adg3.com_crypticPsyche.mp3"
navActiveColor = "0xFFFFFF"
navRollOverColor = "0xff7566"
navBGOutlineColor = "0xff0000"
navBGtopGradientColor = "0xa91100"
navBGbottomGradientColor = "0x5d0a00"
subnavActiveColor = "0xcccccc"
subnavRollOverColor = "0xff0000"
subnavBGOutlineColor = "0x666666"
subnavBGtopGradientColor = "0x333333"
subnavBGbottomGradientColor = "0x121212"
footerColor = "0x000000"
navFontSize = "9"
subnavFontSize = "8"
logoX = "15"
logoY = "15"
/>
<footerInfo><![CDATA[ Copyright 2011 Cold-Drinks, All Rights Reserved. (Buenos Aires, Argentina) -- TELEFONOS: (011) 2055-4249 / (011) 15-5003-3241]]></footerInfo>
</config>
<navigation>
<link name=" LA EMPRESA " module="modules/text-image/text.swf" data="modules/text-image/about.xml" background="images/background1.swf" />
<link name=" CHOPERAS " module="modules/news-simple/news.swf" data="modules/news-simple/news.xml" background="images/background1.swf" />
<link name=" BARRA DE TRAGOS " module="modules/news-simple/news.swf" data="modules/news-simple/news1.xml" background="images/background1.swf" />
<link name=" CONTACTO " module="modules/contact/contact.swf" data="modules/contact/contactinfo.xml" background="images/background1.swf" />
</link>
</navigation>
</main>
Desde ya, mil gracias...
Cristian