GSC Posted December 17, 2020 Share Posted December 17, 2020 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%); } Link to comment
tuanphan Posted December 21, 2020 Share Posted December 21, 2020 Use this code .sqs-block-button-element--small, a.btn, input.button { border-radius: 8px; padding: 15px; box-shadow: 9px 9px 5px #5c0e86 } .sqs-block-button-element--small:hover, a.btn, input.button { background-color: darkred; color: #fff; box-shadow: 4px 4px 1px #5c0e86 } .sqs-block-button-element--medium, a.btn { border-radius: 8px; padding: 15px; box-shadow: 9px 9px 5px #5c0e86 } .sqs-block-button-element--medium:hover, a.btn { background-color: grey; color: #fff; box-shadow: 4px 4px 1px #5c0e86 } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
GSC Posted December 29, 2020 Author Share Posted December 29, 2020 Thanks So much! Really appreciate the effort! You are great!! Link to comment
garlandehaney Posted October 3, 2023 Share Posted October 3, 2023 @tuanphan I'm trying to do similar thing with my form button (see link below). I'd like to have the SUBMIT button change colour on hover. Any help would be greatly appreciated! https://mc-design.squarespace.com/contact-us pw: ghdesign Link to comment
tuanphan Posted October 7, 2023 Share Posted October 7, 2023 On 10/4/2023 at 12:41 AM, garlandehaney said: @tuanphan I'm trying to do similar thing with my form button (see link below). I'd like to have the SUBMIT button change colour on hover. Any help would be greatly appreciated! https://mc-design.squarespace.com/contact-us pw: ghdesign Use this CSS code #siteWrapper #block-yui_3_17_2_1_1696453832419_14975 .form-button-wrapper .button:hover { background-color: white !important; color: #f1f !important; } garlandehaney 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
garlandehaney Posted October 10, 2023 Share Posted October 10, 2023 That worked perfectly, thank you so much! Link to comment
DesignPearl Posted October 15, 2023 Share Posted October 15, 2023 Can you pease help me with code to change JUST the hover color of the text in the navigation button? Link to comment
tuanphan Posted October 17, 2023 Share Posted October 17, 2023 On 10/16/2023 at 5:58 AM, DesignPearl said: Can you pease help me with code to change JUST the hover color of the text in the navigation button? You mean navigation item or header button? If header button, use this code a.btn:hover { color: #f1f !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
DesignPearl Posted October 18, 2023 Share Posted October 18, 2023 Thank you @tuanphan 😁 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment