Posts: 495
Threads: 170
Joined: Dec 2012
Reputation:
10
Hey!
Where can I edit the blog comment box width because I have been looking everywhere and can't seem to find it?
Posts: 15
Threads: 1
Joined: Apr 2013
Reputation:
1
You mean the width of the box where the users are going to write comments?
Posts: 495
Threads: 170
Joined: Dec 2012
Reputation:
10
Yes, the width of the box where user can type text.
Posts: 15
Threads: 1
Joined: Apr 2013
Reputation:
1
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;