Hello,experts.
I have small problem, i need change my form becouse users dont see full text. Its posible?
i try use css https://confluence.atlassian.com/jirakb/how-to-change-text-box-length-on-a-screen-ui-in-jira-732399321.html
<style>
#15100 /id field/{
max-width: 1000px
}
</style>
but its dont work.
Hi @Руслан ,
the id is not the custom field id but the id of the ui element. In your scenario it should be
#customfield_15100
<style>
#customfield_15100
{
max-width: 300px;
}
</style>
Please try and let me know if it works,
Fabio
Hi @Fabio Racobaldo _Herzum_ im trying you code,but its doesn't work.
Full name my element when im click "Inspect code" - customfield_15100-ms-field
Im trying
<style>
#customfield_15100-ms-field
{
max-width: 350px;
}
</style>
but dosen't work too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
please could you share the inspect screenshot?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it seems something like a select list
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Fabio Racobaldo _Herzum_ thanks for help.
this code work
<style>
#customfield_15100-ms
{ max-width: 500px; }
#customfield_15100-ms-field
{ max-width: 500px; }
#customfield_15100-ms-single-select
{ max-width: 500px; }
#customfield_15100-ms-suggestions
{ max-width: 500px; }
#customfield_15101-ms
{ max-width: 500px; }
#customfield_15101-ms-field
{ max-width: 500px; }
#customfield_15101-ms-single-select
{ max-width: 500px; }
#customfield_15101-ms-suggestions
{ max-width: 500px; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.