You have no bottom border specified for that element:
Code:
<a style="border-left:1px solid black; border-right:1px solid black; border-top:1px solid black; display: block; width: 120px; text-decoration: none; font-weight: 900; border-bottom: medium none;; padding-left:5px; padding-right:5px; padding-top:0px; padding-bottom:0px" href="/store/electronics/supra.html">Toyota Supra</a>
Also, you have an extra semicolon, shouldn't hurt anything but, might. Use this:
Code:
<a style="border-left:1px solid black; border-right:1px solid black; border-top:1px solid black; display: block; width: 120px; text-decoration: none; font-weight: 900; border-bottom:1px solid black; padding-left:5px; padding-right:5px; padding-top:0px; padding-bottom:0px" href="/store/electronics/supra.html">Toyota Supra</a>
Or the more concise:
Code:
<a style="border:1px solid black; display: block; width: 120px; text-decoration: none; font-weight: 900; padding:0 5px;" href="/store/electronics/supra.html">Toyota Supra</a>
Bookmarks