Relume Community Icon
Relume Community
  • 🏠Home
  • 📅Events

  • 🔵Announcements
  • 🔵General
  • 🔵Getting Started
  • 🔵Issues
  • 🔵Showcase

Powered by Tightknit
Issues
Issues

Fix Required Checkbox Messages in Webflow Form Setup

Avatar of Daniel K.Daniel K.
·

Hey, I am having this issue where I set up a required checkbox inside of a form (with custom styling, everything also set to custom in webflow), however on the live site there is no "required message" for the checkbox showing up like for the other fields. Does someone know how to fix this? Would really appreciate it 😊 Have a great day!

✅1

4 comments

  • Avatar of Daniel K.
    Daniel K.
    ·

    okay just found this previous post below, with the help of your tool, issue resolved 🤝 https://relumecommunity.slack.com/archives/C02MS2V0FSP/p1737740395656239?thread_ts=1737568721.717969&cid=C02MS2V0FSP

  • Avatar of Matt J.
    Matt J.
    ·

    Daniel K. yeah apologies for that Daniel. And actually, if you move that CSS to a different declaration, it'll only do what we originally intended to do which was hide the default dropdown/select arrow in forms that webflow has since it looks a bit messy. This is the new CSS you'll want:

    <!-- Keep this css code to improve the font quality-->
    <style>
      * {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      -o-font-smoothing: antialiased;
    }
    select {
      -webkit-appearance: none;
    }
    </style>
  • Avatar of Matt J.
    Matt J.
    ·

    We will have this resolved in the style guide the next time we release the style guide which will be in a few weeks.

  • Avatar of Daniel K.
    Daniel K.
    ·

    cool, thanks a lot, I'll add it to the general head of the project 🙂 have a great day!