- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2017 01:53 AM
Dear all,
On the service portal / request item, I would like to increase the height of one field "description", this one is too small :
When I write multi line, we have a scroll bar :
It's not practice to read the whole description text.
How can I do it ?
Thanks in advance.
Regards,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 04:56 AM
Just one thing,
Is the sys_id of the variable same as you have added? ( its short description i am guessing)
Also, can you try it in one column format as it worked for me in it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2017 01:25 AM
Hi,
I would like to apply this style only for one variable multi line text. This one appears on all items.
variable name: gem_description
On several items, there are several variables in multi line text, but I need only one variable multi line text (variable name : gem_description) with increasing of height.
Thanks for help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2017 08:25 AM
Hi Khamsone,
If you want only one variable CSS to be affected then please add the below code in CSS instead of applying to all textareas.
Please replace the highlighted part with Id of your variable
#sp_formfield_IO\3A 51d4fda2d7532100a9ad1e173e24d46a{
height: 100px !important;
}
Please let me know if it doesn't work.
Thanks
Gaurav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 03:15 AM
Hi,
Thank you for email,
I inserted the below on my CSS :
.textarea {
#sp_formfield_IO\3A d4f8e3d7dbad720092107e400f961981{
height: 500px !important;
}
}
But that's still not working...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 03:22 AM
Hi,
Did you try just
#sp_formfield_IO\3A d4f8e3d7dbad720092107e400f961981{
height: 500px !important;
}
and not
.textarea {
#sp_formfield_IO\3A d4f8e3d7dbad720092107e400f961981{
height: 500px !important;
}
}
This worked for me pretty well.
Thanks
Gaurav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 03:29 AM