Hello Alavaro,
Thanks for writing in!
1.) The social icons in the footer when using Renew stack are using built-in CSS that changes the colors on hover. The three icons is using this CSS code:
.x-social-global a:hover.facebook {
background-color: #3b5998;
}
.x-social-global a:hover.twitter {
background-color: #00abf0;
}
.x-social-global a:hover.instagram {
background-color: #3f729b;
}
Based from this code, you will need to add a class for your email icon and then you create your own hover CSS for the email icon.
<a href="mailto:email@address.com" class="email"><i class="x-icon x-icon-envelope" data-x-icon="" aria-hidden="true"></i></a>
so that you can have your own hover CSS like this:
.x-social-global a:hover.email {
background-color: #3f729b;
}
2.) Disabling the hand cursor will just be adding a custom CSS with the pointer-events
property set to none.
Feel free to make adjustments as you need. Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:
Please note that custom coding is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third-party developer.
Best Regards.