EnlighterJS / Plugin.WordPress

:package: Official WordPress Plugin of EnlighterJS
http://wordpress.org/plugins/enlighter/
GNU General Public License v2.0
115 stars 17 forks source link

I want to change the theme and colors but it's not working #315

Closed khanakia closed 3 years ago

khanakia commented 3 years ago

Hi,

I am change the default theme here /wp-admin/admin.php?page=enlighter-customizer but it still loads the base theme no matter what and also if i make any changes to the customizer nothing changes.

Screenshot 2020-11-08 at 11 26 49 AM
AndiDittrich commented 3 years ago

did you select "theme customizer" as theme ?

khanakia commented 3 years ago

@AndiDittrich I just figured it out the issue is i cannot scroll the the dropdown is position fixed and there is no vertical scrollbar. So i cannot select the Theme Customizer even if i want to. Check screenshots please.

Screenshot 2020-11-08 at 4 42 08 PM Screenshot 2020-11-08 at 4 41 24 PM
AndiDittrich commented 3 years ago

it seems to be an issue with your browsers theme/plugins. generally the dropdown list is a standard TinyMCE component not part of Enlighter. You can just change the global/standard theme within Enlighter settings or use a bugger window for testing

Firefox 78.04 ESR image

Chromium 83 image

khanakia commented 3 years ago

@AndiDittrich Same issue i just installed a fresh wordpress installation and only plugin i had installed this time was the Classic Editor or Disable Gutenberg. I still cannot scroll please check the screeshots I tested in Chrome Latest, Opera Latest Web Browser

It works if add this CSS to the Developer tools

.mce-menu .mce-container-body {
    max-height: 300px;
    overflow: scroll;
}
Screenshot 2020-11-09 at 12 39 05 PM Screenshot 2020-11-08 at 4 42 08 PM
AndiDittrich commented 3 years ago

i believe that you're experience that issue but i'm unable to reproduce it on any test systems. Again: the UI dialog is not part of the Enlighter.TinyMCE plugin, it's a UI component from TinyMCE (ClassicEditor). Maybe the issue is related to your WordPress theme - check for additional styles (non-tinymce source) applied to the elements

As a workaround, you have multiple possibilities:

  1. set the global Enlighter theme to "Theme Customizer"
  2. alter the ordering of the language list (see docs/filters)
  3. apply your css fix for your site
khanakia commented 3 years ago

@AndiDittrich it's not a theme issue as it's just a fresh wordpress installation with default theme. Anyway i will check and fix the issue with custom css on admin. Thanks fo the support