Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: Ashley S on August 13, 2011, 11:52:28 AM

Title: Quick Reply width
Post by: Ashley S on August 13, 2011, 11:52:28 AM
The quick-reply width on DSv4 is too wide.

Preview: > http://i.imgur.com/hCVDw.png

Thanks guys.
Title: Re: Quick Reply width
Post by: Illori on August 13, 2011, 11:57:00 AM
take a look at
Quote from: Dzonny on June 12, 2011, 03:51:48 PM
Hello there.

Try with this, in index.css change:

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



to this:

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


Also, if your theme isnt built for 2.0 (but it is for RC5) please read this topic with tip to update theme from RC5 to 2.0 version:
http://www.simplemachines.org/community/index.php?topic=437428.0

Regards.
Title: Re: Quick Reply width
Post by: Ashley S on August 13, 2011, 11:59:15 AM
Thank you so much, worked well ;).