mexmet
(mehmet)
July 25, 2023, 2:52pm
1
Hello,
A very nice scroll effect.
In blocsapp - bootstrap 5, I want it to appear anywhere in the page. However, either the scroll effect does not work, or it always starts from the top and even the navigation bar comes out after the scroll effect.
What should I do to show the scrool effect somewhere on the page I want?
MaxZieb
(Loves Hype)
July 25, 2023, 2:56pm
2
Hello Mexmet,
you should upload this to a page, I can inspect. I don't own a Blocsapp license.
Regards
Max
mexmet
(mehmet)
July 25, 2023, 3:33pm
3
Thanks for your quick turn,
scrollsite.zip (224.9 KB)
MaxZieb
(Loves Hype)
July 25, 2023, 3:57pm
4
You are using:
.page-container {
overflow: hidden;
}
That is not allowed if you want to use position:sticky
as we do with the scroll.
Also, I saw you are pulling in the CDN version and the inline version. One should suffice, best the minified one, but local.
mexmet
(mehmet)
July 25, 2023, 5:36pm
5
I tried auto visible scroll clip but nothing changed.
MaxZieb
(Loves Hype)
July 26, 2023, 9:01am
6
Set it to:
.page-container {
overflow: initial;
}
mexmet
(mehmet)
July 26, 2023, 10:56am
7
I tried to change the place in another place . Yes, it's done now, thank you very much.