1

I was trying to remove the slider part in timeline.js . What I tried was just adding display : none in html file.

<div class="vco-slider" style="overflow-y: hidden;display : none">

This html line was generated automatically. I want to know in which file should I change?

Arun Prakash
  • 421
  • 2
  • 6
  • 20

1 Answers1

1

Go to your main CSS Stylesheet. Under that, apply a class with display:none; value.

You can find the files under the folder called "Source" with the CSS file that you are currently using.

For Instance,

.vco-slider{
   display:none;
}

Hope this helps.

Nitesh
  • 15,425
  • 4
  • 48
  • 60