Is there a way to decrease the spacing between each panel? Right now, they are too far apart and when I fill up a lot of space, the navigation bar always shows up. I don't want that horizontal bar to be visible.
I want to avoid that bar from appearing when there is less content in place.
https://i.sstatic.net/L9o6W.jpg
This is how I envision the reduced separation:
https://i.sstatic.net/8fxgG.jpg
Update:
Please help me with reducing the separation:
https://i.sstatic.net/THCc6.jpg
Thank you for your assistance
/* Timeline */
.timeline,
.timeline-horizontal {
list-style: none;
padding: 20px;
position: relative;
}
.timeline:before {
top: 40px;
bottom: 0;
position: absolute;
content: " ";
width: 3px;
background-color: #eeeeee;
left: 50%;
margin-left: -1.5px;
}
.timeline .timeline-item {
margin-bottom: 20px;
position: relative;
}
.timeline .timeline-item:before,
.timeline .timeline-item:after {
content: "";
display: table;
}
...
</ul>
</div>
</div>
</div>