Kat1984
02-14-2004, 08:52 PM
Besides the unknown url I put. :) The border is not coming out dashed and no background color.
<div style="position: absolute; top: 5px; left: 660px;">
<table width="100" height="30" cellpadding="0" cellspacing="0" border="1" bordercolor="#000000"
background-color:"#CC3F3C" border-style:dashed; border-color:#000000;">
<tr><td align="center" valign="middle">
<a href="http://dsfgsgds.com" target="main1">PHOTOS</td></tr>
</table>
Cherchezlafemme
02-14-2004, 08:55 PM
<div style="position: absolute; top: 5px; left: 660px;">
<table width="100" height="30" cellpadding="0" cellspacing="0" border="1" bordercolor="#000000"
background-color:"#CC3F3C"; border-style:dashed; border-color:#000000;">
<tr><td align="center" valign="middle">
<a href="http://dsfgsgds.com" target="main1">PHOTOS</td></tr>
</table>
That was easy lol you missed a semi colon between border-style and border color lol :lol: Don't you just hate it when you miss those small details which make everything count? lol
salomeyasobko
02-14-2004, 09:04 PM
<edit> nevermind, i guess cherchezlafemme beat me to it :D </edit>
Rosey
02-14-2004, 09:07 PM
you also need to put style=" before background color and you need to get rid of the "" around the numbers in that style tag. You could put just about everything in that table tag into a style tag:
<table cellpadding="0" cellspacing="0" style="width:100; height:30; border:1px dashed #000000; background-color:#CC3F3C;">
Kat1984
02-14-2004, 09:09 PM
Both of your help didn't work.
salomeyasobko
02-14-2004, 09:10 PM
<table style="width: 10px; height:30px; cellpadding=0; cellspacing=0; border=1; background-color: #CC3F3C; border-style: dashed; border-color: #000000" >
that should work :D just replace it with what you had for the table! tell me if it doesn't..
Kat1984
02-14-2004, 09:12 PM
Thanks Rosey, that worked for sure!