Skip to main content
Nintex Community Menu Bar
Solved

How to change List Box header/title Font type and size?

  • September 19, 2019
  • 2 replies
  • 51 views

Forum|alt.badge.img+16

Hi,

 

I see that there is still no functionality in K2 5 designer for a simple thing like adjusting the Title font size or type.

 

Can anyone please suggest some code that will adjust the List Box Header/title font size?

 

I tried the method i've used for List Views :

<script type="text/javascript">$(document).ready(function(){ $('.grid-column-header-text').css({'font-size' : '12px','font-family' : 'arial'});});</script> and literal ticked, with the data lavel inside the table, but it's not working on a List Box

 

Any ideas K2 Maestro's?

Best answer by Albarghouthy

Hi Sharpharp1


 


try this


<script>$(".title").css({'font-size' : '12px','font-family' : 'arial'});</script>

2 replies

Albarghouthy
Forum|alt.badge.img+16
  • Scholar
  • Answer
  • September 19, 2019

Hi Sharpharp1


 


try this


<script>$(".title").css({'font-size' : '12px','font-family' : 'arial'});</script>

Forum|alt.badge.img+16
  • Author
  • Scout
  • September 19, 2019
Works well, just bear in mind that this changes it for every List Box on the page.

Thanks Mustafa