Changing Particular Grid Cell Border Color
Like in this post:
https://getsatisfaction.com/apperyio/...
I am trying to change the color (and size) of only a particular side of a grid cell. In this case, I want a top, black border only.
This is my css:
td [name="cell_top_brdr_A"] {
border-top-style: solid !important;
border-top-width: 1px !important;
border-top-color: #000000 !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-left-width: 0px !important;
}
The name of the cell is spelled correctly, and here is a picture of that cell:
The green border is an overlay on the image to highlight the cell.
How would I just change the top border of that cell only?