Hi,
Just use the code I gave you above in bold:
Code:
border: #555 solid 1px;
The above will put the border back on your element.
In your original code you had this:
Code:
border-color: #555 solid 1px;
Thats the longhand for the border colour but you've added all the shorthand properties to it for border-width and border-style as well, which is incorrect.
This is the correct longhand:
Code:
border-width: 1px;
border-style: solid;
border-color: #000000;
and this is the equivalent shorthand:
Code:
border:1px solid #000
Hope that makes it clearer
Paul