Configuration options does not expand
-
Within the Contact Form 7 AntiSpam admin configuration options the actual options are contained within a <div class=”card main-options” />. The “card” class forces the div to a max-width of 520px with default wordpress admin css files making it awkward to adjust many of the options. If the “card” class is removed everything works as expected and the option styling follows other plugins. I propose that the “card” class be removed:
--- cf7-antispam/admin/admin-display.php.orig 2023-02-11 12:59:14.000000000 -0500 +++ cf7-antispam/admin/admin-display.php 2023-02-11 12:59:24.000000000 -0500 @@ -90,7 +90,7 @@ </div> </div> - <div class="card main-options"> + <div class="main-options"> <h3><?php esc_html__( 'Options', 'cf7-antispam' ); ?></h3> <form method="post" action="options.php" id="cf7a_settings"> <?php
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Configuration options does not expand’ is closed to new replies.