Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to show content below a full-screen slideshow that behaves normally. Only when you scroll down should the remaining content be revealed. So on load the slideshow should still be 100% in height and width.

I tried put a margin top that is the same size as the browser height (detected with js) and put the slideshow position absolute but that did not work ...

Would love to hear your thoughts on this, thanks a lot!

example: http://www.fabrikgrafik.be/slider/ (I'm trying to get the red content div below the slideshow without losing the slideshow functionality)

share|improve this question
2  
Put your slide show controls and background in a div, set it to position: fixed; and z-index: -1 – SpYk3HH Nov 11 '12 at 22:15
Revised Answer... – VIDesignz Nov 11 '12 at 22:41

2 Answers

up vote 0 down vote accepted

It's really simple, don't change anything from what it was aminute ago except to add the following 2 lines of jQuery:

// made edit to hide content till slideshow is rdy
$("#content-wrapper").css("margin-top", $("#supersized").height()).show();
$(window).resize(function(e) { $("#content-wrapper").css("margin-top", $("#supersized").height()); });

updated jsFiddle

Also, you might change this CSS:

#controls-wrapper { display: none; position: absolute; } /* from fixed */
share|improve this answer
Thanks, but that is not my problem. This I can do :). The problem is, I would like the red (content) div to start where the slideshow ends. So now it loads full width and height and when I scroll it is doing exactly what I want. but the red div should start below the slideshow and not over it. So I think I have to put a margin-top on "content-wrapper" that has the same size as the browser-height. But I'm not sure how to do this and if this is the right solution. thanks again – fabrikgrafik Nov 11 '12 at 22:39
done, fixed it, check update, bout to add new fiddle link – SpYk3HH Nov 11 '12 at 22:43
made it couple changes, looks great – SpYk3HH Nov 11 '12 at 22:51
Thanks so much! I was really breaking my head about this :). this is exactly what I wanted to accomplish. Happy I not have to change my design. – fabrikgrafik Nov 11 '12 at 22:53
Jquery is not necessary, its a simple css solution... jsfiddle.net/videsignz/9wCHZ – VIDesignz Nov 11 '12 at 23:06
show 1 more comment

I figured it out....css style

 #redDivId {position:absolute; top:100%;}

Check out this FIDDLE

share|improve this answer
Thanks a lot, this is indeed true and what I am trying to accomplish. But now only the red div should start exactly where the bottom of the slideshow ends. Just under the "fold". And this where I can not succeed. – fabrikgrafik Nov 11 '12 at 22:29
I don't see you js to position the red div on the page? where is it at? – VIDesignz Nov 11 '12 at 22:33
I see this <div id="content-wrapper" style="margin: auto; width: 960px; opacity: 0.5; clear: both; background: red; color: #FFFFFF;"> but no margin-top declaration. – VIDesignz Nov 11 '12 at 22:35
@fabrikgrafik Check out my revision... – VIDesignz Nov 11 '12 at 22:42
No indeed, I have took this out because I was doing it wrong :). But I'm also not sure if this is the right way to go, maybe there is a css only solution I'm not seeing. – fabrikgrafik Nov 11 '12 at 22:42
show 3 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.