Integrate User Pro with Sahifa Theme Comments

  • Open up wp_list_comments.php file from dashboard>appearance>editor or from wp-contents/themes/sahifa/includes
  • Find the line :

.comment-avatar {
overflow:hidden;
width:45px;
height:45px;
margin:0 10px 5px -30px;
background: white;
padding: 2px;
-moz-border-radius: 1px;
-webkit-border-radius: 1px;
box-shadow: 0 0 3px #B5B5B5;
-moz-box-shadow: 0 0 3px #b5b5b5;
-webkit-box-shadow: 0 0 3px #B5B5B5;
float:left;
}

  • Replace with

.comment-avatar {
overflow:hidden;
width:60px;
height:60px;
margin:0 10px 5px -30px;
background: white;
padding: none;
-moz-border-radius: 1px;
-webkit-border-radius: 1px;
box-shadow: 0 0 3px #B5B5B5;
-moz-box-shadow: 0 0 3px #b5b5b5;
-webkit-box-shadow: 0 0 3px #B5B5B5;
float:left;
}
.comment-date {
float: right;
padding-top: 5px;
}
.comment-edit {
float: right;
}

Was this article helpful?

Related Articles

Leave A Comment?