Skip to main content
Nintex Community Menu Bar

Hi,

 

Anyone know of any dazzling javascript to increase the size of the Watermark for the File attachment control?

 

I've tried the following one:

 

<script type="text/javascript">$(document).ready(function() { $('.theme-entry .SFC.SourceCode-Forms-Controls-Web-TextBox.watermark, .theme-entry .input-control-watermark').css('font-size', '11pt');});</script>

but it doesn't apply the changes to the File Attachment watermark.

 

Any ideas?

Good  day,


 


The part you entered the font size (css) should in this format css('font-size': '11px') not css('font-size', '11px')


If this resolves the issue you can marks this post as solution.


 


Kind regards


Themba


Doesn't have any impact:

 

I changed it as per your suggestion, but the watermark is the same:

 

<script type="text/javascript">$(document).ready(function() { $('.theme-entry .SFC.SourceCode-Forms-Controls-Web-TextBox.watermark, .theme-entry .input-control-watermark').css('font-size': '11px');});</script>

Also, my original posted code said 11pt, you changed it to 11px....

 

Any ideas?


Hi Sharpharp1,


 


This should work 


 


<script>$('.file-watermark').css({'font-size' :'19px'});</script>

Stunning work Mustafa, works a treat,

 

Thanks for solution


Reply