Looking to vertically align your Divi button? Simply add the following CSS code to your Custom CSS box in Divi Theme Options:

.et_pb_row .et_pb_button {
position: relative;
top: 60px;
}



Want this change to only happen on desktop? Replace the above code with:

@media only screen and (min-width: 1024px) {
.et_pb_row .et_pb_button {
position: relative;
top: 60px;
}
}