How to reduce the content padding on single portfolio:
To set content area padding top/bottom spacing on “Standard” template of single portfolio:
Please paste the custom css code to “Appearance > Customize : Additional CSS”:
@media (min-width: 768px) {
/*Desktop*/
.single-portfolio-fullwidth .gallery-post-des { padding-top: 60px; margin-bottom: 0px; }
}
@media (max-width: 767px) {
/*Mobile*/
.responsive-ux.single-portfolio-fullwidth .gallery-post-des { padding-top: 30px; margin-bottom: 0px; }
}
You could reduce or increase the value, the margin-bottom can be set negative.