Skip Navigation

[Resolved] Layer problem

This thread is resolved. Here is a description of the problem and solution.

Problem:
There is a z-index problem with the relationship dialogs, making it impossible to select the required content.

Solution:
This arises from a conflict with the Slider Revolution plugin by Artbees.

They have a problem with their CSS which only they can fix.

This support ticket is created 6 years, 10 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Our next available supporter will start replying to tickets in about 7.74 hours from now. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+00:00)

This topic contains 4 replies, has 2 voices.

Last updated by Nigel 6 years, 10 months ago.

Assisted by: Nigel.

Author
Posts
#604233
Capture d’écran 2018-01-08 à 09.26.17.png

I use Beta version because I have a bug on the stable version.

When I use Relationship I have a layer problem.

The value are juste behind the firebox.

See below the screenshot.

Best regards,

Olivier

#604348

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

Hi Olivier

Could you please try a no-conflict test by disabling the non-Toolset plugins to see if you have the same issue?

If you still see the problem try switching theme to twentyseventeen.

Please let me know what you find so that I can try to reproduce the issue locally, thanks.

#604783

Hello,
The problem comes from the plugins :
Slider Revolution - Premium responsive slider
Version 5.4.6.4

This plugins is added by Artbees.

Best regards,
Olivier

#604809

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

Thanks for the update.

I have tested and confirmed myself on a local site, and so have reported the compatibility issue for further investigation.

I'll keep you posted with any news.

#605167

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

Hi Olivier

The problem arises because the slider plugin sets the following style:

.ui-dialog {
  z-index: 1000102 !important;
}

The .ui-dialog class is part of jQueryUI that ships with WordPress, which defines the class styles itself with the following:

.ui-dialog {
  z-index: 100102;
}

Note that the plugin style includes an extra zero and, crucially, is set with !important, meaning that it overrides the default style and breaks any other plugins that expect the default jQuery style rule to be present.

They shouldn't be overwriting the default jQuery rule in that way, and should include a more targeted selector that only affects their own plugins content.

Could you please report that to the slider plugin author so that they can update their style definitions.

We can't fix the issue from our side.