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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2016 09:05 AM
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2016 04:04 AM
Hi Menigoz,
Have you got any fix for this?
Thanks and regards,
Swamy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2016 09:44 AM
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?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2016 10:16 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2016 08:44 AM
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';
}
}
//----------------------------------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2016 04:39 PM