Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted October 4, 20222 yr @Ehren there is a responsivity issue on Pages records list whenever you enable all these options If you disable From group settings everything is fine, but whenever you enable it, it will look like what you are seeing in above screenshots. Edited October 4, 20222 yr by Afrodude
November 2, 20222 yr Author On 10/4/2022 at 7:35 PM, Ehren said: Thanks Afrodude - I'll keep this in mind for a future update! 🙂 Just a reminder that the issue still occurs on version 4.7.4. Thanks mate.
January 9, 20232 yr Solution Hi @Afrodude Adding the following to your custom.css file will fix the issue on your site. The code will be included in an upcoming Invision update 🙂 @media screen and (max-width: 979px) { html[dir="ltr"] .ipsDataItem_icon:not( .ipsResponsive_hidePhone ):not( .ipsResponsive_hideTablet ) + .ipsDataItem_main, html[dir="ltr"] .ipsDataItem_icon:not( .ipsResponsive_hidePhone ):not( .ipsResponsive_hideTablet ) + .ipsDataItem_main + .ipsDataItem_stats { margin-right: 2.5em; } html[dir="rtl"] .ipsDataItem_icon:not( .ipsResponsive_hidePhone ):not( .ipsResponsive_hideTablet ) + .ipsDataItem_main, html[dir="rtl"] .ipsDataItem_icon:not( .ipsResponsive_hidePhone ):not( .ipsResponsive_hideTablet ) + .ipsDataItem_main + .ipsDataItem_stats { margin-left: 2.5em; } .ipsDataItem_stats { white-space: normal; } }