No 100% width page!

Hello
Why do I always have a left margin when I create a 100% width page. Whenever the scroll bar appears. Without a scroll bar it’s ok.

Could you please share the code so that we can see what you have done. This may mean any personalised styles as well.

I Found a solution with CSS

.vscroll{
overflow-y: scroll;
overflow-x: hidden;
white-space: nowrap;
}

.noscroll {
overflow-y: hidden; /* Hide vertical scrollbar /
overflow-x: hidden; /
Hide horizontal scrollbar */
}

I am glad that you found a solution.

But you could have removed

margin-left: calc(100vw - 100%);

from the style rules instead.

2 Likes

Thanks :+1: