Page 1 of 1

[solved] CGFeedback template question

Posted: Fri Oct 02, 2009 9:39 pm
by geepers
I'd like to shorten the 'Additional Comments:' field in the 'Comment Form Template' for CGFeedback 1.0.2

the problem i'm running into, is all that is listed is:

Code: Select all

{$input_comment}
which generates the following html:

Code: Select all

<textarea name="mdc880comment" cols="80" rows="15"></textarea>
The value that i wish to override is the 'cols="80"'

Where/How can i do this?

Re: CGFeedback template question

Posted: Wed Oct 14, 2009 1:35 pm
by mwyrebski
I couldn't find it either. As a workaround I added this lines to my default style sheet.

Code: Select all


.cgfeedback_addcoment  .col70 textarea {
width:280px;
}


[solved] CGFeedback template question

Posted: Wed Oct 14, 2009 4:53 pm
by geepers
thanks - that did the trick for now, but sure would like to have some control over the html output on form elements directly in some way.

Re: [solved] CGFeedback template question

Posted: Sun Sep 25, 2011 7:41 am
by tpsvca
try this:

Code: Select all

{$input_comment|replace:'80':'55'}