Re: Borders around fields
A border can be added to most elements quite easily with css.
You need to determine the css class that is used for whatever you want to put a border around, then add something like this to it in your main.css file:
border: solid 1px red;
|