If the advanced tab is locked out in the free version of Kubio, you can still achieve smooth scrolling to your contact form by using a bit of custom HTML and a manual approach:
1. Add an HTML Block to the Contact Form Section
- Edit the Page: Go to the page with the contact form.
- Add an HTML Block: Drag an HTML block above or within the contact form section.
- Insert an HTML Anchor:
<a id="contact-form"></a>
- This creates an invisible anchor that you can link to.
2. Update the 'Contact' Button Link
- Edit the Button: Go to your "Contact" button settings.
- Set the Link: In the button link field, enter
#contact-form
.
3. Enable Smooth Scrolling with Customizer or Custom CSS
- Go to Appearance > Customize > Additional CSS and add:
html {
scroll-behavior: smooth;
}
4. Save and Test
- Save all changes and preview the page.
- Click the "Contact" button to ensure it smoothly scrolls to the form.
This method bypasses the need for the advanced settings in Kubio while still providing the functionality you need. Let me know if this works or if you need more help!