You are viewing limited content. For full access, please sign in.

Question

Question

Changing Form width effect text size?

asked on April 24, 2018

Does changing the width of the form change the font size for the form that is saved to the repository? If this is the case is there a way to increase the font size when the form is saved? We had done a test where we widened the form and saved it in landscape and the font was much smaller when saved. 

0 0

Replies

replied on April 24, 2018 Show version history

Hi Cristobal,

When form width is less than around 1000px, the form saved to repository would not be resized. The text size would not increase in this case.

When form width is larger than around 1000px, because the page size is fixed (letter with 300 PPI), the whole form would shrink so font size would be smaller.

If you would like to increase font size, you could do it with custom CSS on the form.

0 0
replied on April 25, 2018

Would this only be in the CSS section or could you change the size for saving utilizing JavaScript. Currently the form is long and already has CSS applied.

0 0
replied on April 25, 2018

If you would like, you can do it with JavaScript like this:

$(document).ready(function(){
  if (window.isPrintMode)
  {
    $("li").css("cssText", "font-size: 30px !important;");
  }
});

 

1 0
You are not allowed to follow up in this post.

Sign in to reply to this post.