Checkbox Error on Export

My checkboxes are not showing up after exporting. Is there something I’m missing here? See screenshots of preview and exported below. Preview >

Preview

Exported


Here is my public share link: LINK
([how to access public share link][2])

[2]: How to Enable a Webflow Share Link - Webflow Tips - Forum | Webflow

Your custom style is hiding the checkboxes:

<style type="text/css">
input, textarea {
-webkit-appearance: none;
border-radius: 0; } 
</style>

Good catch @samliew. Any idea how to maintain the custom webkit appearance for mobile (which rounds all the corners on form fields, etc.) while still showing the checkboxes?

Change input to a more specific selector like

input[type=text],
input[type=password],
input[type=email]

Tutorial Styling Texty Inputs Only | CSS-Tricks - CSS-Tricks

Sometimes you can get the answer faster if you Google.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.