- 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:19 AM
Create a container underneath the existing one and add your 'EEEE' widget to it.
That should do the trick for you.
Please mark my response as correct and helpful if it helped solved your question.
-Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2020 07:27 AM