Title: Blank slide
Last modified: September 22, 2016

---

# Blank slide

 *  Resolved [manx89](https://wordpress.org/support/users/manx89/)
 * (@manx89)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/blank-slide-2/)
 * Hi again,
 * I need to use FullPage slide instead Revolution Slider. So I have Sections and
   two Slides. But ony first slide is vsisible. Second is blank. I have two bullets
   and in html source I can see two slides, but second is not showing. Here is direct
   link to slider: [http://manx.bdl.pl/ideovi/#slider](http://manx.bdl.pl/ideovi/#slider)
 * Do you have some ideas with this issue? 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Julien Zerbib](https://wordpress.org/support/users/julien-zerbib/)
 * (@julien-zerbib)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/blank-slide-2/#post-8210244)
 * Hi 🙂
 * I see something like this in the first div of the `entry-content` of the slide:
 *     ```
       element.style {
       	position: relative;
       	left: -1707.5px;
       	box-sizing: border-box;
       	width: 1366px;
       }
       ```
   
 * … Don’t know where it comes from but it seem that it is some Visual composer 
   settings.
 * Furthermore, your slide content still have a 50% width. You should set it to 
   100% in your slide `Content Styling / Design Parameters / Content Width`.
 * It should be ok with this 🙂
 * Let me know if that helps.
 * Cheers,
 * Julien
 *  Thread Starter [manx89](https://wordpress.org/support/users/manx89/)
 * (@manx89)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/blank-slide-2/#post-8211613)
 * Thx!
 * That was problem. Visual composer has stupid way to push content middle, or full
   width. But I set left to 0px and now works 🙂
 * I also need to set autoplay. You said to do this with `$.fn.fullpage.moveSlideRight();`
   and timer. But where to put this code, and how to use timer? I’m beginer with
   js 🙂 What file I should modify?
 *  Plugin Author [Julien Zerbib](https://wordpress.org/support/users/julien-zerbib/)
 * (@julien-zerbib)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/blank-slide-2/#post-8214719)
 * Hi !!
 * Sure, in your Page (fullpage) `Events / On Leave`, paste this peace of code :
 *     ```
       if(nextIndex === 4) {
           fullpageAutoSlideTimer = setInterval( function() {
               $.fn.fullpage.moveSlideRight();
           }, 5000 ); // 5000 means 5 seconds here
       }
       else {
           clearInterval( fullpageAutoSlideTimer );
       }
       ```
   
 * Then, to globalise the `fullpageAutoSlideTimer` var so that the timer stop each
   time you leave the section, you’ll have to paste this peace of code at the beginning
   of the `wp-content/themes/sage/wp-fullpage/js/jquery.fullpage.custom.js` file:
   `
   var fullpageAutoSlideTimer = false;`
 * By the way, as you’ll have to override the templates of WP FullPage in your theme“
   Sage”, you should create a child theme…
 * I tested it “live” and it works fine !
 * Let me know if you need something else…
 * Best,
 * Julien

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Blank slide’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-fullpage_e98c4a.svg)
 * [WP FullPage](https://wordpress.org/plugins/wp-fullpage/)
 * [Support Threads](https://wordpress.org/support/plugin/wp-fullpage/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-fullpage/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-fullpage/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-fullpage/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Julien Zerbib](https://wordpress.org/support/users/julien-zerbib/)
 * Last activity: [9 years, 10 months ago](https://wordpress.org/support/topic/blank-slide-2/#post-8214719)
 * Status: resolved