Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Robert Brada
4,004 PointsChange height of full screen slider according to content
Hi, I created a full screen slider as David Conner did in his workshop.
But I have quite a lot of text in one of slides. And I found out, that the heigh of this slide doesn't change according to amount of text. The content that is higher than height of the page is just not visible.
Is possible to fix this without using javascript?
Here is my code. There is also more css code to make it work like "slider", but I think that it's not important to solve this problem.
I can change height of slide changing .wrap height, but it changes height of all slides and it's not changing according to amount of text.
P.S. sorry for my English
<div class="wrap">
<header>
<label for="slide-1-trigger">Slide One</label>
<label for="slide-2-trigger">Slide Two</label>
</header>
<input id="slide-1-trigger" type="radio" name="slides" checked>
<section class="slide slide-one">
<h1>Headline One</h1>
<p>A lot of text here...</p>
</section>
<input id="slide-2-trigger" type="radio" name="slides">
<section class="slide slide-one">
<h1>Headline Two</h1>
</section>
</div>
html, body{
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.wrap {
height: 100%;
width: 100%;
position: relative;
overflow: hidden;
}
.slide {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 100%;
z-index: 10;
padding: 8em 1em 0;
background-color: #120103;
background-position: 50% 50%;
background-size: cover;
transition: left 0s 0.75s;
}
2 Answers

Caroline Hagan
12,612 PointsWhat I would also be thinking, in real-life scenario is, why would the content of a slider be bigger than the viewable page? Short and sweet for sliders is probably best ;-)

Robert Brada
4,004 PointsThank you for your responses. I had a content that is too high on smaller screen. Finally I used full screen slider for large screen only and made common website for smaller screen.
Jeremy Canela
Full Stack JavaScript Techdegree Graduate 30,766 PointsJeremy Canela
Full Stack JavaScript Techdegree Graduate 30,766 PointsThe slider that you have has a
height: 100%;
so if the content inside the slider is higher than 100% of the screen size won't get any bigger. I can't think of any other way than using JavaScript if conditionals. The solution I could think of is one the content inside is bigger than the slider itself, change the height to auto and put padding on the content.