Posts: 10
Threads: 8
Joined: May 2013
Is there a way that the comment box would be customized to have grey box and rounded corners
please see screenshot:
http://screencast.com/t/KcQNbCjkIrw
Posts: 116
Threads: 14
Joined: Aug 2011
I don't know about the corners. Color is changed like this.
PS. Firebug add-on on a Firefox can help you with CSS.
lp
stariocek
.cmtx_comment_box_1 {
background-color: #FFF8DC;
border: 1px solid #828282;
overflow: hidden;
padding: 5px;
}
to
.cmtx_comment_box_1 {
background-color: #FFF8DC;
border: 3px solid #777777;
overflow: hidden;
padding: 5px;
}
Posts: 2,904
Threads: 59
Joined: Jun 2010
If it's the comment form field that you want to change then it's this part:
Code:
.cmtx_comment_field {
float: left;
width: 350px;
height: 120px;
}
Your comment field already appears to have rounded corners.
You didn't say which part of the comment field you want to be grey. If it's the font color then you would change it to this:
Code:
.cmtx_comment_field {
float: left;
width: 350px;
height: 120px;
color: grey;
}
If it's the background color then you would change it to this:
Code:
.cmtx_comment_field {
float: left;
width: 350px;
height: 120px;
background-color: grey;
}
If it's the border color then you would change it to this:
Code:
.cmtx_comment_field {
float: left;
width: 350px;
height: 120px;
border-color: grey;
}
Have
you completed
the interview?
Posts: 2,904
Threads: 59
Joined: Jun 2010
Yep, learning to use
Firebug will be really useful.
Have
you completed
the interview?