How to make a section to be scrolled within a view ?

0
I want to make a certain section in my website to be scrolled, the section have 6 points and i want to show the points when i scroll within that section. Note that when i scroll to show point 2 , point 1 will disappear and so on. 
asked
2 answers
0

Hi Jalila,

you can use Web Action module, it contains  "Scroll To"  javascript action,

give your section some class , pass that class name to this action & it will scroll to that section.

 

Hope it helps

answered
0

ok then you can do via css ,give class to your section and try this

.section{

max-height:200px; //adjust based on your need

overflow-y:scroll;

}

answered