hello scrollbar appears on my website. How can I solve this?
Topic summary
A user encountered an unwanted scrollbar appearing on their website and sought help to resolve it.
Solution provided:
- Add CSS code to the HTML element to hide horizontal overflow
- Specifically:
html { overflow-x: hidden; }
Status: The issue has been resolved using this CSS fix, which prevents horizontal scrolling from creating a visible scrollbar.
Hello,
Yes I have solved the issue
Please add the CSS in CSS file
html {
overflow-x: hidden;
}
Thanks.