CamillaAAA Posted November 29, 2021 Share Posted November 29, 2021 Site URL: https://www.andersbundgaard.dk/ Hey! Is it possible to change the settings, so the tablet version of my site appears just like mobile version for all pages? Site: https://www.andersbundgaard.dk/ Thanks! Link to comment
tuanphan Posted November 30, 2021 Share Posted November 30, 2021 18 hours ago, CamillaAAA said: Site URL: https://www.andersbundgaard.dk/ Hey! Is it possible to change the settings, so the tablet version of my site appears just like mobile version for all pages? Site: https://www.andersbundgaard.dk/ Thanks! Try adding this to Design > Custom CSS @media screen and (max-width:900px) { [class*=sqs-col] { width: 100% !important; } } 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
CamillaAAA Posted November 30, 2021 Author Share Posted November 30, 2021 (edited) 47 minutes ago, tuanphan said: Try adding this to Design > Custom CSS @media screen and (max-width:900px) { [class*=sqs-col] { width: 100% !important; } } You are the best, thank you @tuanphan! Another issue came up with this change. Is it possible to remove the extra space, that turns up on the tablet version now between the video and the headline? (I have attached a screenshot). I had the same issue on mobile and used the following code to remove spacing on mobile. But it doesn't seem to work on the tablet version - I tried changing the max-width to 900px. /* Remove spacer block mobile */ @media screen and (max-width:1000px) { .space-block { display: none !important; } } Edited November 30, 2021 by CamillaAAA Link to comment
tuanphan Posted December 1, 2021 Share Posted December 1, 2021 On 11/30/2021 at 4:29 PM, CamillaAAA said: You are the best, thank you @tuanphan! Another issue came up with this change. Is it possible to remove the extra space, that turns up on the tablet version now between the video and the headline? (I have attached a screenshot). I had the same issue on mobile and used the following code to remove spacing on mobile. But it doesn't seem to work on the tablet version - I tried changing the max-width to 900px. /* Remove spacer block mobile */ @media screen and (max-width:1000px) { .space-block { display: none !important; } } Your code missing a "r" character, the code should be @media screen and (max-width:900px) { [class*=sqs-col] { width: 100% !important; } .spacer-block { display: none !important; } } 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
CamillaAAA Posted December 2, 2021 Author Share Posted December 2, 2021 @tuanphan ahh I see! Thank you! 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