I am trying to align the address field the total width to fields above it. I thought adjusting the width of the CSS OnePerLine would help, but it doesn't seem to do anything. I am a novice, so I'm sure it's something simple... any ideas?
/*Displays one fields per line*/
.OnePerLine{display: inline-block; width:100%;}
.OnePerLine .cf-medium {width:97%;}
.OnePerLine .cf-small {width:97%;}
/*Displays two fields per line*/
.TwoPerLine{display: inline-block; width:50%;}
.TwoPerLine .cf-medium {width:97%;}
.TwoPerLine .cf-small {width:97%;}
/* Displays three fields per line */
.ThreePerLine {display: inline-block; width:33%}
.ThreePerLine .cf-medium {width:97%;}
.ThreePerLine .cf-small {width:97%;}