Webflow.require('slider').goTo(index, '.w-slider')) in the Custom Code section or an Embed element, ensuring it's executed after the slider is initialized.Webflow's native Slider component always starts at the first slide by default, and there is no built-in checkbox or visual UI option to start at a different slide. However, yes, you can achieve this with custom JavaScript.
Example approach (do not use raw code tags in Webflow):
Webflow.require('slider').goTo(index, selector);Webflow.require('slider').goTo(3, '.w-slider');
.w-slider with your specific slider’s class.
</body> tag using Page Settings > Custom Code > Footer.
Webflow sliders cannot start from a specific slide by default, but you can use Webflow’s slider API with custom JavaScript to set the initial slide—ideal for starting a gallery from the middle or any index you choose.