Extreme oversized icons on slider edit page
-
For anyone experiencing a problem with enormously large icons when editing a slide show, the problem is due to the cycloneslider class not being set properly in the body tag, resulting in the cycloneslider class name being merged with the preceding class name. The admin css then fails to style things correctly.
Here is how to fix the problem. Open the following file from the cycloneslider plugin folder:
\wp-content\plugins\cyclone-slider\src\CycloneSlider\Admin.php
On line 126 you will see
$classes .= ‘cycloneslider’;
Change this to
$classes .= ‘ cycloneslider’;
i.e. add a space at the start of the ‘cycloneslider’ string then save the file.
Reload the slider edit page and your icons will now be correctly sized.
- The topic ‘Extreme oversized icons on slider edit page’ is closed to new replies.