Solved

Remove spaces between Radiobutton List values

  • 11 July 2017
  • 1 reply
  • 2 views

Hi All,

 

is there a way to remove some spaces between the radiobutton list values?

 

13547i8FAC91584BB5E1D7.png

Thanks

icon

Best answer by Albarghouthy 12 July 2017, 11:05

View original

1 reply

Userlevel 5
Badge +16

Hi TTN,


 


The display type is set to 'Table', you just need a script to change it to 'Block'.


 


Add a data lable to your view/form and set the following script as an expression:


 


 


<script type="text/javascript">$(document).ready(function(){

$('.stack-container').css({"display": "block"});

});

Hope that helps


 

Reply