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
samliew
(webflowexpert.com)
May 2, 2016, 6:03pm
2
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?
samliew
(webflowexpert.com)
May 3, 2016, 2:15am
4
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.
system
(system)
Closed
July 2, 2016, 11:15pm
5
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.