View Full Version : Arg stupid text


randomjon
02-20-2005, 08:27 PM
there is something wrong with my css:

body {
margin-right:0px;
margin-top:0px;
margin-left:125px;
margin-bottom:0px;
scrollbar-3dlight-color:#FFCC66;
scrollbar-arrow-color:#663300;
scrollbar-base-color:#FFCC66;
scrollbar-darkshadow-color:#FFCC66;
scrollbar-face-color:#FFCC66;
scrollbar-highlight-color:#FFCC66;
scrollbar-shadow-color:#FFCC66;
background: #FFCC66 url('blog.gif') no-repeat center top;
font-family: "times new roman", times;
font-size: 16pt;
font-style: normal;
font-weight: normal;
color: #ffcc66;
text-decoration: none
}

i know that the code is wrong because the text size doesn't change. everythiing else is fine as far as color and family. only the size.
the site link (http://www.randomjon.com) the text to the right should display only inside the LINKS box. if it overlapps its not what it's suppossed to look like.

thanks in advanced ;)
-Jon

MaGiCSuN
02-20-2005, 08:37 PM
tables need their own css section. All codes in the body section don't affect anything inside tables. So change it to this:


body {
margin-right:0px;
margin-top:0px;
margin-left:125px;
margin-bottom:0px;
scrollbar-3dlight-color:#FFCC66;
scrollbar-arrow-color:#663300;
scrollbar-base-color:#FFCC66;
scrollbar-darkshadow-color:#FFCC66;
scrollbar-face-color:#FFCC66;
scrollbar-highlight-color:#FFCC66;
scrollbar-shadow-color:#FFCC66;
background: #FFCC66 url('blog.gif') no-repeat center top;
font-family: "times new roman", times;
font-size: 16pt;
font-style: normal;
font-weight: normal;
color: #ffcc66;
text-decoration: none
}

table, tr, td {
font-family: "times new roman", times;
font-size: 16pt;
font-style: normal;
font-weight: normal;
color: #ffcc66; }


Love,
Mirna

pb&j
02-20-2005, 08:39 PM
in 800x600 screen size, the text is off one direction, in a higher res, it is off in the other direction.

you may be better off taking the large image out of the background and placing it onto the page itself. then use css positioning to place your text and iframe into place instead of tables.