Customize
You can customize the appearances of the WhatsApp icon using CSS. Below you can find some useful snippets. Please note that you must be familiar with coding before trying these codes.
The steps are as follows:
Navigate to the theme directory and open Assets folder
Open
seedgrow-whatsapp-style.css
fileAdd your code
Click Save

Change the size of the icon
.wa__btn_popup .wa__btn_popup_icon {
height: 40px;
width: 40px;
}
.wa__btn_popup .wa__btn_popup_icon:before {
background-size: 20px auto;
-webkit-background-size: 20px auto;
-moz-background-size: 20px auto;
}
Last updated