Hi
We have a template in AEM6.5 SP20 that has an infinity scroll in Editor mode. Any suggestion how to fix this?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
This issue is related to the use of vh
(virtual height) in your custom CSS. Most likely you are using something like this: height: 100vh
which may not work in "Edit mode" due to its iframe relationships. To fix this, you should add a condition to set a fixed height in Edit mode.
Hope this helps.
Some of your custom CSS is probably conflicting with OOB css styles.
Check if you have defined any styles for #ContentWrapper or any of the other OOB css classes in your custom clientlibs.
Hi,
This issue is related to the use of vh
(virtual height) in your custom CSS. Most likely you are using something like this: height: 100vh
which may not work in "Edit mode" due to its iframe relationships. To fix this, you should add a condition to set a fixed height in Edit mode.
Hope this helps.
Views
Likes
Replies