mvdison Posted August 28 Share Posted August 28 I added a code to customize desktop and mobile seperately I used this code: @media only screen and(min-width:641px) {section[data-section-id="64ec927c1bee2b1a4ea28370"]{display:none}} @media only screen and (max-width:640px) {section[data-section-id="64ec92a9c5e6c04a65f7a739"]{display:none}} And it messed up the spacing on mobile for some reason Anyone that could help? Link to comment
Lesum Posted August 28 Share Posted August 28 @mvdison Would it be possible to share your website's URL? It's impossible to identify the issue without accessing the website. Thanks! 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
mvdison Posted August 28 Author Share Posted August 28 (edited) @Lesum Hi yes ofcourse, sorry! www.madisonboshuijer.com Edited August 28 by mvdison Link to comment
Lesum Posted August 28 Share Posted August 28 @mvdison You can try adding this code to remove the overlapping: @media only screen and (max-width:640px) { section[data-section-id="64ec9d16c1aa6f7fa14f883e"] { padding-top: 120px !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
mvdison Posted August 28 Author Share Posted August 28 (edited) @Lesum That worked! But now the caption is being cut off. Is there a way to fix that? *Edit: I now see it was cut off earlier aswell Edited August 28 by mvdison Link to comment
Solution Lesum Posted August 28 Solution Share Posted August 28 (edited) @mvdison Here's the updated code: @media only screen and (max-width:640px) { section[data-section-id="64ec9d16c1aa6f7fa14f883e"] { padding-top: 220px !important; } .gallery-reel { min-height: 55vh !important; } .gallery-caption-wrapper { overflow: visible; } .gallery-caption-reel { min-height: 120px !important; } } Edited August 28 by Lesum mvdison 1 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
mvdison Posted August 28 Author Share Posted August 28 @Lesum Perfect, thank you so much! Lesum 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