Quick reply box is too big!

Migi

Phantom Thief Lv. N00B
Joined
May 25, 2010
Messages
11,865
Reaction score
352
FP$
4,482
Someone can tell me how to resize the width of my quick reply box at an SMF forum since it is way too big?

This is how it looks like:

wc00tf.webp

Thank you so much for whoever can help me! 😀
 
That's because your using the nulled version or the theme doesn't fit with your SMF version, which could cause a lot of bugs.

In index.css change: (CSS Folder)

Code:
#quickReplyOptions form textarea
{
    height: 100px;
    margin: 0.25em 0 1em 0;
}

To

Code:
#quickReplyOptions form textarea
{
    height: 100px;
    width: 635px;
    max-width: 100%;
    min-width: 100%;
    margin: 0.25em 0 1em 0;
}

Hope that helps 😉
 
How can it not help? 😛

Thank you, Ashley! Problem solved~
 
Back
Top Bottom