beyond_electro Posted August 23 Share Posted August 23 Hello, I would like to move the title, email input field and submit button down to make space for the close X box so they are not overlapping as pictured (on iphone XS). Please can you share the code to fix this? https://www.nicolacross.com/ Thank you kindly in advance. Link to comment
Lesum Posted August 23 Share Posted August 23 (edited) @beyond_electro Hi! Try adding this code: @media screen and (max-width: 767px) { .sqs-slide-wrapper[data-slide-type="popup-overlay"] .sqs-slide-container[data-slide-type="popup-overlay"] .group-copy .sqs-slice-heading-content[data-slice-type="heading"] { margin-top: 25px !important; } } Edited August 23 by Lesum If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? Link to comment
beyond_electro Posted August 27 Author Share Posted August 27 Thanks, the spacing changed. But now the X button doesn't work - any code to adjust that as well? Thank you Link to comment
Lesum Posted August 27 Share Posted August 27 @beyond_electro It's due to some previous custom code you added. Update the z-index value from '99999999' to '1000' in this code block, @media screen and (max-width: 767px) { .sqs-slide .sqs-slice-group.group-copy.copy-layer-background { z-index: 99999999; } } or simply add the following code instead. @media screen and (max-width: 767px) { .sqs-slide .sqs-slice-group.group-copy.copy-layer-background { z-index: 1000 !important; } } If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? Link to comment
beyond_electro Posted August 27 Author Share Posted August 27 (edited) Thank you kindly, do I keep this code.... @media screen and (max-width: 767px) { .sqs-slide-wrapper[data-slide-type="popup-overlay"] .sqs-slide-container[data-slide-type="popup-overlay"] .group-copy .sqs-slice-heading-content[data-slice-type="heading"] { margin-top: 25px !important; } } .....as well as this one? @media screen and (max-width: 767px) { .sqs-slide .sqs-slice-group.group-copy.copy-layer-background { z-index: 1000 !important; } } Thank you Edited August 27 by beyond_electro Link to comment
Solution Lesum Posted August 27 Solution Share Posted August 27 32 minutes ago, beyond_electro said: Thank you kindly, do I keep this code.... @media screen and (max-width: 767px) { .sqs-slide-wrapper[data-slide-type="popup-overlay"] .sqs-slide-container[data-slide-type="popup-overlay"] .group-copy .sqs-slice-heading-content[data-slice-type="heading"] { margin-top: 25px !important; } } .....as well as this one? @media screen and (max-width: 767px) { .sqs-slide .sqs-slice-group.group-copy.copy-layer-background { z-index: 1000 !important; } } Thank you Yes. If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? 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