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...

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.
[Imagen: 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 Smile

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 Smile
Bender, lo acabo de probar y no me funcionó, se sigue viendo de la misma forma Sad qué estresante se volvió esto jeje. Gracias por la ayuda Smile
Yo hice lo del tutorial ese y se soluciono. Solo tienes que jugar con las medidas Smile

Busca:
Código PHP:
// Determine the overall height and width - messy, but works
        
oldTextarea.getDimensions().width+"px";
        if(!
|| parseInt(w) < 400)
        {
            
"400px";
        }
        if(
this.options && this.options.height)
        {
            
this.options.height;
        }
        else if(
oldTextarea.offsetHeight)
        {
            
oldTextarea.offsetHeight+"px";
        }
        else if(
oldTextarea.clientHeight)
        {
            
oldTextarea.clientHeight+"px";
        }
        else if(
oldTextarea.style.height)
        {
            
oldTextarea.style.height;
        }
        else
        {
            
"400px";
        }
        
this.editor.style.width w;
        
this.editor.style.height h

Y remplaza todo lo que tengas ahi por esto:
Código PHP:
// Determine the overall height and width - messy, but works
        
"733px";
        
"255px";
        
this.editor.style.width w;
        
this.editor.style.height h

y esto:
Código PHP:
textInput.style.height parseInt(areaContainer.style.height)+"px";
        
textInput.style.width parseInt(areaContainer.style.width)+"px"
por esto:
Código PHP:
        textInput.style.height "180px";
                
textInput.style.width "722px"

Saludos
(12 Oct, 2012, 9:45 am)bender escribió: prueba con esto Smile http://www.mybb-es.com/hilo-1-6-2-fix-editor-textarea

(13 Oct, 2012, 9:22 am)Ocras escribió: Yo hice lo del tutorial ese y se soluciono. Solo tienes que jugar con las medidas Smile

Busca:
Código PHP:
// Determine the overall height and width - messy, but works
        
oldTextarea.getDimensions().width+"px";
        if(!
|| parseInt(w) < 400)
        {
            
"400px";
        }
        if(
this.options && this.options.height)
        {
            
this.options.height;
        }
        else if(
oldTextarea.offsetHeight)
        {
            
oldTextarea.offsetHeight+"px";
        }
        else if(
oldTextarea.clientHeight)
        {
            
oldTextarea.clientHeight+"px";
        }
        else if(
oldTextarea.style.height)
        {
            
oldTextarea.style.height;
        }
        else
        {
            
"400px";
        }
        
this.editor.style.width w;
        
this.editor.style.height h

Y remplaza todo lo que tengas ahi por esto:
Código PHP:
// Determine the overall height and width - messy, but works
        
"733px";
        
"255px";
        
this.editor.style.width w;
        
this.editor.style.height h

y esto:
Código PHP:
textInput.style.height parseInt(areaContainer.style.height)+"px";
        
textInput.style.width parseInt(areaContainer.style.width)+"px"
por esto:
Código PHP:
        textInput.style.height "180px";
                
textInput.style.width "722px"

Saludos



Solucionado, había una pequeña cosa que estaba haciendo mal Smile Muchas gracias amigo!