Not sure i understand what your trying to do, You want the background of the forms purple?
Yes, even where the text is..
try and add these lines to the end of style.css of your theme:
#commentblock .commenttext p { background-color: inherit; }
#commentblock .commenttext-admin p {background-color: inherit;}
this bit of code is probably the cause your white background
#content p{
background: #FFFFFF;
padding: 0px 0px 10px 0px;
margin: 0px;
line-height: 20px;
}
Also this should make your other form inputs purple.
#commentsform input{
background: #DAC5E2;
}
Thank you, now it’s working 🙂
(@principessas)
16 years ago
What of this is wrong when the background looks LIKE THIS on the text:
#commentblock {
width: 400px;
background: #ffffff;
color: #000000;
float: left;
padding: 10px 20px 0px 20px;
margin: 10px 0px 10px 0px;
border: 1px solid #FFFFFF;
}
ol#commentlist {
background: #ffffff;
padding: 5px 0px 5px 0px;
margin: 0px;
list-style-type: none;
}
.commentdate {
font-size: 12px;
padding-left: 0px;
}
#commentlist li p{
margin-bottom: 8px;
line-height: 20px;
padding: 0px;
}
.commentname {
color: ##F6CECE;
margin: 0px;
padding: 5px 5px 5px 0px;
}
.commentinfo{
clear: both;
}
.commenttext {
background: #DAC5E2;
clear: both;
margin: 5px 0px 20px 0px;
padding: 20px 10px 5px 10px;
width: 365px;
background: #DAC5E2;
border: 0px solid #000000;
}
.commenttext-admin {
clear: both;
margin: 5px 0px 20px 0px;
padding: 20px 10px 5px 10px;
width: 365px;
background: #FFE2FB;
border: 0px solid #000000;
}
#commentsformheader{
background: #DAC5E2;
padding-left: 0px;
}
#commentsform{
text-align: left;
margin: 0px;
padding: 0px;
}
#commentsform form{
text-align: left;
margin: 0px;
}
#commentsform p{
margin: 0px;
}
#commentsform form textarea{
background: #DAC5E2;
width: 99%;
}
p.comments_link img{
margin: 0px;
padding: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
background: #F6CECE;
}