Hi @LeeNicholo ! You are able to make Buttonizer buttons rectangular by using CSS, but we do not offer it in our default menu-styles list.
You may try the following CSS to your webpage to make all buttons rectangular, no need to upgrade to our Premium plan for just changing the style 🙂
/* Main menu button */
.buttonizer > .buttonizer-button {
width: 45px;
height: 56px;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
}
/* Menu items */
.buttonizer .buttonizer-button-list .buttonizer-button {
width: 35px !important;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
margin-left: -4px
}
If you want a specfic menu to be rectangular, you can use Custom Class
in the button settings and change .buttonizer
into something else and use that class for the custom class settings, but for that, you'll need Buttonizer Pro.
Let me know if this helps! 🙂