Recent updates have caused some extra bottom padding to show in the footer social follow icons.


To fix this, find this section of CSS:


.ds-footer-social.et_pb_social_media_follow li a.icon {
    width: 40px;
    height: 40px;
    padding: 3px;
    border-radius: 0;
    background: #fee1e1 !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}



And replace it with this:


.ds-footer-social.et_pb_social_media_follow li a.icon {
    /*width: 40px;*/ /*Removed 20/02/18*/
    /*height: 40px;*/ /*Removed 20/02/18*/
    padding: 3px;
    border-radius: 0;
    background: #fee1e1 !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}



You will need to update your colours if you changed them from the theme colours.


Applies to V1.2