Skip Navigation

[Resolved] Full screen slider

The Toolset Community Forum is closed, for technical support questions, please head on to our Toolset Professional Support (for paid clients), with any pre-sale or admin question please contact us here.

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

Problem: I would like to create a full-screen slider cell for Layouts

Solution:
- Duplicate the standard slider Layout cell. Modify the PHP code to work as a full-screen slider.
- Add the relevant CSS and JS to your Layouts CSS and JS editors.

Relevant Documentation: https://toolset.com/documentation/user-guides/creating-custom-cells-unique-functionality/

This support ticket is created 7 years ago. There's a good chance that you are reading advice that it now obsolete.
This is the community support forum for Types plugin, which is part of Toolset. Toolset is a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients and people who registered for Types community support can post in it.

Sun Mon Tue Wed Thu Fri Sat
8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 - -
13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 - -

Supporter timezone: America/New_York (GMT-04:00)

This topic contains 21 replies, has 2 voices.

Last updated by johanL-2 6 years, 11 months ago.

Assisted by: Christian Cox.

Author
Posts
#519142

Unfortunately it's not possible to switch between the slider types based on browser. I'll run some tests in IE this afternoon and update you shortly.

#519200

Quick update - I wasn't able to come up with a good solution for IE < Edge today, so I will pick up again here tomorrow.

#519266

HI,
it working as it should in Microsoft Edge but not in internet explorer 11. In IE 11 all elements are fading not only the background.
Johan

#519449

Hi, please add the following code to your Layout CSS editor:

@media all {
  .fullscreen.carousel .carousel-inner > .left.active
  {
    left:0; 
  }
}

I tested Edge, IE 10 and IE 11 on Windows. It appears the brief white flash between slides has been resolved. Can you confirm?

#519518
layoutsWP.JPG

Wow the flash is gone, but there is still one problem with IE11 when scrolling down to see the content (rows in yellow in attached image) it is not looking good. It seems to be something with the layers as the layout rows are fading together with the slider.

#519529

Ah, a z-index problem. Hover over each row (except the row with your fullscreen slider) and click the Pencil icon "Edit row". Add this class in the optional CSS input area:

fs-slide-over

Then add the following code in Layouts CSS and JS:

.fs-slide-over {
  position:relative;
  z-index:4;
}
#519724

WOW now everything is working. I had to add following to get rid of the image jumping (know problem in IE11 apparently),

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) 
{
    html{
        overflow: hidden;
        height: 100%;    
    }
    body{
        overflow: auto;
        height: 100%;
    }
}

Thanks alot!!!!

The forum ‘Types Community Support’ is closed to new topics and replies.

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.