I can’t find it in your theme’s actual stylesheet, but according to Firebug you have:
.commentlist > li::before {
content: url(http://kowalchuks.net/wp-content/themes/funeralhome/style.css);
left: -21px;
position: absolute;
}
Change the content: url() line to the path of whatever image you’d like to use.
Thread Starter
ptooti
(@ptooti)
I’m using the “memorialize classic” child theme for twenty eleven
all I can see in the style.css is
/* Comments */
.commentlist > li.comment {
background: #EED8AE;
border: 2px solid #701112;
-moz-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
margin: 0 auto 1.625em;
padding: 1.625em;
position: relative;
width: auto;
}
.commentlist .avatar {
height: 39px;
left: 2.2em;
top: 2.2em;
width: 39px;
}
.commentlist li.comment .comment-meta {
line-height: 1.625em;
margin-left: 50px;
}
.commentlist li.comment .fn {
display: block;
}
.commentlist li.comment .comment-content {
margin: 1.625em 0 0;
}
.commentlist .comment-edit-link {
display: none;
}
.commentlist > li::before,
.commentlist > li.bypostauthor::before {
content: ”;
}
.commentlist .reply {
display: none;
}
/* Post author highlighting */
.commentlist > li.bypostauthor {
color: #444;
}
.commentlist > li.bypostauthor .comment-meta {
color: #666;
}
.commentlist > li.bypostauthor:before {
content: none;
}
/* Post Author threaded comments */
.commentlist .children > li.bypostauthor {
background: #EED8AE;
border-color: #701112;
}
.commentlist .children > li.bypostauthor > article,
.commentlist .children > li.bypostauthor > article .comment-meta {
color: #666;
}
}
I definitely see it on lines 1973 to 1977 of your stylesheet. On line 1974 of your stylesheet you have content: url(). That line appears to be causing a problem. If you fill in the path to the image you’d like to use between the parentheses, I think your problem will be fixed.
Thread Starter
ptooti
(@ptooti)
thanks so much stephencottontail solved my problem Cheers!