badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: How can I customise Recent comments in the Side bar?

#94841

Hi,

Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code. The below code is based on the Current Custom Settings of your Site.

.widget_recent_comments ul li {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.widget_recent_comments ul li {
	font-size: 0
}
.widget_recent_comments ul li a {
	font-size: 17px;
	color: #3e9fa0;
}
.widget_recent_comments ul li a:hover {
	color: #1c6473;
}
.widget_recent_comments ul li span {
	font-size: 14px;
	-ms-flex-order: 1;
	order: 1;
	color: #757575;
}

Thanks