Problema con Tema Fortress
Hola a todos, primero aclaro que soy MUY nuevo en este tema, apenas hace unos días me involucré en crear un foro para estudiantes de mi universidad y estoy dando mis primeros pasos. Estoy teniendo un problema con el tema "Fortress" creado por Leandro M. La caja para redactar un mensaje se superpone con las opción que tiene debajo, acá les adjunto una foto para ver si me pueden dar una mano.
![[Image: Problema%2520con%2520Fortress.png]](https://lh4.googleusercontent.com/-Xelanfr4K50/UHdiF79hKmI/AAAAAAAADEA/Ox-im5QUBqU/s694/Problema%2520con%2520Fortress.png)
Les agradezco si pudieran darme una mano. Tengan en cuenta a aquellos que lo deseen que soy muy principiante, por ende necesitaría una explicación un poquito más detallada que aquel que tiene mucha experiencia. ¡Saludos!.
![[Image: Problema%2520con%2520Fortress.png]](https://lh4.googleusercontent.com/-Xelanfr4K50/UHdiF79hKmI/AAAAAAAADEA/Ox-im5QUBqU/s694/Problema%2520con%2520Fortress.png)
Les agradezco si pudieran darme una mano. Tengan en cuenta a aquellos que lo deseen que soy muy principiante, por ende necesitaría una explicación un poquito más detallada que aquel que tiene mucha experiencia. ¡Saludos!.
edita las plantillas newthread y newreply y aumenta los rows="" del textarea

Cluster, gracias por tu pronta respuesta
Estuve modificando ambos valores y nada sucede, todo sigue igual. Te copio y pego los valores que traía la plantilla por defecto:
<textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea>
Probé asignándole varios valores pero nada sucede. ¿Qué me recomendás? Gracias nuevamente
Estuve modificando ambos valores y nada sucede, todo sigue igual. Te copio y pego los valores que traía la plantilla por defecto:
<textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea>
Probé asignándole varios valores pero nada sucede. ¿Qué me recomendás? Gracias nuevamente
prueba con esto
http://www.mybb-es.com/hilo-1-6-2-fix-editor-textarea
Bender, lo acabo de probar y no me funcionó, se sigue viendo de la misma forma
qué estresante se volvió esto jeje. Gracias por la ayuda
Yo hice lo del tutorial ese y se soluciono. Solo tienes que jugar con las medidas 
Busca:
Y remplaza todo lo que tengas ahi por esto:
y esto:
Saludos
Busca:
// Determine the overall height and width - messy, but works
w = oldTextarea.getDimensions().width+"px";
if(!w || parseInt(w) < 400)
{
w = "400px";
}
if(this.options && this.options.height)
{
h = this.options.height;
}
else if(oldTextarea.offsetHeight)
{
h = oldTextarea.offsetHeight+"px";
}
else if(oldTextarea.clientHeight)
{
h = oldTextarea.clientHeight+"px";
}
else if(oldTextarea.style.height)
{
h = oldTextarea.style.height;
}
else
{
h = "400px";
}
this.editor.style.width = w;
this.editor.style.height = h; Y remplaza todo lo que tengas ahi por esto:
// Determine the overall height and width - messy, but works
w = "733px";
h = "255px";
this.editor.style.width = w;
this.editor.style.height = h; y esto:
textInput.style.height = parseInt(areaContainer.style.height)+"px";
textInput.style.width = parseInt(areaContainer.style.width)+"px"; por esto: textInput.style.height = "180px";
textInput.style.width = "722px"; Saludos
12 Oct, 2012, 9:45 am bender wrote:
prueba con estohttp://www.mybb-es.com/hilo-1-6-2-fix-editor-textarea
13 Oct, 2012, 9:22 am Ocras wrote:
Yo hice lo del tutorial ese y se soluciono. Solo tienes que jugar con las medidas
Busca:
// Determine the overall height and width - messy, but works w = oldTextarea.getDimensions().width+"px"; if(!w || parseInt(w) < 400) { w = "400px"; } if(this.options && this.options.height) { h = this.options.height; } else if(oldTextarea.offsetHeight) { h = oldTextarea.offsetHeight+"px"; } else if(oldTextarea.clientHeight) { h = oldTextarea.clientHeight+"px"; } else if(oldTextarea.style.height) { h = oldTextarea.style.height; } else { h = "400px"; } this.editor.style.width = w; this.editor.style.height = h;
Y remplaza todo lo que tengas ahi por esto:
// Determine the overall height and width - messy, but works w = "733px"; h = "255px"; this.editor.style.width = w; this.editor.style.height = h;
y esto:
por esto:textInput.style.height = parseInt(areaContainer.style.height)+"px"; textInput.style.width = parseInt(areaContainer.style.width)+"px";
textInput.style.height = "180px"; textInput.style.width = "722px";
Saludos
Solucionado, había una pequeña cosa que estaba haciendo mal