Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: GossamerSolid on June 27, 2011, 04:56:41 PM

Title: Help find an area of posts in the CSS
Post by: GossamerSolid on June 27, 2011, 04:56:41 PM
Hey guys, I recently downloading a theme and I'm having an issue with it. When you make a new topic/post, the actual body area where you enter the text is extending really far right.

I've uploaded a screenshot to this post.

Can somebody please help me find out what that text area's css div would be called or how I can go about accurately finding it.
Title: Re: Help find an area of posts in the CSS
Post by: Illori on June 27, 2011, 05:02:20 PM
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: Help find an area of posts in the CSS
Post by: GossamerSolid on June 27, 2011, 05:20:50 PM
Much appreciated!