Page 1 of 1

Center Text

PostPosted: 05 Jun 2016 16:39
by Aggie85
Howdy!

By default the selected date is left justified! Since I am using SeelctList components that CENTER their values, what is the proper way to have the selected date to centered?

Thanks!

Aggie85

Re: Center Text

PostPosted: 06 Jun 2016 14:51
by Alexander Bulei
Hi Aggie85,

You can change the appearance with css class.

Set the css class on component (e.g: my-custom-css), then use the css selector in your custom css file:

Code: Select all
.my-custom-css input{
  text-align:center;
}


Best Regards.