5
Hello,
For the simple textareas, open the file called /xoops/class/xoopsform/formtextarea.php.
Find this lines :
Quote:
$this->_rows = intval($rows);
$this->_cols = intval($cols);
and replace =intval(...) with the specific size you want to give it.
For the dhtml textareas, opne the file calld /xoops/class/xoopsform/formdhtmltextarea.php.
Find this (very long) line :
Quote:
inside this line, find this :
Quote:
cols='".$this->getCols()."' rows='".$this->getRows()
replace $this->getCols() with your specific size and replace $this->getRows() with your specific size too.
Take care, next time you will upgrade your XOOPS version, you will lost this (in fact you will have to reapply it).
BUT the best idea is to modify your theme to solve this "problem".bye,
Hervé