Skip to main content

Hi All,

 

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

 

13547i8FAC91584BB5E1D7.png

Thanks

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