Hello, hoping you guys are doing good.
I’m trying to get the description row to float as you scroll down the page. What am I doing wrong?
Hello, hoping you guys are doing good.
I’m trying to get the description row to float as you scroll down the page. What am I doing wrong?
Disregard this thread. Managed to figure it out!
For anyone else looking to do this the code is:
body {
overflow-x: visible;
}
.x-section .category-header {
position:-webkit-sticky;
position:sticky;
top:60px;
z-index:99;
}
You will need to change category-header to suit your row/section.
Glad you’ve figured it out, Daniel. Please just note that the body overflow is hidden in our themes. Horizontal scrollbar could appear if you make it visible by custom CSS and we can’t provide support for custom CSS issues. Your custom CSS is the way to go if you want to use the CSS position sticky though.
Hey Daniel,
You’re most welcome!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.