web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / how to change font siz...
Power Apps
Answered

how to change font size and color of hint text in text property

(0) ShareShare
ReportReport
Posted on by 403

i have 2 quick question

how do i change the font size and color of a hint text in text property

and another question i have is 

how can i have 2 if statement in a display mode of submit button?

see the picture below

Jupyter123_0-1668774366605.png

it shows error currently

Categories:
  • Verified answer
    Sundeep_Malik Profile Picture
    6,501 on at

    Hey @Jupyter123 

     

    For the Hint Text, it will have the same font size as of the normal text you want to enter in it. And the color cannot be changed.

     

    For the two if statements, you just write && between them, if your require both of them to be true otherwise you can write || if you want it to be visible if one is true.

    Something like below:

     

    Sundeep_Malik_0-1668776182469.png

     

    So, in your case it can be like:

     

    OR Case:

     

    If(
    varCount < 3 ||
    !IsBlank(TextInput1.Text)
    ,
    DisplayMode.Edit,
    DisplayMode.Disabled
    )

     

    And Case:

     

    If(
    varCount < 3 &&
    !IsBlank(TextInput1.Text)
    ,
    DisplayMode.Edit,
    DisplayMode.Disabled
    )

  • EdViegas Profile Picture
    436 on at

    1. I think is not possible

    2:

    If(
     Or(
     varCount < 3,
     !IsBlank(TextInput1.Text)
     ),
     DisplayMode.Edit,
     DisplayMode.Disabled
    )

    Btw you can write n conditions like

    If(
     condition 1,
     do this,
     condition 2,
     do this,
     condition n,
     do this,
     do this // else action
    )

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 409 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 328

#3
WarrenBelz Profile Picture

WarrenBelz 252 Most Valuable Professional

Last 30 days Overall leaderboard