How to change style of Submit button
-
Hello, I’m a new user of WP and CF7, and also just starting to learn HTML and CSS. I’ve tried to search for a way to modify the appearance of the Submit button, so far unsuccessfully. I’m also using the Nirvana theme. Where would I insert some style code, such as the one below, so I can get the style to apply? The page I’m working on is at https://www.svemfg.com/WP_Site/?page_id=66 . The Submit button style I’m thinking of using is below. Thank you very much for any and all help!
David
‘
<style type=”text/css”>
.styled-button-1 {
-webkit-box-shadow:rgba(0,0,0,0.2) 0 1px 0 0;
-moz-box-shadow:rgba(0,0,0,0.2) 0 1px 0 0;
box-shadow:rgba(0,0,0,0.2) 0 1px 0 0;
color:#333;
background-color:#FA2;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border:none;
font-family:’Helvetica Neue’,Arial,sans-serif;
font-size:16px;
font-weight:700;
height:32px;
padding:4px 16px;
text-shadow:#FE6 0 1px 0
}
</style>
‘
- The topic ‘How to change style of Submit button’ is closed to new replies.