Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How i change jira size form?

Ruslan February 12, 2023

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>

jiras.PNG

but its dont work. 

 

 

1 answer

1 accepted

0 votes
Answer accepted
Fabio Racobaldo _Herzum_
Community Champion
February 13, 2023

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

Ruslan February 13, 2023

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. 

Fabio Racobaldo _Herzum_
Community Champion
February 13, 2023

hey @Руслан , did u try to clean the browser cache after saving the announcement banner?

Ruslan February 13, 2023

yes, and im use different browser, but doesn't work, dont know why

Fabio Racobaldo _Herzum_
Community Champion
February 13, 2023

please could you share the inspect screenshot?

Ruslan February 13, 2023

I don’t know if this is enough, maybe it doesn’t work becouse this field is filled with behavior

 

Screen.PNG

Fabio Racobaldo _Herzum_
Community Champion
February 13, 2023

What is the custom field type?

Ruslan February 13, 2023

@Fabio Racobaldo _Herzum_ Text Field (single line)

Fabio Racobaldo _Herzum_
Community Champion
February 13, 2023

it seems something like a select list

Ruslan February 13, 2023

@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; }

Fabio Racobaldo _Herzum_
Community Champion
February 13, 2023

Hey @Руслан , you're welcome

Suggest an answer

Log in or Sign up to answer