Software Archive
Read-only legacy content
17061 Discussions

How to change text size in text area, p tags? quick question

Sara_I_
Beginner
321 Views


Hi guys,

I have a text area inserted in a gridlayout and want to change the text size.
I see that  with this drag and drop the text is surrounded by <p> tags.
I've tried  <p style="font-size:20px">, (also tried changing to %), but doesn't work.
What's the way to do this?

Thanks in advance. 

0 Kudos
2 Replies
Elroy_A_Intel
Employee
321 Views

I recommend adding the font-size attribute directly to the textarea element.

textarea {
   font-size: 18px !important;
}
0 Kudos
Chris_P_Intel
Employee
321 Views

The grid control has a text-size style that it uses to override the text of anything in the grid. You can remove that style if you don't want it. Or you can use it to make the desired adjustment.

0 Kudos
Reply