This is the community forum. For a developer response use the Client Area.
Follow us on Facebook, Twitter and YouTube!

comment box to be customized to have grey box and rounded corners
#1

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
Reply
#2

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;
}
Reply
#3

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?
Reply
#4

Yep, learning to use Firebug will be really useful.

Have you completed the interview?
Reply


Possibly Related Threads…
Thread / Author Replies Views Last Post
Last Post by kiyaaz
12-Aug-2020, 03:12 PM
Last Post by Vaiolet12
14-Sep-2017, 11:44 AM
Last Post by bahar
06-Dec-2015, 04:18 PM
Last Post by mariank
31-Dec-2013, 05:49 PM
Last Post by mariank
30-Dec-2013, 11:34 AM
Last Post by 2hands
28-Jun-2012, 02:10 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)