Reply
What happened?
Old 06-20-2004, 03:28 PM What happened?
pipers dragon's Avatar
Extreme Talker

Posts: 190
HTML Code:
<html>
<head>
<title>A N I  M E~D E S T I N Y</title>
<script language="JavaScript">
<!-- 
var space = " ";
var speed = "50";
var pos = 0;
var msg = "A N I M E ~ D E S T I N Y                                         Come enter our challenges!";
function Scroll()
{
document.title = msg.substring(pos, msg.length) + space + msg.substring(0,pos);
pos++;
if (pos > msg.length) pos = 0;
window.setTimeout("Scroll()", speed);
}
Scroll();
-->
</script>

<style type="text/css">


body {
scrollbar-track-color: #071436;
scrollbar-base-color: #021526;
scrollbar-arrow-color: #FFFFFF;
scrollbar-3dlight-color: ffffff;
scrollbar-darkshadow-color: ffffff;

A:Hover{ font-family:serif; filter:Blur(strength=4);height:20px;}
A:Link{ font-family:serif; color:#D6D4F6;}
INPUT{font-family:cursive; font-size:xx-small; color:#6699ff; background-color:#330099; border-style:dashed; border-width:thin; border-color:#FFFFFF;}
SELECT{font-family:cursive; font-size:xx-small; color:#6699ff; background-color:#330099; border-style:dashed; border-width:thin; border-color:#FFFFFF; }
OPTION{font-family:cursive; font-size:xx-small; color:#6699ff; background-color:#330099; border-style:dashed; border-width:thin; border-color:#FFFFFF; }
TEXTAREA{font-family:cursive; font-size:xx-small; color:#6699ff; background-color:#330099; border-style:dashed; border-width:thin; border-color:#FFFFFF; }
}

#layout
{
    position: absolute;
    width: 800px;
    height: 5000px;
    top: 0px;
    left: 20px;
    border: transparent;
}

#main
{
    position: absolute;
    width: 600px;
    height: 5000px;
    top: 560px;
    left: 233px;
    border: transparent;
}

#side
{
    position: absolute;
    width: 200px;
    height: 5000px;
    top: 425px;
    left: 24px;
    border: transparent;
}
</style>
</head>


<body background="adlayout.jpg" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" text="#FFFFFF">
<div id="layout">       <img src="ad1.jpg" /></div>
<div id="main"> <iframe src="http://anime.revealed-destiny.net/home.html" name="main" scrolling="no" frameborder="no" height = "5000px" width = "540px" allowtransparency="true">
</iframe></div>
<div id="side"><iframe src="http://anime.revealed-destiny.net/side.html" name="main" scrolling="no" frameborder="no" height = "5000px" width = "176px" allowtransparency="true">


</body>


</html>
thats my code.... I want my Iframes to have transparent backgrounds, and one does, one doesnt.... My problem is that they both did, then i went to edit some code, for hover links(which I took out to make sure that did not do it), and I now have a border on my iframe, along with a lighter blue bg... The link to my site is http://anime.revealed-destiny.net, and i will put the html code for the site going into the main iframe, so you can look at both and tell me what i might have done!

HTML Code:
<html>
<head>
<title></title>
</head>

<style type="text/css">
body {
scrollbar-track-color: #071436;
scrollbar-base-color: #021526;
scrollbar-arrow-color: #FFFFFF;
scrollbar-3dlight-color: ffffff;
scrollbar-darkshadow-color: ffffff;

background-color: transparent;

INPUT{font-family:cursive; font-size:xx-small; color:#6699ff; background-color:#330099; border-style:dashed; border-width:thin; border-color:#FFFFFF;}
SELECT{font-family:cursive; font-size:xx-small; color:#6699ff; background-color:#330099; border-style:dashed; border-width:thin; border-color:#FFFFFF; }
OPTION{font-family:cursive; font-size:xx-small; color:#6699ff; background-color:#330099; border-style:dashed; border-width:thin; border-color:#FFFFFF; }
TEXTAREA{font-family:cursive; font-size:xx-small; color:#6699ff; background-color:#330099; border-style:dashed; border-width:thin; border-color:#FFFFFF; }
}
</style>
<body allowtransparecy="true">
<font face="century gothic" color="#FFFFFF" size="2"> Welcome to anime destiny blends and banners.... We are currently in te process of opening, and will soon be open! FINALLY! But until then, we are still opening! If you need help, <a href="mailto: [email]zamily888991@aol.com[/email]">email me</a> and ill get right back to you! Until opening, C ya later!</font>
</body>


</html>
pipers dragon is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
Old 06-20-2004, 03:55 PM
Unknown.

Posts: 1,693
If you mean you dont want the iframe to show up blue...

This is because the background color in http://anime.revealed-destiny.net/home.html has been set blue...

So to resolve this change the home.htm code to....

Code:
<html>
<head>
<title></title>
</head>

<style type="text/css">
body {
scrollbar-track-color: #071436;
scrollbar-base-color: #021526;
scrollbar-arrow-color: #FFFFFF;
scrollbar-3dlight-color: ffffff;
scrollbar-darkshadow-color: ffffff;

background-color: transparent;

INPUT{font-family:cursive; font-size:xx-small; color:#6699ff; border-style:dashed; border-width:thin; border-color:#FFFFFF;}
SELECT{font-family:cursive; font-size:xx-small; color:#6699ff; border-style:dashed; border-width:thin; border-color:#FFFFFF; }
OPTION{font-family:cursive; font-size:xx-small; color:#6699ff; border-style:dashed; border-width:thin; border-color:#FFFFFF; }
TEXTAREA{font-family:cursive; font-size:xx-small; color:#6699ff; border-style:dashed; border-width:thin; border-color:#FFFFFF; }
}
</style>
<body allowtransparecy="true">
<font face="century gothic" color="#FFFFFF" size="2"> Welcome to anime destiny blends and banners.... We are currently in te process of opening, and will soon be open! FINALLY! But until then, we are still opening! If you need help, <a href="mailto:zamily888991@aol.com">email me</a> and ill get right back to you! Until opening, C ya later!</font>
</body>


</html>
Note also ive chnaged the email link from mailto: zamily888991@aol.com to mailto:zamily888991@aol.com as the space is not needed

This should now work

Hope ot helps

-James

Last edited by Dark-Skys99 : 06-20-2004 at 03:57 PM.
Dark-Skys99 is offline
Reply With Quote
View Public Profile
 
Old 06-20-2004, 07:18 PM
pipers dragon's Avatar
Extreme Talker

Posts: 190
thanks! why is it showing blue? It wasnt untill I added the rollover link things....
pipers dragon is offline
Reply With Quote
View Public Profile
 
Old 06-20-2004, 07:21 PM
pipers dragon's Avatar
Extreme Talker

Posts: 190
it didnt work... It is still blue.... why?
pipers dragon is offline
Reply With Quote
View Public Profile
 
Old 06-21-2004, 12:54 AM
aog
Skilled Talker

Posts: 62
Location: Norway, Bergen
I'm not sure why, but if I were you, I whould use include and not iframe. (include is php).
If you don't know how, then I can give you a smal and easy script.
Let me know.
aog is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to What happened?
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.14923 seconds with 12 queries