Tile background in html not working
i've been editing html using dreamweaver tile background of webpage.
<style type="text/css" media="screen">
html, body { height:100%; }
body {
margin: 0px;
padding: 0px;
background-image: url(http://paengrolluqui.com/ecobin/bg.jpg);
background-repeat: repeat-x;
}
object:focus { outline:none; }
#flashcontent { display:none; }
</style>
saved changes, republish, still doesn't work. when run website, shows artboard made in flash catalyst, no backgrounds.
any ideas? need help. thanks!
acutally, happening flash content filling browser, not showing tiled image. change this
swfobject.embedswf(
"main.swf", "flashcontent",
"100%", "100%", ...
to
swfobject.embedswf(
"main.swf", "flashcontent",
"1024", "768",...
and 2 <object> references
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="100%" id="main"
to
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="1024" height="768" id="main"
and
<object type="application/x-shockwave-flash" data="main.swf" width="100%" height="100%">
to
<object type="application/x-shockwave-flash" data="main.swf" width="1024" height="768">
that should trick.
chris
More discussions in Flash Catalyst
adobe
Comments
Post a Comment