My original plan was to use CSS for all the pages, but iframes provides the ability to have a 6x9 text box in a 6x5 display area. That is truly what I am trying to accomplish. In searching the internet, I see lots of free coding to create this type of HTML text area. There seem to be two types:
Using divisions:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
#scrollArea{width:420px;height:280px;overflow:auto;}</style></head>
<body>
<div id="scrollArea">
<p>usa li sam vocabularium. Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilitá de un nov lingua franca: on refusa continuar payar custosi .</p></div></body></html>
or using "read only" text boxes
<textarea id="blah" readonly="readonly" rows="7" cols="53">Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va essertam simplic quam Occidental: in fact, it va esser Occidental. A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es.</textarea>
Any thoughts as to which solution is best or how to determine which to choose? The text area will be placed in a frame on the template.
Now I need to look into what Storyman was saying about hover buttons...
Thanks for your help!