abigdreamer
Posts: 0
Joined: Fri Jul 12, 2013 7:20 pm

How do I get a bigger font in a mobile app for a long text string stored in a grid?

How do I get a bigger font in a mobile app for a long text string stored in a grid?

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

How do I get a bigger font in a mobile app for a long text string stored in a grid?

Hi Mike,

You can change font size in a Component properties panel. For more settings you can use custom CSS, for example: "font-size" to increase the value.

abigdreamer
Posts: 0
Joined: Fri Jul 12, 2013 7:20 pm

How do I get a bigger font in a mobile app for a long text string stored in a grid?

I'm sorry I can't find it. Its an Input field, not a label. How do I make the font bigger? I found properties. (type attribute, type value) thats what I get in that box, what do I put in there?

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

How do I get a bigger font in a mobile app for a long text string stored in a grid?

Hello Mike!

Add next CSS to custom CSS:
pre
input[name=mobiletextinput]{
font-size:20px;
}
/pre
where "mobiletextinput" - name of input field

abigdreamer
Posts: 0
Joined: Fri Jul 12, 2013 7:20 pm

How do I get a bigger font in a mobile app for a long text string stored in a grid?

Next CSS to custom CSS? I am lost sorry, where in the program is this?

Igor
Posts: 0
Joined: Tue Apr 02, 2013 12:05 pm

How do I get a bigger font in a mobile app for a long text string stored in a grid?

Hello,

You can create separate CSS file and put this code there.

abigdreamer
Posts: 0
Joined: Fri Jul 12, 2013 7:20 pm

How do I get a bigger font in a mobile app for a long text string stored in a grid?

I made a css file.
input[name=vin_input]{
font-size:20px;
}

I put this code here. It has not changed the input font size.

Igor
Posts: 0
Joined: Tue Apr 02, 2013 12:05 pm

How do I get a bigger font in a mobile app for a long text string stored in a grid?

There are two ways how to increase font:

  1. Set "Class Name"=testinput for the input component. Add put next code to CSS file:
    pre
    .testinput{
    font-size:40px!important;
    }
    /pre

  2. You can Run JS on Load event for page:
    $("[dsid=mobiletextinput]").css('font-size','300%');

    http://docs.appery.io/documentation/w...

Return to “Issues”