Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Show 2 Layers Per Page Each With Scrollable Content. 1

Status
Not open for further replies.

MarshallPlexi

Technical User
Jan 8, 2005
2
US
I'm working on a page that looks like this:

This is just a preview of the last 5 pages on my Blog. What I really want is to have another preview just like it that is directly below it, but I'm having no luck. When I add the second layer, it takes its position from the first layer and therefore causes the scrollbars on the first layer to go nuts.

Here is the result:

Any ideas? I'm sure this is simple.

===================================
Here is my code for the second page
===================================
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">

#BlogFrame {
position:absolute;
left: 100px;
top: 50px;
width: 250px;
height: 125px;
overflow: auto;
z-index: 2;
}
#BBSFrame {
position: absolute;
left: 100px;
top: 200px;
width: 250px;
height: 125px;
overflow: auto;
z-index: 1;
}
body {
background-color: #666666;
}
</style>

</head>

<body>

<div id="BlogFrame">
<? include(" ?>
</div>
<p>&nbsp;</p>

<div id="BBSFrame">
<? include(" ?>
</div>
</body>
</html>
 
there is a small error in that page:

<span style="font-family: Verdana, Arial, Helvetica, sans-
serif; font-size: xx-small;"></span></div>

<p>&nbsp;</p>


<div id="BBSFrame">


should be:

<span style="font-family: Verdana, Arial, Helvetica, sans-
serif; font-size: xx-small;"></span></div></div>

<p>&nbsp;</p>


<div id="BBSFrame">


note the extra </div> u havent closed one of your alignment divs...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top