View Full Version : my table won't change size???


stargurl*
10-25-2004, 12:24 AM
whats wrong with my code? The tickertape table won't decrease in size... heres my code:

<HTML><HEAD><TITLE>Bubble Shrub's Layouts</TITLE></HEAD><BODY>


<STYLE type="text/css">
body{ font-face: verdana;font-size:9px; line-height: 12px;text-align: ;color: #000000;letter-spacing: 0pt; font-weight:normal;}
td{font-family: verdana; color: #000000; font-size:9px; text-align: left;letter-spacing: 0pt}
b{font-family: verdana; color: #9cebbb; font-weight:bold; font-size: 9px; text-align: left;letter-spacing: 0pt; background:; border-bottom:0px

dashed black;}
body{background-color: #ffffff;}
<!--BODY{
scrollbar-face-color: #9aebb5;
scrollbar-highlight-color: #9aebb5;
scrollbar-3dlight-color: 000000;
scrollbar-darkshadow-color: 000000;
scrollbar-shadow-color: #9aebb5;
scrollbar-arrow-color: #000000;
scrollbar-track-color: #FFFFFF;
}
</style>

<!--
A:link{COLOR:#E0002A; text-decoration:none;}
A:visited{COLOR:#FFB251; text-decoration:none; border-bottom:1px black;}
A:active{COLOR:#E0002A; text-decoration:none;}
A:hover{COLOR: #FC6B65; cursor:n-resize; border-bottom:0px solid black; background:;}
-->

<style type="text/css">
<!--input,textarea{color: black;font-size:9px;font-family: tahoma; font-weight:normal; background: #FFFFFF;border:1px solid black;}
} -->
</style>
<center> <table border="0" bordercolor=000000 cellspacing="1" bgcolor="000000">
<td width="110" height="118" bgcolor="FFFFFF"><div style="overflow:auto;width:110;height:118"><b>hey.</b><br><MAIN>lalalalalalalalala kalalalala lalal lallll lalalalal lalala lalala lalala lalala lalala lalala lalal lalal lalalal lalalla <br><b>x</b> and <b>o</b>,<P><b>Your Name</b></table>

<table border="0" bordercolor=000000 cellspacing="1" bgcolor="000000" height="20"><table border="0" bordercolor=000000 cellspacing="1" bgcolor="000000">
<td width="110" height="20" bgcolor="FFFFFF"><div style="overflow:auto;width:110;height:118"><marquee behavior=scroll direction="left" scrollamount="6">tickertape</marquee></td>
</table>



</BODY>
</HTML>

pb&j
10-25-2004, 12:30 AM
try changing this part...
<table border="0" bordercolor=000000 cellspacing="1" bgcolor="000000" height="20"><table border="0" bordercolor=000000 cellspacing="1" bgcolor="000000">
<td width="110" height="20" bgcolor="FFFFFF"><div style="overflow:auto;width:110;h eight:118"><marquee behavior=scroll direction="left" scrollamount="6">tickertape</marquee></td>
</table>
into this...
<table border="0" bordercolor="#000000" cellspacing="1" bgcolor="#000000" height="20">
<tr>
<td width="110" height="20" bgcolor="#FFFFFF">
<div style="overflow:auto; width:60px; height:20px">
<marquee behavior="scroll" direction="left" scrollamount="6">tickertape</marquee>
</td>
</tr>
</table>
if that helps, change the style size as desired.

stargurl*
10-25-2004, 12:40 AM
thnx so much! =D

pb&j
10-25-2004, 02:52 AM
no worries. good luck!