- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2024 03:32 AM - edited 04-30-2024 04:19 AM
Hi
In standard ticket page , when HR case is opened, we can see the date,state in right side of the page(Highlited in yellow)
But we have a requirement where these options should be visible in left side of the page beside HR case,Attaching the sample screenshot down here with yellow marked, so we need to achieve those values in left of the page like below screenshot, so is it possible?
Please help me to resolve the issue
@Dr Atul G- LNG @James Chun @Community Alums @Community Alums
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 06:28 AM
Ah yeah my CSS isn't the best - however you can amend the CSS line '.panel-body' to '.panel-body.no-padder'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2024 03:41 AM
Hi @sri vijaya
Keeping it in left , what value it serve?
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2024 04:15 AM - edited 04-30-2024 04:17 AM
it should serve same as in the standard ticket page which is created,updated,state of the case
But those values should be visible in left side of the page beside the case number, so that was the requirement
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2024 04:43 AM
Hi @sri vijaya
This is what we got OOTB , so lets keep it like this. It is by design.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2024 05:39 AM
This requirement can be achieved easily without cloning the widget. The below solution benefits from how ServiceNow compiles CSS code.
- Navigate to the portal you wish for this change to apply to, for this example we'll use "esc"
- Navigate to the theme record being used by the portal
- Via the related list, create a new CSS Include record as well as a new Style sheet (see below)
- Open the style sheet (which will be blank) and enter the following
.v8face42a131d0810da297ad66144b0e2 {
div {
.panel-body {
div {
float: none !important;
}
}
}
}
On refresh you'll have the headings left aligned.