Remember, the code to create a link is
Thus, you're looking in the CSS for the img selector (lines 54 to 56).
img{
max-width: 100%;
}
You want to add to the code in the bold section. Lets say we want a dashed border, then we need:
border-style: dashed;
We can also specify the border color and width:
border-color: red; border-width: 5px;