Hello Paul
Footer Size
Please use this CSS to Template Options -> Custom Code -> Custom CSS
#sp-bottom{
padding: 0px !important;
}
This will remove the padding. Please adjust it according to your need.
Contact Us
Please use this CSS to Template Options -> Custom Code -> Custom JavaScript
jQuery(function($) {
$(".sppb-form-group textarea, .form-group textarea").on("focus", function() {
if ($(this).prev()[0].localName === "label") {
$(this).prev().addClass("focused");
}
if ($(this).prev()[0].localName === "span") {
$(this).parent().parent().prev().addClass("focused");
}
});
$(".sppb-form-group textarea, .form-group textarea").on("blur", function(e) {
if ($(this).val().length === 0) {
if ($(this).prev()[0].localName === "label") {
$(this).prev().removeClass("focused");
}
if ($(this).prev()[0].localName === "span") {
$(this).parent().parent().prev().removeClass("focused");
}
}
});
});
Sticky Header
Please use this CSS to Template Options -> Custom Code -> Custom CSS
.home-minimal #sp-header.header-sticky {
background-color: #001830 !important;
box-shadow: none !important;
}
Best regards