Title: Can&#8217;t read labels
Last modified: November 9, 2018

---

# Can’t read labels

 *  Resolved [ondestas](https://wordpress.org/support/users/ondestas/)
 * (@ondestas)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/)
 * Hi!
 * I’ve installed registration plugin but in my form I can’t read the labels, so
   you don’t know what to write 🙁
 * Thanks!! Urgent!! 🙂
 * Screenshot: [https://i.imgur.com/mTSfgrT.png](https://i.imgur.com/mTSfgrT.png)

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/cant-read-labels/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/cant-read-labels/page/2/?output_format=md)

 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10864971)
 * Hey ondestas,
 * We can definitely help you out with this! My guess is that your theme is changing
   some of the CSS for the plugin’s forms. I can help you fix it if you send a link
   to a page that has the form on it. If you don’t want to post that here, please
   use our contact form:
 * [https://roundupwp.com/support/](https://roundupwp.com/support/)
 * Thanks!
 *  Thread Starter [ondestas](https://wordpress.org/support/users/ondestas/)
 * (@ondestas)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10864987)
 * Yep, no problem. Do you need the website or the page? The page where the form
   is is private, so if you need it let me know that and I can make it public for
   a while.
 * Link: [http://agilitycia.es](http://agilitycia.es)
 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10865007)
 * If possible, a link to a page that has the form on it will work best. So if you
   could make it a public page for a moment, I can take a look right away.
 *  Thread Starter [ondestas](https://wordpress.org/support/users/ondestas/)
 * (@ondestas)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10865016)
 * No problem!
 * The form: [http://agilitycia.es/pruebas/xiv-prueba-agility-cia/](http://agilitycia.es/pruebas/xiv-prueba-agility-cia/)
 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10865034)
 * It looks like your theme is adding a bunch of html in the middle of the form 
   and changing how it displays. You can either try disabling this feature of the
   theme or you can try adding this to the “Custom CSS” area on the “Form” tab inside
   the plugins settings pages to help:
 *     ```
       #rtec input[type="text"],
       #rtec input[type="email"],
       #rtec input[type="tel"],
       #rtec input[type="number"],
       #rtec textarea {
           padding: 2px !important;
       }
       ```
   
 * The labels will be visible after clicking inside the input field, however, the
   error messages are still broken, likely due to to the changes your theme makes.
   It should be usable at least.
 * Let me know if you have more questions!
 * – Craig
 *  Thread Starter [ondestas](https://wordpress.org/support/users/ondestas/)
 * (@ondestas)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10865040)
 * Done! Now the labels appears when I click to write.
 * It’s possible to make it permanent?
 * Thanks!
    -  This reply was modified 7 years, 7 months ago by [ondestas](https://wordpress.org/support/users/ondestas/).
 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10865088)
 * No problem! Glad we could find something that works.
 * If you add CSS to the setting I mentioned, it will be permanent with every update.
   So no worries about losing the changes.
 * Have a great weekend!
 * – Craig
 *  Thread Starter [ondestas](https://wordpress.org/support/users/ondestas/)
 * (@ondestas)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10865307)
 * I mean that right now the label is visible if I click on the field to write. 
   Is there any way to make it always visible?
 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10865713)
 * This might be possible. It looks like you may have made the page private again.
   Do you want to let me know when it’s public again so I can take another look?
 *  Thread Starter [ondestas](https://wordpress.org/support/users/ondestas/)
 * (@ondestas)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10866838)
 * Ops, sorry, done! I will wait for you to make it private again.
 *  Thread Starter [ondestas](https://wordpress.org/support/users/ondestas/)
 * (@ondestas)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10867445)
 * up
 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10867540)
 * Try adding this as well:
 *     ```
       body[data-form-style="minimal"] #rtec .minimal-form-input label span {
           color: #333 !important;
           top: auto;
       }
       body[data-form-style="minimal"] #rtec .minimal-form-input label span.text {
           top:auto;
       }
   
       body[data-form-style="minimal"] #rtec .minimal-form-input label .text-inner, 
       body[data-form-style="minimal"] #rtec .minimal-form-input.has-text label .text-inner{ 
           animation: none !important;
           -webkit-animation: none !important;
       }
       ```
   
 * Seems to work for me
 * – Craig
 *  Thread Starter [ondestas](https://wordpress.org/support/users/ondestas/)
 * (@ondestas)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10867552)
 * Done, didn’t work 🙁
 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10867557)
 * It looks like the quotes are causing an issue. Try this instead:
 *     ```
       body[data-form-style=minimal] #rtec .minimal-form-input label span {
           color: #333 !important;
           top: auto;
       }
       body[data-form-style=minimal] #rtec .minimal-form-input label span.text {
           top:auto;
       }
   
       body[data-form-style=minimal] #rtec .minimal-form-input label .text-inner, 
       body[data-form-style=minimal] #rtec .minimal-form-input.has-text label .text-inner{ 
           animation: none !important;
           -webkit-animation: none !important;
       }
       ```
   
 *  Thread Starter [ondestas](https://wordpress.org/support/users/ondestas/)
 * (@ondestas)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/#post-10867597)
 * Oh yeah! You’re the boss! THANK YOU very much, and sorry for the unlimited questions
   🙂
 * 11/10

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/cant-read-labels/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/cant-read-labels/page/2/?output_format=md)

The topic ‘Can’t read labels’ is closed to new replies.

 * ![](https://ps.w.org/registrations-for-the-events-calendar/assets/icon-256x256.
   png?rev=3518819)
 * [Registrations for the Events Calendar - Event Registration Plugin](https://wordpress.org/plugins/registrations-for-the-events-calendar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/registrations-for-the-events-calendar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/registrations-for-the-events-calendar/)
 * [Active Topics](https://wordpress.org/support/plugin/registrations-for-the-events-calendar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/registrations-for-the-events-calendar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/registrations-for-the-events-calendar/reviews/)

 * 16 replies
 * 2 participants
 * Last reply from: [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * Last activity: [7 years, 7 months ago](https://wordpress.org/support/topic/cant-read-labels/page/2/#post-10867607)
 * Status: resolved