12-01-2013, 11:50 AM
12-01-2013, 12:02 PM
You mean the width of the box where the users are going to write comments?
12-01-2013, 12:05 PM
Yes, the width of the box where user can type text.
12-01-2013, 12:09 PM
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;
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;
12-01-2013, 12:31 PM
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