
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2014 03:57 AM
Hi All, Is there a way we can move the button on form header to left as shown in below screen? I tried for options in UI action but could not find any. Please let me know if there is a way to do so.
Many thanks in advance.
Rajnish
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2014 05:21 AM
It's possible, though I wouldn't suggest it. You would need to create an On-Load client script that used prototype to actually move the button. It looks like all of the buttons are within a span, which is within a td element. Moving it out of the span and into the td element might do it. Messing with the DOM in this way has the potential to cause issues in the future with upgrades.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2014 05:21 AM
It's possible, though I wouldn't suggest it. You would need to create an On-Load client script that used prototype to actually move the button. It looks like all of the buttons are within a span, which is within a td element. Moving it out of the span and into the td element might do it. Messing with the DOM in this way has the potential to cause issues in the future with upgrades.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2014 12:52 AM
Thanks Chris. As you suggested, probably not a good idea to move button to left. I will go for some other alternatives with my requirements. Regards, Rajnish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2014 05:31 AM
Hi,
Write some css for left-align for action .
For more details see .
CSS Theme Support - ServiceNow Wiki

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2014 12:53 AM
Thanks Sanjeev.