Resize Comment Box ?


Author Message
Chi

Posted: 4/28/2012
Quote message 

Hey does anybody know how to resize the comment box or the specific code to add ?

As I find that the Artisteer comment box on my websites is the length of the post sheet . I would like to hone in the dimensions to 300 pixel width instead of 700 pixels wide.
 
speedyp

Posted: 4/28/2012
Quote message 

To change the width of the comment form add this to your style.css

#comment {
max-width: 300px !important;
}

 
chi

Posted: 4/28/2012
Quote message 

Hey thanks heaps for that it works in the comment field.

Now I have to resize the name, email and website fields to 300pix. As the code you provided only does the comment text field area only.

Cheers


 
biggestblessings

Posted: 9/23/2012
Quote message 

*bump*

Curious about the same thing...
 
techtom

Posted: 9/24/2012
Quote message 

does adjust #respond input resize those fields?
 
Abland

Posted: 9/24/2012
Quote message 

Hi, chi,

Just finished doing this for a project:
#commentform input {

width: 300px;
display: block;
}

 
George

Posted: 4/10/2014
Quote message 

In 4.2
the following makes the entire form the same size.

#commentform {

max-width: 300px !important;
display:block;

}

using the css from the above posts caused the form to align differently for the comment box and the author, and email boxes.