Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Z index, text on top of jquery slideshow

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #38722
    Wade
    Member

    Hi all, first time poster.

    I am having inconsistencies with keeping text on top of my jquery slideshow.
    When you first load the page or refresh (ctrl+f5) the text loads fine, but if you go back to the home page from the other pages or use a mobile device the text does not load.

    And no surprise it doesn’t work at all with IE

    Does anybody know what I am doing wrong?
    http://www.reforming.org.au

    HTML:




      {exp:channel:entries channel="slideshow"}
      $image_link = '{image_link}';
      if ($image_link == 'none')
      {
      echo "
    • Reforming
    • ";
      } else {
      echo "
    • Reforming
    • ";
      }
      ?>
      {/exp:channel:entries}


    Everything is

    about Jesus!


    CSS:

    #slideshow {
    height: 300px;
    width: 1060px;
    overflow: hidden;
    position: relative;
    float: left;
    }

    #slideshow h2 {
    position: absolute;
    left: 1px;
    float: left;
    margin-top: 100px;
    z-index: 15;
    margin-left: 700px;
    }

    #slideshow h2 span {
    color: #FFF;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 40px;
    text-align: left;
    }

    div#slideshow ul#slides
    {
    list-style: none;
    }

    div#slideshow ul#slides li
    {
    margin: 0 0 20px 0;
    }

    #slideshow ul#slides li img {
    position: relative;
    float: left;
    width: 1060px;
    z-index: -1;
    }

    Thanks for any helps guys :)

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.