hello...ive look through the messages here to see if i culd figure out my problem with out posting it...but i didnt see it....
what i am trying to do is make my main page link into an iframe....the actualy frame be the size of a background picture...links at the top and then scroll at the bottom...ive figured it out to where i can link it to the left...but it is not showing correctly...
the size of the first iframe or picture is 539X379
then the next background is 528X282 where the actual scrollable text will be....
here is the code for the main page that i have for the first one that links into the sencond one
<style type="text/css">
A:link
{COLOR: C4BCA1; TEXT-DECORATION: none}
A:visited
{COLOR: C4BCA1; TEXT-DECORATION: none}
A:active
{COLOR: C4BCA1; TEXT-DECORATION: none}
A:hover
{
CURSOR: crosshair;
COLOR: CCCC99;
BORDER-5B5243: #5B5243 1px dotted;
FONT-FAMILY: "Book Antiqua";
BACKGROUND-COLOR: transparent;
TEXT-DECORATION: blink;
font-style: italic;
}
body
{
background-color: D8D8C0;
background-repeat:no-repeat;
background-position:absolute;
background-attachment:fixed;
font-family:"Book Antiqua";
color: 5B5243;
letter-spacing: 0pt;
scrollbar-3d-light-color: #FFFFFF;
scrollbar-arrow-color: #000000;
scrollbar-base-color: #CCCC99;
scrollbar-dark-shadow-color: #CCCC99;
scrollbar-face-color: #E0E0D0;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #999900;
text-decoration: none;
}
</style>
</head>
<body bgcolor="#D8D8C0">
<center>
<iframe src="main2.htm" name="inline" width="684" height="496" frameborder="0" border="0" scrolling="no"></iframe>
</center>
</body></html>
- <style type="text/css">
- A:link
- {COLOR: C4BCA1; TEXT-DECORATION: none}
- A:visited
- {COLOR: C4BCA1; TEXT-DECORATION: none}
- A:active
- {COLOR: C4BCA1; TEXT-DECORATION: none}
- A:hover
- {
- CURSOR: crosshair;
- COLOR: CCCC99;
- BORDER-5B5243: #5B5243 1px dotted;
- FONT-FAMILY: "Book Antiqua";
- BACKGROUND-COLOR: transparent;
- TEXT-DECORATION: blink;
- font-style: italic;
- }
- body
- {
- background-color: D8D8C0;
- background-repeat:no-repeat;
- background-position:absolute;
- background-attachment:fixed;
- font-family:"Book Antiqua";
- color: 5B5243;
- letter-spacing: 0pt;
- scrollbar-3d-light-color: #FFFFFF;
- scrollbar-arrow-color: #000000;
- scrollbar-base-color: #CCCC99;
- scrollbar-dark-shadow-color: #CCCC99;
- scrollbar-face-color: #E0E0D0;
- scrollbar-highlight-color: #FFFFFF;
- scrollbar-shadow-color: #999900;
- text-decoration: none;
- }
- </style>
- </head>
- <body bgcolor="#D8D8C0">
- <center>
- <iframe src="main2.htm" name="inline" width="684" height="496" frameborder="0" border="0" scrolling="no"></iframe>
- </center>
- </body></html>
and here is the second one that i cant seem to figure out how to make the top of it fixed for the links and the bottom for the actual scrollable frame...i figured out for the left, just not the top...(the css is the same for the second as the first)
<body><IMG
style="BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none"
alt="" src="images/bg2.jpg"><BR>
<div style="position: absolute; top: 103px; left: 153px;">
<center>
<iframe src="body.htm" name="main" width="524" height="386" frameborder="0" border="0" scrolling="yes"></iframe>
</div>
<div style="position: absolute; top: 95px; left: 30px;">
</div>
</body></html>
- <body><IMG
- style="BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none"
- alt="" src="images/bg2.jpg"><BR>
- <div style="position: absolute; top: 103px; left: 153px;">
- <center>
- <iframe src="body.htm" name="main" width="524" height="386" frameborder="0" border="0" scrolling="yes"></iframe>
- </div>
- <div style="position: absolute; top: 95px; left: 30px;">
- </div>
- </body></html>
thanks in advance for any help