You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi folks,
I continue to build a Confluence form using Confiforms, and I am now having issues adjusting the size of the Text Area box. I am trying to use width:1000px, but it is not working.
I have tried a comment box, with the same result.
Does anyone know if you can force the width of a Text Area or Comment box?
Thanks
Hey Davin,
Unfortunately, !important; did not may any difference. Perhaps I am SOL?
Thanks
Hi
If you look at the CSS defined by Atlassian then you will see that there is also a
max-width
attribute defined.
So, you need to set both (width and max-width), when you want to override the width of a field.
Alex
Hi Alex,
I have a readonly field where that basically pre-loads data from another form's textarea field with more than 2-3 lines.
The problem I am facing is the texts are going beyond the visible area of the read only field hence I tried to use css to customize the field size so that the users dont need to scroll to read the words beyond the visible area, using below but the words are still not getting word wrapped and the users have to basically scroll:
height:150px; width:200px !important; max-width:200px !important; word-wrap: break-word !important
Please help me :(
Try setting min-width attribute as well. There is plenty of options that you can do with CSS - I suggest to have a look at CSS spec to see what is possible
Hi Alex,
I am unable to make the read only field word wrap whatever I try :( Please let me know where/how I should find the css spec?