MN Forum

Full Version: Comment box width
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey!

Where can I edit the blog comment box width because I have been looking everywhere and can't seem to find it?
You mean the width of the box where the users are going to write comments?
Yes, the width of the box where user can type text.
For the box width add in the style.css the following
Look for:

.blog_comment {
padding: 10px 5px;
margin: 10px auto;
width: 600px;
background: #EFEFEF;
border: solid 1px #919191;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
color: dimGray;

and after
color:dimGray;
add
width: 660px;

-FOR THE TEXT BOX-

textarea {
border: solid 1px #BBB;
font-size: 12px;
color: #333;
min-width: 587px;
padding: 2px 4px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}

after
-webkit-border radius: 4px;
add
width: 650px;
Thanks for the help, I am 100% sure that I looked for that in both style.css and blog.css but didn't manage to find them earlier, found them now somehow Big Grin