Hello @dkance
Please share a screenshot of the element you want to change the spacing for.
Thread Starter
dkance
(@dkance)
Hi @aswingiri
Using the default template (first one) on the link below, I would like to reduce the distance between:
about – first name
first name – ultimate
And so on…
https://docs.ultimatemember.com/article/1454-change-um-profile-layout
I hope this example clarifies the request.
Thanks.
Regards.
@dkance Please try this CSS code:
.um-profile-body .um-field-label {
margin-bottom:0 !important;
padding-bottom: 0 !important;
}
You can add it to wp-admin > appearance > customize > Additional CSS
Thread Starter
dkance
(@dkance)
Hi @aswingiri
It worked great for reducing the inline distance between label and data.
I also want to reduce the distance between data and the next label.
I tried with margin-top
and padding-top
but it did not work.
Any hints?
Thanks again.
Regards.
@dkance Please try this:
.um-profile-body .um-field {
padding-top:0;
}
Thread Starter
dkance
(@dkance)
@aswingiri worked just fine!
Thanks!!