Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The div in which you placed the images is 1x1 pixels. So you are currently displaying the upper left pixel of your gallery (look at the Inline css on the div with id='featured'). :)</p> <p>As i promised. open orbit_home.js and replace</p> <pre><code>{"z-index" : 1} </code></pre> <p>and </p> <pre><code>{"z-index" : 2} </code></pre> <p>to </p> <pre><code>{"z-index" : 1, "display" : "none"} </code></pre> <p>and</p> <pre><code>"z-index" : 3 </code></pre> <p>to</p> <pre><code>"z-index" : 3, "display":"block" </code></pre> <p>in all occurrences of the .css command</p> <p>Last edit: Add the following line to the end of your css file:</p> <pre><code>line 88 and 91 from the orbit_home.js : </code></pre> <p><code>"display":"block"</code> to <code>"display":"none"</code></p> <p>as in: </p> <pre><code> function unlock() { locked = false; } function lock() { locked = true; } //If there is only a single slide remove nav, timer and bullets if(slides.length == 1) { options.directionalNav = false; options.timer = false; options.bullets = false; } //Set initial front photo z-index and fades it in slides.eq(activeSlide) .css({"z-index" : 3, "display":"block"}) .fadeIn(function() { //brings in all other slides IF css declares a display: none slides.css({"display":"block"}) }); // ============== // ! TIMER // ============== </code></pre> <p>becoming: </p> <p>function unlock() { locked = false; } function lock() { locked = true; }</p> <pre><code> //If there is only a single slide remove nav, timer and bullets if(slides.length == 1) { options.directionalNav = false; options.timer = false; options.bullets = false; } //Set initial front photo z-index and fades it in slides.eq(activeSlide) .css({"z-index" : 3, "display":"block"}) .fadeIn(function() { //brings in all other slides IF css declares a display: none slides.css({"display":"none"}) }); // ============== // ! TIMER // ============== </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload