ssjewelry Posted June 25, 2023 Posted June 25, 2023 Would anyone happen to know how to customize the button like the one in this site? There's an existing underline on the button and when you hover over it, the underline disappears. I'd like to create the same effect with CSS!
tuanphan Posted June 25, 2023 Posted June 25, 2023 (edited) We can use CSS code to do this. Can you share link your site? We can check & adjust code easier Edited June 25, 2023 by tuanphan 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!)
ssjewelry Posted June 25, 2023 Author Posted June 25, 2023 https://www.susiesaltzman.com/ 😀 antovicodg 1
tuanphan Posted June 25, 2023 Posted June 25, 2023 1 hour ago, ssjewelry said: https://www.susiesaltzman.com/ 😀 I don't see button on homepage. Which page are you referring to? 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!)
ssjewelry Posted June 25, 2023 Author Posted June 25, 2023 You can check about page - there's a get in touch button 🙂 But would like to have the effect across all buttons on the site except add to cart buttons
tuanphan Posted June 26, 2023 Posted June 26, 2023 On 6/25/2023 at 2:36 PM, ssjewelry said: https://www.susiesaltzman.com/ 😀 Add to Design > Custom CSS /* Button underline */ a.sqs-block-button-element--small.sqs-button-element--tertiary.sqs-block-button-element:after { content: ""; background-color: white; position: absolute; left: 0; width: 100%; height: 1px; bottom: 0; transition: all 0.3s ease; } a.sqs-block-button-element--small.sqs-button-element--tertiary.sqs-block-button-element { position: relative; } a.sqs-block-button-element--small.sqs-button-element--tertiary.sqs-block-button-element:hover:after { width: 0; transition: all 0.3s ease; } antovicodg 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!)
ssjewelry Posted June 27, 2023 Author Posted June 27, 2023 Would it be possible to have the underline disappear from both sides? Almost like the disappearance converges into the middle 🙂 THANK YOU!
Solution tuanphan Posted June 27, 2023 Solution Posted June 27, 2023 12 minutes ago, ssjewelry said: Would it be possible to have the underline disappear from both sides? Almost like the disappearance converges into the middle 🙂 THANK YOU! Use this new code a.sqs-block-button-element--small.sqs-button-element--tertiary.sqs-block-button-element:after { content: ""; background-color: #fff; position: absolute; left: 0; width: 100%; height: 1px; bottom: 0; transition: all .3s ease; transform: scale(1); } a.sqs-block-button-element--small.sqs-button-element--tertiary.sqs-block-button-element { position: relative; } a.sqs-block-button-element--small.sqs-button-element--tertiary.sqs-block-button-element:hover:after { transform:scale(0); transition: all .3s ease; } 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!)
ssjewelry Posted June 27, 2023 Author Posted June 27, 2023 YAY! This is perfect! Thank you SO SO much! 😁🤩
ssjewelry Posted June 30, 2023 Author Posted June 30, 2023 Hi @tuanphan! Would you know how to shorten the button underline so it's the same length as the text? 🙂https://www.susiesaltzman.com/new-home
tuanphan Posted July 1, 2023 Posted July 1, 2023 16 hours ago, ssjewelry said: Hi @tuanphan! Would you know how to shorten the button underline so it's the same length as the text? 🙂https://www.susiesaltzman.com/new-home Add this CSS under a.sqs-block-button-element--small.sqs-button-element--tertiary.sqs-block-button-element { padding-left: 0 !important; padding-right: 0 !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!)
ssjewelry Posted July 4, 2023 Author Posted July 4, 2023 Hello again @tuanphan! I created a "medium" version of the button so I can have it in a different color, but I'm not seeing the underline effect. Can you kindly help please? 🙂 https://www.susiesaltzman.com/ Here is the code I used: Quote /* BUTTON UNDERLINE */ a.sqs-block-button-element--medium.sqs-button-element--tertiary.sqs-block-button-element:after { content: ""; background-color: #50332e; position: absolute; left: 0; width: 100%; height: 1px; bottom: 0; transition: all .3s ease; transform: scalex(1); } a.sqs-block-button-element--medium.sqs-button-element--tertiary.sqs-block-button-element { position: relative; } a.sqs-block-button-element--medium.sqs-button-element--tertiary.sqs-block-button-element:hover:after { transform:scalex(0); transition: all .3s ease; } a.sqs-block-button-element-medium.sqs-button-element--tertiary.sqs-block-button-element { padding-left: 0 !important; padding-right: 0 !important; }
tuanphan Posted July 4, 2023 Posted July 4, 2023 (edited) 6 hours ago, ssjewelry said: Hello again @tuanphan! I created a "medium" version of the button so I can have it in a different color, but I'm not seeing the underline effect. Can you kindly help please? 🙂 https://www.susiesaltzman.com/ Here is the code I used: This code for Medium button but use Tertiary style But your button uses Primary Style So if you want to use that code, you need to change button to Tertiary style OR If you want to use Primary style, you need to change "tertiary" in the code to "primary" Edited July 4, 2023 by tuanphan 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!)
Doogle Posted Thursday at 06:20 PM Posted Thursday at 06:20 PM For whatever reason, nothing changes when I put in the code. Could you help me fix this?
tuanphan Posted yesterday at 03:29 AM Posted yesterday at 03:29 AM On 11/29/2024 at 1:20 AM, Doogle said: For whatever reason, nothing changes when I put in the code. Could you help me fix this? Do you have link to page where you use button? 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!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment