Ive created landing pages on canvify. now I have double scroll bars that make navigating the site a nightmare. does anyone know how to get rid of it. ive tried some suggestions in the forum can’t seem to get it right. https://bcreations.store/?_ab=0&_fd=0&_sc=1
Topic summary
A user imported landing pages from Canvify and encountered double scroll bars that hinder site navigation.
Proposed Solution:
- Locate the CSS class
#canvify-content - Change the height property from
height: 100vh;toheight: auto;
Current Status:
- The original poster tried forum suggestions but hasn’t successfully resolved the issue yet
- One community member provided specific CSS code modification instructions
- No confirmation yet on whether the solution worked
Hi @EricB for overcome this issue you have to find this class id #canvify-content in your css and change the height value to auto like below -
Your Current CSS Code -
#canvify-content{
height: 100vh;
}
Replace above code with below one -
#canvify-content{
height: auto;
}