Site URL: https://plums-flounder-b2ml.squarespace.com/contact
New to squarespace here - just looking for a simple fix to finish up
I have inserted some css to make the buttons on body of the pages and the one in my footer show with customized effect but I can not figure out how to do this for the button in the header or the Send button on the form. Any ideas?
Also I have the links in the main navigation change color on hover but have not been able to to do this site wide?
Here is the button css I have inserted:
.sqs-block-button-element--small {
border-radius: 8px;
padding: 15px;
box-shadow: 9px 9px 5px hsl(279, 81%, 29%);
}
.sqs-block-button-element--small:hover {
background-color: darkred;
color: white;
box-shadow: 4px 4px 1px hsl(279, 81%, 29%);
}
.sqs-block-button-element--medium {
border-radius: 8px;
padding: 15px;
box-shadow: 9px 9px 5px hsl(279, 81%, 29%);
}
.sqs-block-button-element--medium:hover {
background-color: grey;
color: white;
box-shadow: 4px 4px 1px hsl(279, 81%, 29%);
}