css styling seems not to work on mobile forms

2
If I attach a 'font-size:200%;' or 'font-weight:bold;' to a textbox in a mobile form, it makes no difference, whilst 'text-align:center;' does work. Are there CSS properties that do not work on mobile forms? Or am I doing something else wrong ...
asked
2 answers
8

Hi Ruud,

It appears the style is being added to the div surrounding the textbox and that's the reason it's not working. We will have this fixed in the next update. What you can do in the meantime is to put a class on the table cell and add this to your theme.

Like so:

.default .ExampleClass div input {
     font-weight: bold;
  }

I hope this helps.

answered
0

Can you try it with css instead of inline styles?

answered