RDette Posted June 23, 2021 Posted June 23, 2021 Site URL: https://www.rivkadette.com/mentoring Hey, I have several bullet points on my services page, and in the desktop version it's at the right place, in the mobile version it's all cramped to the right side and not really readable. Is there a code to fix this?? Mobile version: Desktop version:
tuanphan Posted June 24, 2021 Posted June 24, 2021 18 hours ago, RDette said: Site URL: https://www.rivkadette.com/mentoring Hey, I have several bullet points on my services page, and in the desktop version it's at the right place, in the mobile version it's all cramped to the right side and not really readable. Is there a code to fix this?? Mobile version: Desktop version: Add to Design > Custom CSS /* Fix list on mobile */ @media screen and (max-width:767px) { ul { margin-left: 0 !important; } } RDette 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
jesswp Posted March 26, 2022 Posted March 26, 2022 Hi @tuanphan - is there a way to fix this for image card as well for bullet points? https://plum-ocelot-fakz.squarespace.com/ pass - spine
tuanphan Posted March 29, 2022 Posted March 29, 2022 On 3/26/2022 at 7:34 AM, jesswp said: Hi @tuanphan - is there a way to fix this for image card as well for bullet points? https://plum-ocelot-fakz.squarespace.com/ pass - spine Add to Design > Custom CSS @media screen and (max-width:767px) { .image-card.sqs-dynamic-text-container ul { padding-left: 0px !important; } .image-card.sqs-dynamic-text-container ul * { text-align: left !important; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
JoelleM Posted April 27, 2022 Posted April 27, 2022 @tuanphan I've tried your code above to fix the same problem, but it didn't seem to work alas. Trying with a list on this page, but want a site wide rule https://together-learning-trust-new.squarespace.com/join-our-trust PW: David123
tuanphan Posted April 30, 2022 Posted April 30, 2022 On 4/27/2022 at 5:14 PM, JoelleM said: @tuanphan I've tried your code above to fix the same problem, but it didn't seem to work alas. Trying with a list on this page, but want a site wide rule https://together-learning-trust-new.squarespace.com/join-our-trust PW: David123 For site wide, add this to Design > Custom CSS /* Mobile - List */ @media screen and (max-width:767px) { ul { padding-left: 0 !important; } ul * { text-align: left !important; }} JoelleM 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment