Currently, as I work on a website in Wordpress utilizing the Visual Composer page builder, I have encountered a dilemma.
I am attempting to ensure a row remains sticky at the top of the page. In an effort to achieve this, I have inserted the following CSS into the editor:
/* implementation to anchor header bar at the top of the page */
.sticky {
position: fixed;
top: 0;
z-index: 1;
}
Furthermore, I have designated sticky as the class name.
However, unfortunately, the desired outcome is not being realized and I am uncertain where I may have made an error. Any assistance or guidance would be greatly appreciated.
Thank you!