• Resolved eraleks

    (@eraleks)


    Hi!

    I’ve made a form using “form manager”. The only problem is that the boxes aren’t visible because they have the same color as the background. How can I change the color of the boxes so that they’ll be visible on a white background?

Viewing 5 replies - 1 through 5 (of 5 total)
  • You can add some CSS to accomplish this. In a nutshell, you look at the source code of your form in a browser, find out which classes/IDs they use, and add some corresponding styles to your CSS file.

    If you need more hands-on help, please provide a link to your site so folks can help you.

    Thread Starter eraleks

    (@eraleks)

    Thanks for reply!

    I could really use some more help, since I have no clue how to write css or where to put it. Here’s the link tomy page

    Go into your form’s stylesheet, here:

    https://kulturpotetene.no/wp-content/plugins/wordpress-form-manager/css/style.css

    The section marked /* USER SIDE */ is what you need to edit.

    For example, to get a border around your input fields, go to

    .fm-form input

    and add a line like:

    border: 1px solid #000;

    or to get a different background colour, add:

    background-color: #999;

    where #999 is whatever hex colour you want.

    Repeat as needed, depending how you want to style the form.

    Note that if you update the plug-in in the future, you may lose your customized styles, so be sure to make a copy of the stylesheet before upgrading.

    Thread Starter eraleks

    (@eraleks)

    Thank you so much! This did the trick =)

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘fields not visible in form’ is closed to new replies.