View Full Version : Stupid backround scrolls!


rinoa_heartily
05-15-2003, 07:57 AM
okay what am i doing wrong?:



<td><style type="text/css">
<!--
textarea, p, br, hr, table, tr, td, div{ direction: ltr}} <!--
A:link
{ text-decoration: none; color:#87B9D9 }
A:visited
{ text-decoration: none; color:#87B9D9 }
A:active
{ text-decoration: none; color:#87B9D9 }
A:hover
{ text-decoration: overline; cursor:crosshair; color:#92B7CE;
body,tr,td {font-size: 9pt; font-family: tahoma, arial, verdana; line-height:9px}

.d { font-family: verdana; line-height: 9px; font-size: 9px; letter-spacing: 0px; font-weight: normal; text-decoration: underline; color: #8FADE1; filter: dropshadow(color=#CFE1FF, offX=1,offY=1,positive=1); height:15}

body
{ background-color: #FFFFFF;
background-image: url(iframe_backround.jpg);
background-repeat: No Repeat
background-attachment: Fixed

font-family: tahoma,arial,verdana;
color: #000000 ;
letter-spacing: 0pt;
font-weight: normal;
font-size: 8pt;

scrollbar-face-color : #495B80;
scrollbar-highlight-color : #495B80;
scrollbar-3dlight-color : #87B9D9; scrollbar-shadow-color : #495B80;
scrollbar-darkshadow-color : #87B9D9; scrollbar-track-color : #AAC8FA;
scrollbar-arrow-color : #87B9D9 }



-->
</style></td>
</tr></table></div>
</div>



I want th backround to be fixed not to scroll!

rinoa_heartily
05-15-2003, 10:42 AM
It's okay i fixed it!^.^

rinoa_heartily
05-17-2003, 01:14 AM
Now the backround isn't showing! and the font is going stupid!
what am i doing wrong?


<body>
<td><style type="text/css">
<!--
textarea, p, br, hr, table, tr, td, div{ direction: ltr}} <!--
A:link
{ text-decoration: none; color:#87B9D9 }
A:visited
{ text-decoration: none; color:#87B9D9 }
A:active
{ text-decoration: none; color:#87B9D9 }
A:hover
{ text-decoration: overline; cursor:crosshair; color:#92B7CE;
body,tr,td {font-size: 9pt; font-family: tahoma, arial, verdana; line-height:9px}

.d { font-family: verdana; line-height: 9px; font-size: 9px; letter-spacing: 0px; font-weight: normal; text-decoration: underline; color: #8FADE1; filter: dropshadow(color=#CFE1FF, offX=1,offY=1,positive=1); height:15}

body
<BODY BACKGROUND="iframe_backround.jpg" bgproperties="fixed">

font-family: tahoma,arial,verdana;
color: #000000 ;
letter-spacing: 0pt;
font-weight: normal;
font-size: 8pt;

scrollbar-face-color : #495B80;
scrollbar-highlight-color : #495B80;
scrollbar-3dlight-color : #87B9D9; scrollbar-shadow-color : #495B80;
scrollbar-darkshadow-color : #87B9D9; scrollbar-track-color : #AAC8FA;
scrollbar-arrow-color : #87B9D9 }

-->
</style></td>
</tr></table></div>
</div>

zangerbanger
05-17-2003, 02:30 AM
I think your stylesheet should be inserted inside the <head></head> tags.

angelivion
05-18-2003, 03:30 AM
<head>

<style type="text/css">

<!--
A:link { text-decoration: none; color:#87B9D9; }
A:visited { text-decoration: none; color:#87B9D9; }
A:active { text-decoration: none; color:#87B9D9; }
A:hover { text-decoration: overline; cursor:crosshair; color:#92B7CE; }

body,td { font-size: 9pt; font-family: tahoma, arial, verdana; line-height:9px; }

.d { font-family: verdana; line-height: 9px; font-size: 9px; letter-spacing: 0px; font-weight: normal; text-decoration: underline; color: #8FADE1; filter: dropshadow(color=#CFE1FF,
offX=1,offY=1,positive=1); height:15; }

body {
background-image:url(iframe_backround.jpg);
background-attachment:fixed;
font-family: tahoma,arial,verdana;
color: #000000;
letter-spacing: 0pt;
font-weight: normal;
font-size: 8pt;
scrollbar-face-color : #495B80;
scrollbar-highlight-color : #495B80;
scrollbar-3dlight-color : #87B9D9;
scrollbar-shadow-color : #495B80;
scrollbar-darkshadow-color : #87B9D9;
scrollbar-track-color : #AAC8FA;
scrollbar-arrow-color : #87B9D9; }

-->
</style>
</head>

<body>
<table>
<tr>
<td>
STUFF
</td>
</tr>
</table>
</body>

There were a bit of mix-ups going on. And... are you sure the filename for the background is iframe_backround.jpg instead of iframe_background.jpg?