Good Morning all,
i am trying to add some styling to an element where when i scroll down my page a certain container will follow the scrolling page without leaving the view of the page.
Image 1 shows the top of the page with all of the tabs showing whereas image 2 shows the page scrolled down but some tabs are missing. im trying to make them all appear wherever i am on the page.
@Maxwell Mckinnon
for better understanding attach your .oml here
Thanks,
Shriyash
Hi Maxwell,
You should be able to do this with some CSS styling. Add position: fixed to the menu to make it stay on the same place on the page even when scrolled.
Max
Hello,You can archive this by applying some css to it
.sidebar {
height: 100%;
position: fixed;
}
Something like this
you can take a reference from herehttps://www.w3schools.com/howto/howto_css_fixed_sidebar.aspHope this helps
Thanks