- Getting Started
- Field Types
- Email Notifications
-
Integrations
- MailerLite
- Create User Accounts with Convert Forms
- MailChimp
- HubSpot
- GetResponse
- AcyMailing
- Content App
- Webhooks Addon
- Facebook Meta Pixel
- Google Adwords
- Sync submissions with your favorite app
- Integrate Drip Ecommerce CRM with Convert Forms
- Google Analytics
- Constant Contact
- SalesForce Web-to-Lead
- IContact
- Zoho CRM
- Elastic Email
- Zoho Campaigns
- Zapier
- Kit
- Brevo (Sendinblue)
- Campaign Monitor
- AWeber
- ActiveCampaign
-
Functionality
- Disabling Browser Autocomplete for Form Fields
- Scroll the Page to the Top When a Long Form is Submitted
- Display Submissions Count for a Specific Form
- Populate Drop Down, Radio Buttons or Checkboxes with a CSV File
- Automatically Delete Submissions Older Than X Days
- Silently POST Submitted Data to Any API or URL
- Automatically Save Each Submission to a JSON file
- Authenticate and Login a User with a Custom Joomla Form
- Auto-Populate a Form Field with an Article Data
- Add a placeholder text to a Dropdown
- Create Multilingual Forms in Joomla
- Create a custom Joomla User Registration Form
- Redirect User to a URL After Form Submission
- Export and Import Forms across different Websites
- Export Form Submissions to CSV
- Convert Forms
- Styling and Customization
- Payment Forms
-
Advanced Features
- Displaying a Popup After Form Submission Using EngageBox
- Conditional Content Shortcode in Convert Forms
- Copy Value From One Field to Another
- Tasks
- Export Form Submissions with a Webhook URL
- Conditional Fields
- PDF Form Submissions
- Input Masks
- Field Calculations
- Auto-Populate Form Fields Using Query String
- Use Smart Tags
- Developers
- Troubleshooting and Support
-
Spam, Security & Compliance
- Restrict Form Submissions Based on IP
- Enforcing a Custom Password Policy in Convert Forms
- Add Cloudflare Turnstile to your Joomla Form
- Implement the Iubenda Consent Database in Joomla with Convert Forms
- Add Custom Validations to Fields and Forms
- Add Math Captcha to your Form
- Prevent a Field From Saving in the Database
- Add hCaptcha to your Form
- Enable Double Opt-in
- Allow Form Submissions in Specific Date Range
- Ensure a Unique Value is Entered Into a
- Block Form Submissions Containing Profanity (Bad Words)
- Block Email Addresses or Email Domains
- Native Convert Forms Anti-spam Protection with Honeypot
- Add reCAPTCHA to your Form
- Create GDPR Compliant Forms
Prevent Form from Getting Covered by a Sticky Menu Bar
By default, Convert Forms uses AJAX-based submissions. Upon submission, a thank-you or error message appears at the top of the form. To enhance user experience, the form automatically scrolls to the message.
However, if the website has a sticky header (such as a fixed navigation bar), it may overlap and obscure the thank-you or error message. As a result, users might not see the message clearly, causing confusion.
This happens because the browser scrolls to the top of the form without accounting for the height of the sticky header.
When does this problem occur?
- After submitting a form successfully, the thank-you message is hidden behind the sticky header.
- When there is a validation error, Convert Forms displays the error message at the top while focusing on the first invalid field, which may not be visible.
Solution
The easiest way to fix this issue is by adding a simple CSS rule that tells the browser to leave space for the sticky header when scrolling to an element.
html {
/* Adjust based on your sticky header height */
scroll-padding-top: 300px;
}
Steps to implement
- Edit your form
- Go to the Advanced tab
- Place the CSS snippet in the Custom CSS option
- Adjust the 300px value to match the height of your sticky header.
- Save and test your form to ensure messages appear correctly.
Alternatively, you can add the CSS rule to your website's global stylesheet or inside the Custom CSS field in your template settings.