Reply To: Scrolling Segment, custom JS and images

#2245
livemesh
Keymaster

Glad you like our theme and thanks for choosing it to power your site.

To make a segment or an element to stick to the top, you won’t need JS and can manage with CSS. You can have have a look at CSS for the sticky menu. Or use something like below to your element ( you will need to disable sticky menu I guess) –

#features-segment {
position: fixed;
top: 28px;
z-index: 30;
width: 100%;
background: #DDD;
}

Hope this helps.