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

Question

Question

Form background color in repository - need to change

asked on May 3, 2016 Show version history

We have a particular form that often must be printed out after being saved to the repository and then faxed.  By the time the fax is received, the form is extremely difficult to read due to the cream colored background appearing on the saved form.

Is there a way to remove this background color?

Thanks!

0 0

Answer

SELECTED ANSWER
replied on May 3, 2016 Show version history

$(document).ready(function(){
  $('.Submit').click(function(){
  	alert('submitted');
    $("body").css("background-color" , "#ffffff");
  })
});

Either you could change background color from theme -> customization or change the color once submitted using code above.

1 0
replied on May 3, 2016

Thank you!  I changed the background color on the theme and it worked perfectly.

0 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.