Posts: 23
Threads: 6
Joined: Apr 2013
11-Feb-2014, 12:46 AM
As I understood is conceived so:
1) Comment of the administrator: Window of Pink color.
2) Simple Comment: Window of Beige color.
3) Answer to the comment: Window of White color.
Why I have all comments of one color?
Attached Files
Thumbnail(s)
Posts: 2,894
Threads: 59
Joined: Jun 2010
The following CSS should do this.
Make sure to clear your web browser's cache after making the change.
Code:
.cmtx_comment_box_1 {
padding: 5px;
background-color: #FFF8DC;
border: 1px solid #828282;
overflow: hidden;
}
.cmtx_comment_box_2 {
padding: 5px;
background-color: #FFF8DC;
border: 1px solid #828282;
overflow: hidden;
}
.cmtx_reply_box_1 {
padding: 5px;
background-color: #FFFFFF;
border: 1px solid #828282;
overflow: hidden;
}
.cmtx_reply_box_2 {
padding: 5px;
background-color: #FFFFFF;
border: 1px solid #828282;
overflow: hidden;
}
.cmtx_admin_comment_box_1 {
background: url("../images/misc/admin.png") no-repeat;
background-position: 50% 8px;
padding: 5px;
background-color: #FFC0CB;
border: 1px solid #828282;
overflow: hidden;
}
.cmtx_admin_comment_box_2 {
background: url("../images/misc/admin.png") no-repeat;
background-position: 50% 8px;
padding: 5px;
background-color: #FFC0CB;
border: 1px solid #828282;
overflow: hidden;
}
.cmtx_admin_reply_box_1 {
background: url("../images/misc/admin.png") no-repeat;
background-position: 50% 8px;
padding: 5px;
background-color: #FFC0CB;
border: 1px solid #828282;
overflow: hidden;
}
.cmtx_admin_reply_box_2 {
background: url("../images/misc/admin.png") no-repeat;
background-position: 50% 8px;
padding: 5px;
background-color: #FFC0CB;
border: 1px solid #828282;
overflow: hidden;
}
Have
you completed
the interview ?
Posts: 23
Threads: 6
Joined: Apr 2013
Posts: 12
Threads: 4
Joined: Nov 2017
Hi. I am having the same problem, so where exactly do I put the code?
Thanks.
Posts: 2,894
Threads: 59
Joined: Jun 2010
In v3.x the styling for the comment box is:
Code:
.cmtx_comment_box {
position: relative;
padding: 5px;
line-height: 1;
margin-bottom: 20px;
padding-bottom: 20px;
}
In /upload/frontend/view/default/stylesheet/stylesheet.css
Have
you completed
the interview ?