AFZ Posted April 17, 2022 Share Posted April 17, 2022 Site URL: https://www.ariellazoelle.com/store/p/play-by-heart-signed Because I sell autographed books, when you hit Add to Cart on a product page, it pops up a form asking buyers to type in how they would like it personalized. The form Add to Cart button is black and I can't figure out how to change it to #A034FE to match the rest of the buttons on my website. I'd appreciate any help on how to make that change with CSS. Thanks! Link to comment
paul2009 Posted April 17, 2022 Share Posted April 17, 2022 2 hours ago, AFZ said: When you hit Add to Cart on a product page, it pops up a form asking buyers to type in how they would like it personalized. The form Add to Cart button is black and I can't figure out how to change it to #A034FE Have you tried: .sqs-async-form-content .form-wrapper input[type=submit] { background-color: #a034fe; } AFZ 1 About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. Link to comment
AFZ Posted April 18, 2022 Author Share Posted April 18, 2022 On 4/17/2022 at 3:27 PM, paul2009 said: Have you tried: .sqs-async-form-content .form-wrapper input[type=submit] { background-color: #a034fe; } Thank you, that worked perfectly! How would I get the font on that button to match the rest of my buttons? My normal buttons are Archivo Black, 400 weight, 1rem, text transform uppercase. But that button is in a really thin, lightweight font, which you can see them here when they're stacked . Thanks again! Link to comment
Solution paul2009 Posted April 18, 2022 Solution Share Posted April 18, 2022 3 minutes ago, AFZ said: How would I get the font on that button to match the rest of my buttons? My normal buttons are Archivo Black, 400 weight, 1rem, text transform uppercase. No problem! You should be able to add these settings (font family, weight, transform and so on) to the CSS above, just before the final curly bracket. For example: font-family: Archivo Black; font-weight: 400; text-transform: uppercase; line-height: 1.2em; letter-spacing: 0em; font-size: 1rem; Was this post informative? Please give feedback by clicking an icon below ⬇️ AFZ 1 About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. Link to comment
AFZ Posted April 24, 2022 Author Share Posted April 24, 2022 On 4/18/2022 at 5:12 PM, paul2009 said: No problem! You should be able to add these settings (font family, weight, transform and so on) to the CSS above, just before the final curly bracket. For example: font-family: Archivo Black; font-weight: 400; text-transform: uppercase; line-height: 1.2em; letter-spacing: 0em; font-size: 1rem; Was this post informative? Please give feedback by clicking an icon below ⬇️ Perfect, thank you! ❤️ paul2009 1 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