tnc05   11 Oct, 2012, 5:20 pm
#1
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!.
Cluster   11 Oct, 2012, 8:02 pm
#2
edita las plantillas newthread y newreply y aumenta los rows="" del textarea

Smile
tnc05   12 Oct, 2012, 9:10 am
#3
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   12 Oct, 2012, 9:45 am
#4
prueba con esto Smile http://www.mybb-es.com/hilo-1-6-2-fix-editor-textarea
tnc05   12 Oct, 2012, 10:44 am
#5
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
Bewan   13 Oct, 2012, 9:22 am
#6
Yo hice lo del tutorial ese y se soluciono. Solo tienes que jugar con las medidas Smile

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
tnc05   13 Oct, 2012, 9:39 am
#7
(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:
// 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



Solucionado, había una pequeña cosa que estaba haciendo mal Smile Muchas gracias amigo!
  
Powered By MyBB, © 2002-2025 MyBB Group.
Made with by Curves UI.