How to limit the size of a text-area in Confluence?

Daniel Fröhling
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 11, 2011

Hello,

at the moment I try to make a new template. In this template there are e.g. text-fields which can be filled out by the user when he adds a new field and selects this template.

The big problem is, that I don t know what to do that a text field stays the same size i want it to stay even if a user enters lots of words. So far I ve tried to solve this problem with @var@ , the text-data macro (width=e.g 300px, height=e.g 500} macro, the section macro and a combination of all of them.

Is there a simple command I can use so the text-area stays the same (and do not change in size any more)?

Is there also a way for a automatic text-breaks?

Many Thanks for your help

Daniel

2 answers

0 votes
David Dube
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 6, 2011

Looks like you're using the Scaffolding Plugin... does the following not work?

{text-data:instanceName|width=300px|height=500px|type=area} {text-data}

0 votes
David at David Simpson Apps
Atlassian Partner
August 11, 2011

Wrap your form in a div to act as a CSS selector:

<div class="forcedSize"></div>

Then add an inline style, e.g.

<style>
#com-atlassian-confluence .forcedSize textarea {
width: 300px;
height: 500px;
}
</style>

This should fix up all children of div.forcedSize to be a specific dimension

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events