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: Newscard Custom Post Type Single

#77979

Ok then please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS Code.

.site-content .site-main .hentry {
	background-color: #ffffff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	padding: 25px;
}
.site-content .site-main .post-col .hentry {
	padding: 15px 15px 7px;
	margin-bottom: 14px;
	min-height: calc(100% - 14px);
}
.site-content .site-main .post-col .hentry .post-featured-image .entry-meta.category-meta {
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	margin-bottom: 10px;
}
.site-content .site-main .post-col .hentry .entry-content p {
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.site-content .site-main .hentry {
		padding: 15px;
	}
}

For the Custom Post type Categories, First you need to register the Custom Taxonomies then you have to print/render the those each array of custom taxonomies rendered by wp_get_post_terms( post ID, Taxomony Name );

Thanks