Forum Moderators: not2easy
SM
firstly apologies for this getting missed for so long..
It's a bit confusing trying to see what you're getting at, but when you say positioned boxes are you talking about absolute or relative positioning?
and if absolute positoning is it using pixels?
I don't think this is inheritance from your description, but if you'd like to provide a simplified example it might help see what's going on ;)
Suzy
Thanks for looking into this for me. Below is my css code:
/* overall containment on default page*/
div.overall {
position: absolute;
top: 0px;
left: 5px;
width: 760px;
height: 1100px;
min-width: 760px;
max-width: 760px;
z-index: 0;
background-image: url'images/straightbluestarsfade21.jpg');}
/* navigation bar on default page*/
div.toolbardefault {
visibility: visible;
position: absolute;
top: 275px;
left: 5px;
width: 120px;
height: 633px;
vertical-align: 1px;
line-height: 14px;
text-align: left;
padding-top: 3px;
padding-left: 2px;
font-size: 8pt;
font-weight: 700;
font-family: Verdana, Helvetica, Arial, sans-serif;
min-width: 120px;
max-width: 120px;
min-height: 633px;
max-height: 633px;
background-image: url('images/txflag6long1frame120x633.jpg');
z-index: 2}
/* right side column on default page*/
div.rightbar {
visibility: visible;
position: absolute;
top: 275px;
left: 625px;
width: 130px;
height: 633px;
line-height: 14px;
text-align: center;
padding-top: 3px;
padding-left: 2px;
font-size: 8pt;
font-weight: 700;
font-family: Verdana, Helvetica, Arial, sans-serif;
min-width: 130px;
max-width: 120px;
min-height: 633px
max-height: 633px;
padding-left: 0px;
background-image: url('images/wavyamericanflagGREATlong.jpg');
color: #0000ff;}
/* center column on default page */
div.defaultcolumn200 {
visibility: visible;
position: absolute;
top:250px;
left:133px;
width: 480px;
height: 560px;
min-width: 480px;
max-width: 480px;
min-height: 560px;
text-align: justify;
color: #000000;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 10pt;
font-weight: 400;
padding-left: 6px;
padding-right: 5px;
z-index: 5}
My HTML is:
<div class="overall" id="overallcontainmentonallpages">
<div class="toolbardefault" id="navigationbarondefaultpages">bla bla bla</div>
<div class="defaultcolumn200" id="centercolumndefaultpage">bla bla bla</div>
<div class="rightbar" id="rightsidecolumnondefaultpage">bla bla image bla</div>
If I test, or even look at it in Mozilla and use their view text 120% or 150%, the text in these three columns enlarges and flows downward, which is fine so far, but if I wanted to add another text box underneath these three columns, the text from the upper three columns will enlarge into the box underneath and cover up any text put into this box. Therein lies this amateur's problem. In case you want to see the site: www.concealedhandgun.com, but I am using an external css page. By the way, don't laugh at my z index numbers...another deal I have no idea what I am doing, but it seems to work.
Sammy