I am working with a book image that is centered with CSS, and I need to have two text areas displayed as columns on the two facing "pages" of the book.
I would also like to have these text areas added with JavaScript so they can be changed by Next and Back buttons at the bottom of the page.
I have an example page that you can look at.
Here is the HTML for the page:
<html>
<head>
<title>BookPopUp</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<meta http-equiv="Page-Exit" content="blendTrans(Duration=2.0)">
<link rel="stylesheet" type="text/css" href="css/popup.css" />
</head>
<body background="images/bg.jpg">
<div id="bookpop">
<span></span>
</div>
</body>
</html>
Here is the CSS for the page:
/*website BookPopUp Image Center*/
#bookpop {
position: absolute;
text-align: center;
left: 50%;
top: 50%;
margin: -368.5px auto 0 -512px; /* value of top margin: height of the image divide by 2 (ie: 240 / 2), value of left margin: width of the image divide by 2 (ie: 260 / 2) */;
width: 1024px; /* same as the image width */
}
#bookpop span {
display: block;
width: 1024px;
height: 737px;
margin: 0 auto;
position: relative;
background: transparent url(../images/bookpopup.png) 0 0 no-repeat;
text-indent: -5000em;
outline: 0;
}
I would also like to put two buttons either near to or on top of the picture. They would say Next and Back and link to next and previous pages of the book.
If there is an easier way to do this let me know.
Anyway thanks in advance.
