Thanks for your reply! I have a “mybutton.css” file in the Snippets folder. Inside the file is the following:
.mybutton {
background-color: #FFE3D4;
border: 2px solid #FCB9AA;
color: #808080;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 4px 5px;
cursor: pointer;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 2px 10px 0 rgba(0,0,0,0.19);
width: 125px;
}
.mybutton:hover {
background-color: #E67C73;
color: white;
border: 2px solid #FCB9AA;
}
So now that I have the custom class created inside the snippet, I should be able to put the custom class name (.mybutton) into the Button Maker. Right? Even when I do enter the class name, it still won’t style correctly. The button does work, just doesn’t look like I want it to.