How do we get rid of the excessive amount of white space on our catalog requests?

Stacy1
Mega Guru

The form has way too much white space and just does not look right.   How do we reduce the amount of white space between variables?

9 REPLIES 9

Hi Menigoz,



Have you got any fix for this?



Thanks and regards,


Swamy


I'm just thinking out loud here, but I wonder how it would look if you wrapped all of those variables between a container start/end. Might be worth trying to see. Perhaps it will compact them some?


So been working on too many things, the screen shot is a Wizard.   There are not container start/ends in Wizards, only splits which don't seem to be working.   Maybe I should just make this a request instead of a Wizard


igaray
ServiceNow Employee
ServiceNow Employee

Hi Stacy,



Im not sure if this will help :



1.   Make sure that you are in the latest version of Geneva Service Catalog as the initial versions did have white space and if you upgrade to patch 4 that should be fixed.



2.   If you are then ask yourself if your variables are in containers.


3.   If they are in containers and hidden by UI Policies then apply PRB665752.



//----- Modify to fit your need ---------------------


var hello= document.getElementsByTagName('td');


var parent=null;


for(var i=0; i < hello.length; i++){


      parent= hello[i].parentElement;


      if(parent.id.indexOf('container') != -1){


              hello[i].style.paddingBottom='0px';


      }


}


//----------------------------------------------------------


igaray
ServiceNow Employee
ServiceNow Employee