Title: CSS
Last modified: May 28, 2018

---

# CSS

 *  Resolved [petersfriends](https://wordpress.org/support/users/petersfriends/)
 * (@petersfriends)
 * [8 years ago](https://wordpress.org/support/topic/css-157/)
 * Is it possible, to style the form with css?

Viewing 6 replies - 1 through 6 (of 6 total)

 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [8 years ago](https://wordpress.org/support/topic/css-157/#post-10331762)
 * Hey petersfriends,
 * Yes there is a setting for custom CSS on the “Form” tab. You can paste it in 
   there. Is that all you needed or did you need help with styling something?
 * – Craig
 *  Thread Starter [petersfriends](https://wordpress.org/support/users/petersfriends/)
 * (@petersfriends)
 * [8 years ago](https://wordpress.org/support/topic/css-157/#post-10331822)
 * First of all thank you very much for your quick reply!
    First I just need the
   alert-messages in the form from currently orange to our corporate-design-color
   and second the submit button on the left side, background color also like our
   corporate-design and with text-color white. Is this possible? Best regards!
 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [8 years ago](https://wordpress.org/support/topic/css-157/#post-10331897)
 * Yes this is possible. The background color of the submit button can be changed
   on the “Form” tab with a setting. If you just wanted to change the submit button
   but not the register button, you would use this CSS:
 *     ```
       #rtec form .rtec-submit-button {
         background: #f0f;
       }
       ```
   
 * Here is the CSS for the others:
 * Change the border color and the error message background color:
 *     ```
       #rtec .rtec-form-field .rtec-error {
           border-color: #f0f !important;
       }
       #rtec .rtec-form-field .rtec-error-message {
         background-color: #f0f;
       }
       ```
   
 * Change the text color of the submit button:
 *     ```
       #rtec form .rtec-submit-button {
         color: #fff;
       }
       ```
   
 * Change the alignment of the submit button
 *     ```
       #rtec form .rtec-form-buttons {
         text-align: left;
       }
       ```
   
 * Let me know if you have more questions!
 * – Craig
 *  Thread Starter [petersfriends](https://wordpress.org/support/users/petersfriends/)
 * (@petersfriends)
 * [8 years ago](https://wordpress.org/support/topic/css-157/#post-10332099)
 * all works great – thanks a lot!
    one final question: do you have a css-code to
   change the font-style of the error-message from bold to regular?
 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [8 years ago](https://wordpress.org/support/topic/css-157/#post-10333203)
 * No problem!
 * Yes this will do that:
 *     ```
       #rtec .rtec-error-message {
           font-weight: 400;
       }
       ```
   
 * – Craig
 *  Plugin Author [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * (@roundupwp)
 * [8 years ago](https://wordpress.org/support/topic/css-157/#post-10376833)
 * I hope everything is looking like you hoped! I’m going to mark this as resolved
   but let me know if you need help customizing the look of the form.

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘CSS’ 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/)

 * 6 replies
 * 2 participants
 * Last reply from: [roundupwp](https://wordpress.org/support/users/roundupwp/)
 * Last activity: [8 years ago](https://wordpress.org/support/topic/css-157/#post-10376833)
 * Status: resolved