PDA

View Full Version : border-right problem


ROT
06-06-2003, 07:16 PM
im having problems getting my right border on a table to show up... the other borders, however, are just fine...

stylesheet

td#leftcolumn {

width: 105px;
}

td#leftcolumn th {

color: #FFFFFF;
}

td#leftcolumn div.blockTitle {

padding: 3px;
color: #ffffff;
background-color: #666666;
font-weight: bold;
border-left: 1px;
border-right: 1px;
border-top: 1px;
border-bottom: 1px;
border-style: dashed;
margin-left: 3px;
}

td#leftcolumn div.blockContent {

padding: 3px;
background-color: #000000;
border-left: 1px;
border-right: 1px;
border-bottom: 1px;
border-top: 0px;
border-style: dashed;
margin-left: 3px;
}



html

<td id="leftcolumn" width="125" height="462" valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<div class="blockTitle">
<{$block.title}>
</div>
</td>
</tr>
<br>
<tr>
<td>
<div class="blockContent">
<{$block.content}>
</div>
</td>
</tr>
</table>
</td>

any ideas?

**btw, netscape7 shows the right border just fine -- im trying to get it adjusted with ie6**

cg9com
06-07-2003, 12:51 AM
I'm not sure I know exactly what you are asking.
Everything looks fine to me?

ROT
06-07-2003, 04:42 AM
k, im trying to get a dashed line all the way around my boxes... well, even tho the code is correct (or so it seems) the dashes on the right side of the boxes wont show up in ie6... but will in nn7

was wondering if im perhaps doing something wrong.

thanks for the reply.

ROT
06-07-2003, 05:30 AM
***RESOLVED***

cg9com
06-07-2003, 07:15 PM
Good.
What was the problem?
*curious*

ROT
06-08-2003, 01:41 AM
take a look at the image -- the select border around the links spanned beyond the right edge of the table, in turn making it so the dashed line wouldnt appear... the code i had to fix to shorten the select box wasnt even code i posted

table{width: 100%}