PunkSktBrdr01
08-30-2003, 02:58 PM
I'm having problems with overflowing text. I'm using a div to hold the main content on a page, and the content text won't stay in the div. My other problem is that the page is really messed up in IE. Here's my CSS:
A {
font-family:Arial, sans-serif;
font-size:12px;
cursor:pointer;
color:#3333BB;
background-color:transparent;
}
A:link {
text-decoration:none;
}
A:visited {
text-decoration:none;
}
A:hover {
text-decoration:underline;
}
A.navlink {
text-decoration:none;
}
body {
margin-bottom:0;
margin-left:0;
margin-right:0;
margin-top:5px;
color:#5588DD;
background-color:#0F0F0F;
font-family:Arial, sans-serif;
font-size:12px;
}
img {
border:0;
}
img.nav {
border:0;
cursor:pointer;
text-decoration:none;
}
table {
background-color:transparent;
border:0;
}
tr {
border:0;
}
td {
font-size:12px;
vertical-align:top;
}
div#headerdiv {
position:fixed;
left:200px;
top:0px;
z-index:5;
display:block;
width:580px;
color:#5588DD;
background-color:#0F0F0F;
text-align:center;
}
div#navdiv {
position:fixed;
left:20px;
top:140px;
z-index:5;
display:block;
text-align:center;
background-color:#0F0F0F;
color:#5588DD;
}
div#content {
position:absolute;
left:200px;
top:140px;
z-index:0;
display:block;
padding:5px;
width:570px;
background-color:#5588DD;
color:#0F0F0F;
}
hr {
background-color:#0F0F0F;
color:#000000;
}
hr.contsep {
width:90%;
height:2px;
color:#000000;
background-color:#0F0F0F;
border:0;
}
.left {
text-align:left;
}
.center {
text-align:center;
}
.right {
text-align:right;
}
.justify {
text-align:justify;
}
Here's a link to the actual page:
http://www.radioactiverabbit.com/writing/index.php
Thanks!
A {
font-family:Arial, sans-serif;
font-size:12px;
cursor:pointer;
color:#3333BB;
background-color:transparent;
}
A:link {
text-decoration:none;
}
A:visited {
text-decoration:none;
}
A:hover {
text-decoration:underline;
}
A.navlink {
text-decoration:none;
}
body {
margin-bottom:0;
margin-left:0;
margin-right:0;
margin-top:5px;
color:#5588DD;
background-color:#0F0F0F;
font-family:Arial, sans-serif;
font-size:12px;
}
img {
border:0;
}
img.nav {
border:0;
cursor:pointer;
text-decoration:none;
}
table {
background-color:transparent;
border:0;
}
tr {
border:0;
}
td {
font-size:12px;
vertical-align:top;
}
div#headerdiv {
position:fixed;
left:200px;
top:0px;
z-index:5;
display:block;
width:580px;
color:#5588DD;
background-color:#0F0F0F;
text-align:center;
}
div#navdiv {
position:fixed;
left:20px;
top:140px;
z-index:5;
display:block;
text-align:center;
background-color:#0F0F0F;
color:#5588DD;
}
div#content {
position:absolute;
left:200px;
top:140px;
z-index:0;
display:block;
padding:5px;
width:570px;
background-color:#5588DD;
color:#0F0F0F;
}
hr {
background-color:#0F0F0F;
color:#000000;
}
hr.contsep {
width:90%;
height:2px;
color:#000000;
background-color:#0F0F0F;
border:0;
}
.left {
text-align:left;
}
.center {
text-align:center;
}
.right {
text-align:right;
}
.justify {
text-align:justify;
}
Here's a link to the actual page:
http://www.radioactiverabbit.com/writing/index.php
Thanks!