gsmithlvr
02-15-2003, 12:53 AM
im having problems w/my css. i used it to position my iframe, and i previewed it in my browser, the iframe showed. but when i uploded it, it doesn't show!! can anyone help me? you can see the page here:
http://www.geocities.com/staciefan13/faraway_look_1.htm thanx in advance for any help!!
Sade`
Change this...
<style type="text/css"><BR><!--
<!--
BODY {background-color: Hex={AD,D3,FF}; filter: alpha(opacity=70)}
-->
{ }
<iframe FRAMEBORDER="0" BORDER=0 width=#
height=350px src=http://www.geocities.com/staciefan13/farawaylkframe.htm
name=fal NAME style="position:absolute; left:200px; top:250px" scrolling=CHOICE allowtransparency="true"></iframe
</STYLE></XMP>
To this...
<style type="text/css">
<!--
BODY {background-color: Hex={AD,D3,FF}; filter: alpha(opacity=70);}
-->
</style>
Then take your IFRAME code, fix it a bit, and put it after the starting BODY tag instead of within the HEAD area.
Fixed...
<iframe FRAMEBORDER="0" BORDER="0" width="300" height="350" src="http://www.geocities.com/staciefan13/farawaylkframe.htm"
name="fal" style="position:absolute; left:200px; top:250px;" scrolling="auto" allowtransparency="true"></iframe>
gsmithlvr
02-15-2003, 06:57 PM
Thanx!! I replaced the code you gave me w/the old one i had! Now it works!!
Sade`