3DeerPrints Posted April 22, 2021 Share Posted April 22, 2021 Site URL: https://www.3deerprints.com/checkout/order-confirmed?oid=60813677306f3c77dfd87543&authCode=NjA4MTM2NzczMDZmM2M3N2RmZDg3NTQzOjIwMjEtMDQtMjJUMDg6NDA6MjIuMTQzWogUR6tGGN__ycS8-gf4sLgg3yg7eDWRt6V-e4u6jebQ Hello, I would like to change header text color on Order Confirmed page and size of the body so footer is a bit lower. Anybody can help me with that? Thanks! Link to comment
paul2009 Posted April 22, 2021 Share Posted April 22, 2021 8 minutes ago, 3DeerPrints said: I would like to change header text color on Order Confirmed page and size of the body so footer is a bit lower. When you say 'header text color' I assume you mean the "Order Confirmed" heading? If so, you can add the following CSS: #confirmed-page { h1 { color: #fff; } margin-bottom: 600px; } It sets the h1 heading to white (#fff) and adds 600 pixels of margin to the page. You can adjust these as necessary. Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional. Would you like your customers to be able to mark their favourite products in your Squarespace store? Link to comment
3DeerPrints Posted April 22, 2021 Author Share Posted April 22, 2021 My bad, I mean color of Menu navigation, Socials, Shopping Cart,...I want them i same beige like on elsewhere on page.. @paul2009 Link to comment
paul2009 Posted April 22, 2021 Share Posted April 22, 2021 Then you'll need to use body#order-confirmed to refer to the confirmation page, and then add the correct selector for each of the elements within the site header that you want to change. For example, to change the nav elements: body#order-confirmed { .header-nav-wrapper a { color: #e6c8a1; } } You can identify the selectors for the remaining items by using the browser tools. Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional. Would you like your customers to be able to mark their favourite products in your Squarespace store? Link to comment
3DeerPrints Posted April 22, 2021 Author Share Posted April 22, 2021 7 minutes ago, paul2009 said: Then you'll need to use body#order-confirmed to refer to the confirmation page, and then add the correct selector for each of the elements within the site header that you want to change. For example, to change the nav elements: body#order-confirmed { .header-nav-wrapper a { color: #e6c8a1; } } You can identify the selectors for the remaining items by using the browser tools. Thanks a lot! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.