Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #764685

    Hi,

    since the update to the new (integrated) LayerSlider 6.1.6, I’m experiencing issues with moving and/or resizing images. The image border selector is not over the image, but seems to be below the image. Clicking the displayed image itself does nothing to move or resize it. But clicking the (misaligned) border or inside the boundaries, moves the displayed image around / resizes the displayed image – with the misalignment remaining the same.

    I’ve found no errors in the console, so I’m unable to find out what’s going on here. Any help on this one?

    Kind regards,
    Dick
    PS. thanks for maintaining this beautiful theme, which I’ve been using myself for quite some time now. I absolutely love the ease-of-use on the admin side for creating rich content!

    • This topic was modified 7 years, 8 months ago by dick1980.
    #766473

    Hey dick1980,

    Sorry for the late response, can you post a link to your page with the layerslider? are you using a boxed layout?

    Best regards,
    Nikko

    #767055

    Hi Nikko,

    the link is: http://www.nvkl.nl

    This issue is related to the admin-side editing capabilities, of course.

    Regards,
    Dick

    #767076

    Hey!

    Yes, that is why, we would also need backend access please.

    Thank you

    Cheers!
    Basilis

    #767301

    Hi,

    allright, I’ve entered this inside the Private Content field.

    Regards,
    Dick

    #768060

    Hi Basilis,

    any progress so far?

    Regards,
    Dick

    #768474

    Hi,

    I have checked it and found out that the issue is caused by The Events Calendar’s css:

    .ui-resizable {
        position: relative;
    }

    which can be found in: wp-content/plugins/the-events-calendar/common/src/resources/css/tribe-common-admin.min.css?ver=4.4.5dev1

    To fix it, try adding this code at the bottom of your functions.php:

    add_action('admin_head', 'fix_css_conflict');
    
    function fix_css_conflict() {
      echo '<style>
        .ls-page .ui-selected-helper {
          position: absolute;
        } 
      </style>';
    }

    Let us know if this helps :)

    Best regards,
    Nikko

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.