Creating Space between Icon Links / Widgets

James Veale
Giga Contributor

Hi ServiceNow Community, 

How do you create space between widgets? 

From the image below, I would like to create a space between the top 3 widgets and the bottom widget. 

I have tried resizing the widgets but the 'eeee' widget keeps merging into the three widgets above. 

The code I am using to resize the widgets is: 

.iconlink { 

     height: 100px;

     width: 250px;

}

Thanks in advance! 

James 

 

find_real_file.png

1 ACCEPTED SOLUTION

Jaspal Singh
Mega Patron
Mega Patron

Can you try using for a check.

.iconlink { 

     height: 100px;

     width: 250px;

     padding-top: 20px; 

}

View solution in original post

6 REPLIES 6

AbhishekGardade
Giga Sage

Try adding that widget into another container.

Or Refer. https://community.servicenow.com/community?id=community_question&sys_id=d2760325db1cdbc01dcaf3231f96...

Thanks,

Abhishek Gardade

Thank you,
Abhishek Gardade

Jaspal Singh
Mega Patron
Mega Patron

Can you try using for a check.

.iconlink { 

     height: 100px;

     width: 250px;

     padding-top: 20px; 

}

I used the below for 'eeee' and it worked too! 

.iconlink {

   height: 100px;

   width: 250px;

   margin-top:20px;

}

Good to know you got it working.

Welcome to the community. Kindly close the thread by marking appropriate answer correct.