- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2020 07:15 AM
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
Solved! Go to Solution.
- Labels:
-
Service Portal

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2020 07:19 AM
Can you try using for a check.
.iconlink {
height: 100px;
width: 250px;
padding-top: 20px;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2020 07:18 AM
Try adding that widget into another container.
Thanks,
Abhishek Gardade
Abhishek Gardade

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2020 07:19 AM
Can you try using for a check.
.iconlink {
height: 100px;
width: 250px;
padding-top: 20px;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2020 08:28 AM
I used the below for 'eeee' and it worked too!
.iconlink {
height: 100px;
width: 250px;
margin-top:20px;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2020 08:31 AM
Good to know you got it working.
Welcome to the community. Kindly close the thread by marking appropriate answer correct.