Ok, I have this site http://alligator-foot.tripod.com/
And, on the side where it says 'links' I want a border around all the black, like the one around the whole page, How Can I go about doing this, but I only want a border around the black.
Ok, I have this site http://alligator-foot.tripod.com/
And, on the side where it says 'links' I want a border around all the black, like the one around the whole page, How Can I go about doing this, but I only want a border around the black.
Try changing this:
<td width="100" valign="top" bgcolor="black">
to this:
<td width="100" valign="top" bgcolor="black" style="border:1 solid red">
Geotrust SSL Certificates
http://sslcheap.com
I tried that, didn't work...
Are you sure? I tried it out on a copy of your page locally and it seemed to work perfectly well. Try increasing the border size.. maybe the one pixel is too small for you to notice it's there?Originally Posted by labrynth_of_fire
So the line sslcheap gave you would read something like this.
<td width="100" valign="top" bgcolor="black" style="border:4 solid red">
Okay.. I see it fails in Firefox.. no probs!
Try adding this to your CSS
#navlinks {
background-color: black;
border: solid 4px red;
color: white;
font-weight: bold;
}
Then add the ID to the table cell as below:
<td width="100" valign="top" id="navlinks">
Ah, thanks, it works :)Originally Posted by paulhiles