Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I have been trying to learn to create responsive designs but I seem to have stumbled upon a problem.I am trying to create the layout for a responsive slider in witch images need to be set on top of each other.Most of the things work perfectly the only problem is that when I set the li tag's to position absolute the containers height becomes smaller.

Witch I believe is normal but it's not what I would want to happen.

What I would want is the container to wrap arround the picture.

Here is what I mean check the picture:

website

Here is my code:

        <section id="slider">
              <ul>
                  <li><img src="img/slider/1.png" alt="slide1"/></li>
                  <li><img src="img/slider/2.png" alt="slide2"/></li>
              </ul>
              <nav>
                  <div  class="selected">
                       <a href="#"><h2>BIG TIME EYE CANDY</h2></a>
                       <p>Fusce aliquet, ante nec dictum accumsan, risus sapien aliquet ipsum, quis congue risus</p>
                  </div>
                  <div>
                       <a href="#"><h2>BIG TIME EYE CANDY</h2></a>
                       <p>Fusce aliquet, ante nec dictum accumsan, risus sapien aliquet ipsum, quis congue risus</p>
                  </div>
                  <div>
                       <a href="#"><h2>BIG TIME EYE CANDY</h2></a>
                       <p>Fusce aliquet, ante nec dictum accumsan, risus sapien aliquet ipsum, quis congue risus</p>
                  </div>
              </nav>
          </section>

section#slider{
    width: 100%;
    position: relative;
    background-color: white;
    overflow: hidden;
    padding:1.04166666666667%;
}
section#slider ul{
    float: left;
    width: 65.9375%;
    position: relative;
}
section#slider ul li{
    width: 100%;
    position: absolute;
}
section#slider ul img{
    width: 100%;
}
section#slider nav{
    float: right;
    width: 32.998333333%;
    height: 100%;            //This does not set the nav's elemnt to 100%
    background-color: red;
}
section#slider nav div{
    padding-left:7.58620689655172%;
    padding-right:7.58620689655172%;
}

How can I make the section#slider wrap around the image considering the fact the the li tags are set to position abosolute?
Also how can I make the nav tag's height have the same length as the the section#slider container?Setting height to 100% does not seem to work.
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.