To make Header button zoom on hover like header button on this site.
You can use this code to Custom CSS.
header#header a.btn:hover {
transform: scale(1.5);
transition: all 0.3s ease;
}
header#header a.btn {
transition: all 0.3s ease;
}
You can adjust 1.5 in the code.


