Guest Posted May 6, 2021 Share Posted May 6, 2021 Site URL: https://www.immyhowardmillinery.com/bows/made-to-order-option Hi all, I am looking to move my 'Add to Cart' and 'Select style' buttons/drop down options on my squarespace page so they sit above the product descriptions, instead of underneath them. Is there any way I can do this? I am very new to custom CSS so really sorry if I'm missing something obvious! Cheers Immy Link to comment
Solution tuanphan Posted May 7, 2021 Solution Share Posted May 7, 2021 On 5/6/2021 at 3:24 PM, ImmyH said: Site URL: https://www.immyhowardmillinery.com/bows/made-to-order-option Hi all, I am looking to move my 'Add to Cart' and 'Select style' buttons/drop down options on my squarespace page so they sit above the product descriptions, instead of underneath them. Is there any way I can do this? I am very new to custom CSS so really sorry if I'm missing something obvious! Cheers Immy Add to Design > Custom CSS /* product order */ div#productDetails { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .product-excerpt { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Guest Posted May 10, 2021 Share Posted May 10, 2021 On 5/7/2021 at 1:22 PM, tuanphan said: Add to Design > Custom CSS /* product order */ div#productDetails { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .product-excerpt { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5; } Hi Tuanphan, Thank you SO much for this- it has worked a treat! I can't tell you how much I appreciate your help! That is amazing, thank you ever so much. Cheers Immy Link to comment
tuanphan Posted May 12, 2021 Share Posted May 12, 2021 On 5/10/2021 at 2:28 PM, ImmyH said: Hi Tuanphan, Thank you SO much for this- it has worked a treat! I can't tell you how much I appreciate your help! That is amazing, thank you ever so much. Cheers Immy Do you need to fix these? 1. (Mobile-Footer) Make about blog side by side? 2. (Tablet-Footer) Add back to top link? 3. (Tablet-Header) Make site title one line? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Guest Posted May 12, 2021 Share Posted May 12, 2021 3 hours ago, tuanphan said: Do you need to fix these? 1. (Mobile-Footer) Make about blog side by side? 2. (Tablet-Footer) Add back to top link? 3. (Tablet-Header) Make site title one line? Hi Tuanphan Thank you for your message, I would very much like to fix these issues if possible please, yes! Thank you very much. Please let me know if there is any info you need from me. Cheers Immy Link to comment
tuanphan Posted May 14, 2021 Share Posted May 14, 2021 On 5/12/2021 at 2:03 PM, ImmyH said: Hi Tuanphan Thank you for your message, I would very much like to fix these issues if possible please, yes! Thank you very much. Please let me know if there is any info you need from me. Cheers Immy Add to Design > Custom CSS /* tablet issues */ @media screen and (max-width:900px) and (min-width:641px) { /* site title */ #header #siteTitleWrapper, #header #siteTitle { width: 70%; } /* back to top */ .nav-wrapper.back-to-top-nav { display: block; text-align: center; } } /* footer mobile */ @media screen and (max-width:640px) { nav#secondaryNavigation { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } nav#secondaryNavigation>div:first-child { margin-right: 20px !important; } } With back to top button, s Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Guest Posted May 14, 2021 Share Posted May 14, 2021 4 hours ago, tuanphan said: Add to Design > Custom CSS /* tablet issues */ @media screen and (max-width:900px) and (min-width:641px) { /* site title */ #header #siteTitleWrapper, #header #siteTitle { width: 70%; } /* back to top */ .nav-wrapper.back-to-top-nav { display: block; text-align: center; } } /* footer mobile */ @media screen and (max-width:640px) { nav#secondaryNavigation { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } nav#secondaryNavigation>div:first-child { margin-right: 20px !important; } } With back to top button, s Hi Tuanphan, Thank you once more! This is amazing and has worked absolutely perfectly. Thank you! Very much appreciated. Immy 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