I have a text box in my composition that I would like to have a border. I've added a class to this text box and loaded an external css file with some simple styles:
.bottomRightStroke {
font-family: arimo, sans-serif!important;
text-align: center!important;
vertical-align: center!important;
border-bottom-width: 2px!important;
border-bottom-color: #123f63!important;
border-right-width: 2px!important;
border-right-color: #123f63!important;
}
None of the border items are being accepted by my text box.
Any suggestions?