How to Remove Comments, Adjust Style of Jetpack Carousel
How to Remove the Comment Form from the Jetpack Carousel Screen
Add following to custom CSS
/* Center the caption. */
.jp-carousel-info h2 {
text-align: center !important;
}
/* Hide comment form header. */
.jp-carousel-left-column-wrapper {
display: none !important;
}
/* Center the metabox. */
.jp-carousel-image-meta {
float: none !important;
margin-left: auto;
margin-right: auto;
}
/* Move close icon to the right. */
.jp-carousel-transitions .jp-carousel-close-hint {
position: fixed;
text-align: right;
right: 12px;
width: auto;
}