Hi, How do you alter the size of the main button. i can edit the size of the icons but not the button its self

    7 days later

    Hi Fruity_Vruity ,

    Welcome to the forums! 🥳

    You can use a custom CSS to change the size of the buttons.

    Copy and paste this into WordPress' Additional CSS in Customize:

    /* GROUP BUTTON */
    .buttonizer .buttonizer-button.buttonizer-head {
    	width: 56px;
    	height: 56px
    }
    
    /* SUB BUTTONS */
    .buttonizer .buttonizer-button-list .buttonizer-button 
    {
    	width: 40px !important;
    	height: 40px !important;
    }

    10 months later