Title: Options not reachable
Last modified: February 8, 2019

---

# Options not reachable

 *  Resolved [digiblogger](https://wordpress.org/support/users/digiblogger/)
 * (@digiblogger)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/options-not-reachable/)
 * Hi there,
 * with the latest update, some fields have not reachable options.
 * ![](https://i0.wp.com/buddyholi.de/screen.png)

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

 *  Thread Starter [digiblogger](https://wordpress.org/support/users/digiblogger/)
 * (@digiblogger)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/options-not-reachable/#post-11185982)
 * He misaligned controls on the right can not be reached with mouseclick
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/options-not-reachable/#post-11185986)
 * Hello [@digiblogger](https://wordpress.org/support/users/digiblogger/)
 * The screenshot included in your ticket is showing a conflict with the styles 
   of your website. The checkboxes and icons have moved down.
 * Please, create a ticket in my private website for checking the issue in detail:
 * [https://cff.dwbooster.com/contact-us](https://cff.dwbooster.com/contact-us)
 * Best regards.
 *  Thread Starter [digiblogger](https://wordpress.org/support/users/digiblogger/)
 * (@digiblogger)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/options-not-reachable/#post-11186167)
 * I think i found it.
 * This CSS breaks the controls layout:
 *     ```
       input[type="radio"], input[type="checkbox"] {
       	margin: -5px 4px 0;
       }
       ```
   
 * it applies to class choice_optgroup. Reducing the margin to 0px does the trick.
   
   But I have no ides how to add css that is only applied to backend.
 * The code comes from: assets/css/admin/admin-style.css and is part of my theme.
   
   But to be honest.. I have no idea how to fix admin styles
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/options-not-reachable/#post-11186202)
 * Hello [@digiblogger](https://wordpress.org/support/users/digiblogger/)
 * A possible solution would be insert the following style definition:
 *     ```
       input[type="radio"], input[type="checkbox"] {margin: 0 !important;}
       ```
   
 * Into the content of “/wp-content/plugins/calculated-fields-form/css/style.css”
   file, and then, clear the browser’s cache after edit the online file.
 * Best regards.
 *  Thread Starter [digiblogger](https://wordpress.org/support/users/digiblogger/)
 * (@digiblogger)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/options-not-reachable/#post-11186231)
 * Thanks, great solution.
    But I want the css to survive updates, so i decided 
   to add a little function to the functions.php via plugin.
 *     ```
       add_action('admin_head', 'my_custom_css');
   
       function my_custom_css() {
         echo '<style>
           .cff_form_builder input[type="radio"], .cff_form_builder input[type="checkbox"]{
       	  margin: 0px 0px 0 !important;
       }
   
           .cff_form_builder .choice-ctrls {
       	  margin-top: 10px!important;
       }
         </style>';
       }
       ```
   
 * 🙂 works great
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/options-not-reachable/#post-11186233)
 * Hello [@digiblogger](https://wordpress.org/support/users/digiblogger/)
 * Thank you very much for sharing your solution.
 * Best regards.

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

The topic ‘Options not reachable’ is closed to new replies.

 * ![](https://ps.w.org/calculated-fields-form/assets/icon-256x256.jpg?rev=1734377)
 * [Calculated Fields Form - AI Form Builder for WordPress - Contact, Payment, Quote, Quiz & More](https://wordpress.org/plugins/calculated-fields-form/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/calculated-fields-form/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/calculated-fields-form/)
 * [Active Topics](https://wordpress.org/support/plugin/calculated-fields-form/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/calculated-fields-form/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/calculated-fields-form/reviews/)

 * 6 replies
 * 2 participants
 * Last reply from: [codepeople](https://wordpress.org/support/users/codepeople/)
 * Last activity: [7 years, 5 months ago](https://wordpress.org/support/topic/options-not-reachable/#post-11186233)
 * Status: resolved