Page 1 of 1

text alignment to center?

PostPosted: 18 Apr 2017 13:11
by EitanArbel
hi

i didn't see any Alignment property to the Accordion or the AccordionTab

how can i have alignment:=alCenter to the text please?
or add the property if possible please?

p.s.
i use 3.0.0.115

Thanks

Re: text alignment to center?

PostPosted: 19 Apr 2017 11:16
by assapan
So far as i know this is managed by css , modify jquery.mobile.structure-1.3.2.min.css

Code: Select all
.ui-collapsible-heading,.ui-collapsible-heading>.ui-btn {
   -webkit-border-radius:inherit;
   border-radius:inherit;
   text-align: center;
}

Re: text alignment to center?

PostPosted: 19 Apr 2017 11:19
by Alexander Bulei
Hi EitanArbel,

As assapan said, you need override the default style.

Best Regards.